From 293c5e76d0c2948f31ee5bab2436b02d60fe6385 Mon Sep 17 00:00:00 2001 From: fz Date: Fri, 17 Nov 2023 17:53:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E7=AB=A0=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/officialSeal/officialSeal.js | 24 +++++ .../components/addInstitution.vue | 26 +++-- .../components/eidtInstitution.vue | 96 +++++++++++++++++++ .../officialSeal/components/sealManage.vue | 64 +++++++++---- .../officialSeal/components/uploadSeal.vue | 36 ++++--- src/views/officialSeal/officialSealList.vue | 44 +++++++-- 6 files changed, 247 insertions(+), 43 deletions(-) create mode 100644 src/views/officialSeal/components/eidtInstitution.vue diff --git a/src/api/officialSeal/officialSeal.js b/src/api/officialSeal/officialSeal.js index 55fd87a..e796183 100644 --- a/src/api/officialSeal/officialSeal.js +++ b/src/api/officialSeal/officialSeal.js @@ -41,3 +41,27 @@ export function sealList(data) { params: data }) } +// 启用或者禁用公章 +export function updateSealLockStatus(data) { + return request({ + url: '/deptIdentify/updateSealLockStatus', + method: 'post', + data: data + }) +} +// 删除未认证的数据 +export function deleteSeal(data) { + return request({ + url: '/deptIdentify/delete', + method: 'delete', + params: data + }) +} +// 修改机构信息 +export function sealUpdate(data) { + return request({ + url: '/deptIdentify/update', + method: 'put', + data: data + }) +} \ No newline at end of file diff --git a/src/views/officialSeal/components/addInstitution.vue b/src/views/officialSeal/components/addInstitution.vue index 68fe54a..95630be 100644 --- a/src/views/officialSeal/components/addInstitution.vue +++ b/src/views/officialSeal/components/addInstitution.vue @@ -1,6 +1,7 @@ + + \ No newline at end of file diff --git a/src/views/officialSeal/components/sealManage.vue b/src/views/officialSeal/components/sealManage.vue index 547e9dd..9cd2e38 100644 --- a/src/views/officialSeal/components/sealManage.vue +++ b/src/views/officialSeal/components/sealManage.vue @@ -1,7 +1,7 @@