From 4cd9dcd42792f90673a85a13045d827451e59ddf Mon Sep 17 00:00:00 2001 From: wangxiang <1827945911@qq.com> Date: Mon, 27 Feb 2023 16:39:10 +0800 Subject: [PATCH] =?UTF-8?q?:rocket:=20=E6=B6=88=E6=81=AF=E6=8E=A8=E9=80=81?= =?UTF-8?q?=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../push/pushThirdParty/ThirdPartyModal.vue | 6 +- .../common/push/pushThirdParty/index.vue | 2 +- .../pushTodoThirdParty/ThirdPartyModal.vue | 57 +++++++++---------- .../common/push/pushTodoThirdParty/index.vue | 10 ++-- .../pushTodoThirdParty/thirdParty.data.ts | 28 ++------- 5 files changed, 39 insertions(+), 64 deletions(-) diff --git a/src/views/common/push/pushThirdParty/ThirdPartyModal.vue b/src/views/common/push/pushThirdParty/ThirdPartyModal.vue index dd8aa8a..7b65da3 100644 --- a/src/views/common/push/pushThirdParty/ThirdPartyModal.vue +++ b/src/views/common/push/pushThirdParty/ThirdPartyModal.vue @@ -41,14 +41,14 @@ // 采用tag标签区分操作 switch (unref(tag)) { case 'add': - props.title = '新增第三方'; + props.title = '新增企业'; break; case 'edit': - props.title = '编辑第三方'; + props.title = '编辑企业'; await setFieldsValue(await getPushThirdParty(refId)); break; case 'view': - props.title = '查看第三方'; + props.title = '查看企业'; await setFieldsValue(await getPushThirdPartyByUserId(refId)); await setProps({ disabled: true }); break; diff --git a/src/views/common/push/pushThirdParty/index.vue b/src/views/common/push/pushThirdParty/index.vue index c58cf38..1d2eda8 100644 --- a/src/views/common/push/pushThirdParty/index.vue +++ b/src/views/common/push/pushThirdParty/index.vue @@ -68,7 +68,7 @@ const { createConfirm, createMessage } = useMessage(); const [registerModal, { openModal }] = useModal(); const [registerTable, { reload, clearSelectedRowKeys, getSelectRowKeys }] = useTable({ - title: '第三方列表', + title: '企业列表', api: listPushThirdParty, rowKey: 'id', columns, diff --git a/src/views/common/push/pushTodoThirdParty/ThirdPartyModal.vue b/src/views/common/push/pushTodoThirdParty/ThirdPartyModal.vue index dfe68fc..f67fb41 100644 --- a/src/views/common/push/pushTodoThirdParty/ThirdPartyModal.vue +++ b/src/views/common/push/pushTodoThirdParty/ThirdPartyModal.vue @@ -1,9 +1,14 @@ -PushThirdPartyModal