diff --git a/src/views/bl/commission/fxy/fxyApply.vue b/src/views/bl/commission/fxy/fxyApply.vue index 3794e1d..4c357fe 100644 --- a/src/views/bl/commission/fxy/fxyApply.vue +++ b/src/views/bl/commission/fxy/fxyApply.vue @@ -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) { diff --git a/src/views/bl/commission/jjr/jjrApply.vue b/src/views/bl/commission/jjr/jjrApply.vue index 5b6c923..c8c8ab1 100644 --- a/src/views/bl/commission/jjr/jjrApply.vue +++ b/src/views/bl/commission/jjr/jjrApply.vue @@ -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) {