From 71e24906ea0f1eeb7b781e0abbc6a1f55e9e0f88 Mon Sep 17 00:00:00 2001 From: loveflow <5269966+loveflow@user.noreply.gitee.com> Date: Wed, 10 Jul 2024 23:14:13 +0800 Subject: [PATCH] update --- src/api/applySupermarket/personBack/index.js | 9 ++ .../businessConsulting/index.vue | 3 +- src/views/applySupermarket/index.vue | 14 +- .../applySupermarket/keyPerson/index.vue | 3 +- .../applySupermarket/legalAdvice/index.vue | 3 +- .../personBack/components/detailDialog.vue | 38 ++---- .../personBack/components/examineDialog.vue | 127 ++++++++++++++++++ .../applySupermarket/personBack/index.vue | 25 ++-- 8 files changed, 175 insertions(+), 47 deletions(-) create mode 100644 src/views/applySupermarket/personBack/components/examineDialog.vue diff --git a/src/api/applySupermarket/personBack/index.js b/src/api/applySupermarket/personBack/index.js index 6788607..5b58916 100644 --- a/src/api/applySupermarket/personBack/index.js +++ b/src/api/applySupermarket/personBack/index.js @@ -32,3 +32,12 @@ export function getList(id) { method: "get", }); } + +// 修改人员审核相关 +export function modifyPerson(data) { + return request({ + url: "/prepare/verification/", + method: "put", + data, + }); +} diff --git a/src/views/applySupermarket/businessConsulting/index.vue b/src/views/applySupermarket/businessConsulting/index.vue index a3413f9..ab1a748 100644 --- a/src/views/applySupermarket/businessConsulting/index.vue +++ b/src/views/applySupermarket/businessConsulting/index.vue @@ -1,5 +1,5 @@