From 00a9eca219d15f55d07b4609dd7decc645e9305f Mon Sep 17 00:00:00 2001 From: "1378012178@qq.com" <1378012178@qq.com> Date: Fri, 15 Aug 2025 14:20:51 +0800 Subject: [PATCH] =?UTF-8?q?=E9=95=BF=E8=80=85=E6=A0=87=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.production | 6 +- src/App.vue | 6 +- src/components/Application/src/AppLogo.vue | 2 +- src/hooks/web/useResponsive.ts | 45 + src/layouts/default/header/index.vue | 10 +- src/main.ts | 4 +- src/views/elder/eldertag/ElderTag.api.ts | 97 ++ src/views/elder/eldertag/ElderTag.data.ts | 49 + src/views/elder/eldertag/ElderTagList.vue | 271 +++++ .../eldertag/components/ElderTag.data.ts | 43 + .../eldertag/components/ElderTagForm.vue | 208 ++++ .../eldertag/components/ElderTagModal.vue | 144 +++ .../components/ElderTagRespositoryList.vue | 312 +++++ .../ConfigMaterial/ConfigMaterialInfoList.vue | 1017 +++++++++-------- .../ConfigServiceDirective.data.ts | 56 +- .../ConfigServiceDirectiveList.vue | 41 +- .../components/ConfigServiceDirective.data.ts | 56 +- .../components/ConfigServiceDirectiveForm.vue | 186 +-- .../ConfigServiceDirectiveForm1.vue | 779 +++++++++++++ .../ConfigServiceDirectiveFormOLDBK.vue | 888 ++++++++++++++ .../ConfigServiceDirectiveModal.vue | 2 +- .../components/DirectiveRespositoryList.vue | 22 +- 22 files changed, 3492 insertions(+), 752 deletions(-) create mode 100644 src/hooks/web/useResponsive.ts create mode 100644 src/views/elder/eldertag/ElderTag.api.ts create mode 100644 src/views/elder/eldertag/ElderTag.data.ts create mode 100644 src/views/elder/eldertag/ElderTagList.vue create mode 100644 src/views/elder/eldertag/components/ElderTag.data.ts create mode 100644 src/views/elder/eldertag/components/ElderTagForm.vue create mode 100644 src/views/elder/eldertag/components/ElderTagModal.vue create mode 100644 src/views/elder/eldertag/components/ElderTagRespositoryList.vue create mode 100644 src/views/services/serviceDirective/components/ConfigServiceDirectiveForm1.vue create mode 100644 src/views/services/serviceDirective/components/ConfigServiceDirectiveFormOLDBK.vue diff --git a/.env.production b/.env.production index 04195f8..cb59464 100644 --- a/.env.production +++ b/.env.production @@ -2,7 +2,7 @@ VITE_USE_MOCK = false # 发布路径 -VITE_PUBLIC_PATH = /biz101 +VITE_PUBLIC_PATH = /biz103 # 是否启用gzip或brotli压缩 # 选项值: gzip | brotli | none @@ -13,10 +13,10 @@ VITE_BUILD_COMPRESS = 'gzip' VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE = false #后台接口父地址(必填) -VITE_GLOB_API_URL=/nursingunit101 +VITE_GLOB_API_URL=/nursingunit103 #后台接口全路径地址(必填) -VITE_GLOB_DOMAIN_URL=https://www.focusnu.com/nursingunit101 +VITE_GLOB_DOMAIN_URL=https://www.focusnu.com/nursingunit103 # 接口父路径前缀 VITE_GLOB_API_URL_PREFIX= diff --git a/src/App.vue b/src/App.vue index 504bee8..bd6c067 100644 --- a/src/App.vue +++ b/src/App.vue @@ -106,4 +106,8 @@ img { color: #69c0ff !important; } -// update-end--author:liaozhiyang---date:20230803---for:【QQYUN-5839】windi会影响到html2canvas绘制的图片样式 +.p-2{ + padding: 14px; +} +// update-end--author:liaozhiyang---date:20230803---for:【QQYUN-5839】windi会影响到html2canvas绘制的图片样式 + diff --git a/src/components/Application/src/AppLogo.vue b/src/components/Application/src/AppLogo.vue index 06294c8..e9b29b2 100644 --- a/src/components/Application/src/AppLogo.vue +++ b/src/components/Application/src/AppLogo.vue @@ -3,7 +3,7 @@ * @Description: logo component --> \ No newline at end of file diff --git a/src/views/services/serviceDirective/ConfigServiceDirective.data.ts b/src/views/services/serviceDirective/ConfigServiceDirective.data.ts index 9677605..b0c2edb 100644 --- a/src/views/services/serviceDirective/ConfigServiceDirective.data.ts +++ b/src/views/services/serviceDirective/ConfigServiceDirective.data.ts @@ -38,34 +38,34 @@ export const columns: BasicColumn[] = [ align: 'center', dataIndex: 'directiveName', }, - { - title: '体型标签', - align: 'center', - dataIndex: 'bodyTagList', - width: 150, - ellipsis: false, - // format(text, record, index) { - // if (!!text) { - // return text.map((item) => item.tagName).join('、'); - // } else { - // return '-'; - // } - // }, - }, - { - title: '情绪标签', - align: 'center', - dataIndex: 'emotionTagList', - width: 150, - ellipsis: false, - // format(text, record, index) { - // if (!!text) { - // return text.map((item) => item.tagName).join('、'); - // } else { - // return '-'; - // } - // }, - }, + // { + // title: '体型标签', + // align: 'center', + // dataIndex: 'bodyTagList', + // width: 150, + // ellipsis: false, + // // format(text, record, index) { + // // if (!!text) { + // // return text.map((item) => item.tagName).join('、'); + // // } else { + // // return '-'; + // // } + // // }, + // }, + // { + // title: '情绪标签', + // align: 'center', + // dataIndex: 'emotionTagList', + // width: 150, + // ellipsis: false, + // // format(text, record, index) { + // // if (!!text) { + // // return text.map((item) => item.tagName).join('、'); + // // } else { + // // return '-'; + // // } + // // }, + // }, { title: '收费价格', align: 'center', diff --git a/src/views/services/serviceDirective/ConfigServiceDirectiveList.vue b/src/views/services/serviceDirective/ConfigServiceDirectiveList.vue index 40d96fd..5b22c78 100644 --- a/src/views/services/serviceDirective/ConfigServiceDirectiveList.vue +++ b/src/views/services/serviceDirective/ConfigServiceDirectiveList.vue @@ -37,7 +37,7 @@ - + -
+ + {{ data?.title + '(' + data?.cycleTypeName + ')' }} {{ data?.title }} (已停用) @@ -124,7 +124,7 @@
-
+
@@ -134,14 +134,14 @@ 配置服务类别 配置服务类型 --> - 配置体型标签 配置情绪标签 + preIcon="tabler:settings">配置情绪标签 --> 指令库 + preIcon="ant-design:profile-outlined">标准指令库