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