From 188ab7e61501f76d97ef85ef6b2c95a3b6b84d1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E7=A3=8A?= <45566618@qq.com> Date: Fri, 9 Aug 2024 11:42:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E9=94=80=E5=91=98=E3=80=81=E7=BB=8F?= =?UTF-8?q?=E7=BA=AA=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/bl/commission/fxy/fxyApply.vue | 3 +++ src/views/bl/commission/jjr/jjrApply.vue | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) 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) {