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