From 0d0a85773cc7f3eda7eb86b42f48e359dbf2f552 Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Mon, 21 Jul 2025 15:20:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8A=A4=E7=90=86=E5=8D=95?= =?UTF-8?q?=E5=85=83=E6=94=B9=E4=B8=BA=E5=8C=BA=E5=9F=9F=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=EF=BC=8C=E5=B9=B6=E4=BF=AE=E6=94=B9=E5=B1=95=E7=A4=BA=E5=BD=A2?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/common/api.ts | 2 +- .../jeecg/components/modal/NuSelectModal.vue | 10 +- src/layouts/default/header/index.vue | 2 +- src/layouts/default/index.vue | 2 +- src/views/biz/nuBaseInfo/NuBaseInfo.api.ts | 2 + src/views/biz/nuBaseInfo/NuBaseInfo.data.ts | 15 +- src/views/biz/nuBaseInfo/NuBaseInfoList.vue | 8 +- src/views/biz/nuBaseInfo/QyxxList.vue | 281 ++++++++++ .../components/BaseWlsbListForm.vue | 480 ++++++++++++++++++ .../components/BaseWlsbListModal.vue | 60 +++ .../nuBaseInfo/components/NuBaseInfoForm.vue | 12 +- .../NuBizCustomerInfo.data.ts | 4 +- .../NuBizCustomerInfoList.vue | 4 +- .../components/CheckNuListModal.vue | 2 +- .../components/NuBizCustomerInfoForm.vue | 4 +- src/views/iot/tplink/camera/camera.data.ts | 6 +- .../camera/components/CameraInfoList.vue | 8 +- .../camera/components/CameraRecordList.vue | 2 +- .../iot/tplink/plan/components/PlanList.vue | 2 +- .../iot/tplink/project/ProjectInfoList.vue | 2 +- .../region/components/RegionInfoList.vue | 2 +- .../iot/tq/electricity/electricity.data.ts | 6 +- src/views/iot/tq/electricity/index.vue | 4 +- src/views/iot/tq/water/index.vue | 4 +- src/views/iot/tq/water/water.api.ts | 3 + src/views/iot/yiweilian/humid.data.ts | 4 +- src/views/iot/yiweilian/index.vue | 4 +- src/views/system/depart/depart.data.ts | 2 +- src/views/system/dict/index.vue | 3 + src/views/utils/nuUtils/HldyUtils.data.ts | 2 +- 30 files changed, 888 insertions(+), 54 deletions(-) create mode 100644 src/views/biz/nuBaseInfo/QyxxList.vue create mode 100644 src/views/biz/nuBaseInfo/components/BaseWlsbListForm.vue create mode 100644 src/views/biz/nuBaseInfo/components/BaseWlsbListModal.vue diff --git a/src/api/common/api.ts b/src/api/common/api.ts index 558b4ae..28a4478 100644 --- a/src/api/common/api.ts +++ b/src/api/common/api.ts @@ -20,7 +20,7 @@ enum Api { } /** - * 护理单元列表 + * 区域列表 * @param params */ export const getNuList = (params) => { diff --git a/src/components/Form/src/jeecg/components/modal/NuSelectModal.vue b/src/components/Form/src/jeecg/components/modal/NuSelectModal.vue index f9d8f55..d1de9f1 100644 --- a/src/components/Form/src/jeecg/components/modal/NuSelectModal.vue +++ b/src/components/Form/src/jeecg/components/modal/NuSelectModal.vue @@ -65,7 +65,7 @@ //选择框标题 modalTitle: { type: String, - default: '护理单元选择', + default: '区域选择', }, }, emits: ['register', 'getSelectResult'], @@ -112,7 +112,7 @@ //update-end-author:liusq date:2023-10-30 for: [issues/5514]组件页面显示错位 schemas: [ { - label: '护理单元名称', + label: '区域名称', field: 'nuName', component: 'JInput', colProps: { span: 10 }, @@ -122,13 +122,13 @@ //定义表格列 const columns = [ { - title: '护理单元编码', + title: '区域编码', dataIndex: 'nuId', width: 180, align: 'left', }, { - title: '护理单元名称', + title: '区域名称', dataIndex: 'nuName', // width: 180, }, @@ -144,7 +144,7 @@ rowKey: 'nuId', columns: [ { - title: '护理单元名称', + title: '区域名称', dataIndex: 'nuName', width: 40, }, diff --git a/src/layouts/default/header/index.vue b/src/layouts/default/header/index.vue index bc38bf2..f07d2d0 100644 --- a/src/layouts/default/header/index.vue +++ b/src/layouts/default/header/index.vue @@ -1,5 +1,5 @@