From 23984e78ecae9f049ba981410a6160e458409f4c Mon Sep 17 00:00:00 2001 From: zhouxueli <2841188632@qq.com> Date: Wed, 17 Dec 2025 11:37:59 +0800 Subject: [PATCH] =?UTF-8?q?CRM=5F25-12-23#story#7473,=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=95=86=E7=B3=BB=E7=BB=9F=E3=80=81=E8=B0=83=E5=BA=A6APP?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=9C=8D=E5=8A=A1=E5=95=86=E4=BA=BA=E5=91=98?= =?UTF-8?q?=E7=A1=AE=E8=AE=A4=E7=9A=84=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/authentication.js | 48 ++++++++++++++++++++++ src/views/mine/personList.vue | 75 ++++++++++++++++++++++++++++------- 2 files changed, 108 insertions(+), 15 deletions(-) diff --git a/src/api/authentication.js b/src/api/authentication.js index d2b71458..c84e1544 100644 --- a/src/api/authentication.js +++ b/src/api/authentication.js @@ -69,4 +69,52 @@ export function driverRealName( data) { method:'POST', contentType: 'application/json' }) +} +//获取需要确认的人员信息列表 +export function getConfirmPerson(key){ + return request({ + url: '/supplierAppV2/dispatchApp/wechat/getNeedConfirmPersonInfo', + method:'GET', + params: key + }) +} +//微信相关 获取联系我 二维码 +export function getQrCode(key){ + return request({ + url: '/supplierAppV2/dispatchApp/wechat/getQrCode', + method:'GET', + params: key + }) +} +//获取服务商的确认状态 +export function getConfirmStatus(key){ + return request({ + url: '/supplierAppV2/dispatchApp/wechat/getSuppler', + method:'GET', + params: key + }) +} +//确认已添加微信按钮 +export function confirmAddWechat(key){ + return request({ + url: '/supplierAppV2/dispatchApp/wechat/confirmAddWechat', + method:'GET', + params: key + }) +} +//确认无误 +export function confirm(key){ + return request({ + url: '/supplierAppV2/dispatchApp/wechat/confirm', + method:'GET', + params: key + }) +} +//提交审批 +export function submitConfirm( data) { + return request('/supplierAppV2/dispatchApp/wechat/submitConfirm', { + data: data, + method:'POST', + contentType: 'application/json' + }) } \ No newline at end of file diff --git a/src/views/mine/personList.vue b/src/views/mine/personList.vue index cee38c05..e8ee9d46 100644 --- a/src/views/mine/personList.vue +++ b/src/views/mine/personList.vue @@ -45,8 +45,8 @@
+ @confirm="wechatConfirm" @cancel="cancelHandle">
+