分销员、经纪人

This commit is contained in:
曹磊 2024-08-09 11:42:01 +08:00
parent 7475a33f75
commit 188ab7e615
2 changed files with 5 additions and 1 deletions

View File

@ -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) {

View File

@ -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) {