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 @@
*微信号:
- 修改 - + 修改 +
@@ -64,8 +64,8 @@
- + @confirm="wechatConfirm" @cancel="cancelHandle"> + @@ -73,7 +73,7 @@