分销员、经纪人
This commit is contained in:
parent
7475a33f75
commit
188ab7e615
|
@ -829,6 +829,7 @@ export default {
|
||||||
id: this.id,
|
id: this.id,
|
||||||
opinion: this.opinion,
|
opinion: this.opinion,
|
||||||
status: this.status,
|
status: this.status,
|
||||||
|
userId: this.userId
|
||||||
}),
|
}),
|
||||||
}).then(({data}) => {
|
}).then(({data}) => {
|
||||||
if (data.code == 0) {
|
if (data.code == 0) {
|
||||||
|
@ -856,6 +857,7 @@ export default {
|
||||||
//取消授权
|
//取消授权
|
||||||
handleCancelApply(row){
|
handleCancelApply(row){
|
||||||
let id = row.id;
|
let id = row.id;
|
||||||
|
let userId = row.userId;
|
||||||
this.$http({
|
this.$http({
|
||||||
url: this.$http.adornUrl("commission/fxyApply/approve"),
|
url: this.$http.adornUrl("commission/fxyApply/approve"),
|
||||||
method: "post",
|
method: "post",
|
||||||
|
@ -863,6 +865,7 @@ export default {
|
||||||
id: id,
|
id: id,
|
||||||
opinion: '系统取消授权',
|
opinion: '系统取消授权',
|
||||||
status: 0,
|
status: 0,
|
||||||
|
userId: userId
|
||||||
}),
|
}),
|
||||||
}).then(({data}) => {
|
}).then(({data}) => {
|
||||||
if (data.code == 0) {
|
if (data.code == 0) {
|
||||||
|
|
|
@ -852,6 +852,7 @@ export default {
|
||||||
//取消授权
|
//取消授权
|
||||||
handleCancelApply(row){
|
handleCancelApply(row){
|
||||||
let id = row.id;
|
let id = row.id;
|
||||||
|
let userId = row.userId;
|
||||||
this.$http({
|
this.$http({
|
||||||
url: this.$http.adornUrl("commission/jjrApply/approve"),
|
url: this.$http.adornUrl("commission/jjrApply/approve"),
|
||||||
method: "post",
|
method: "post",
|
||||||
|
@ -859,7 +860,7 @@ export default {
|
||||||
id: id,
|
id: id,
|
||||||
opinion: '系统取消授权',
|
opinion: '系统取消授权',
|
||||||
status: 0,
|
status: 0,
|
||||||
userId: this.userId,
|
userId: userId,
|
||||||
}),
|
}),
|
||||||
}).then(({data}) => {
|
}).then(({data}) => {
|
||||||
if (data.code == 0) {
|
if (data.code == 0) {
|
||||||
|
|
Loading…
Reference in New Issue