From 4bd0220e8c41d7a68510e8a0b551c36a3c85ffc9 Mon Sep 17 00:00:00 2001 From: herenshan112 Date: Mon, 11 Aug 2025 16:05:56 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E5=8F=B8=E6=8E=92=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/hr/company/companyduty.vue | 131 ++++++++++++++++++ .../appPage/appPageForm/dataBoard.vue | 14 +- .../appPage/appPageForm/echatesUnit/right.vue | 14 ++ .../appPageForm/echatesUnit/winBox/dimMea.vue | 43 ++++++ 4 files changed, 200 insertions(+), 2 deletions(-) create mode 100644 src/views/hr/company/companyduty.vue diff --git a/src/views/hr/company/companyduty.vue b/src/views/hr/company/companyduty.vue new file mode 100644 index 0000000..70853b6 --- /dev/null +++ b/src/views/hr/company/companyduty.vue @@ -0,0 +1,131 @@ + + + + diff --git a/src/views/sysworkflow/lowcodepage/appPage/appPageForm/dataBoard.vue b/src/views/sysworkflow/lowcodepage/appPage/appPageForm/dataBoard.vue index 81bdf8b..fa8bc5d 100644 --- a/src/views/sysworkflow/lowcodepage/appPage/appPageForm/dataBoard.vue +++ b/src/views/sysworkflow/lowcodepage/appPage/appPageForm/dataBoard.vue @@ -68,6 +68,9 @@ const echartsInfo = reactive({ }); const dimAry = ref([]); const meaAry = ref([]); + +const sunDimAry = ref([]); +const sunMeaAry = ref([]); /** @ 作者: 秦东 @ 时间: 2025-06-27 13:06:25 @@ -79,6 +82,8 @@ const dimMeaList = () => { console.log("获取维度义量化字段", data); dimAry.value = data.data.dimList; meaAry.value = data.data.meaList; + sunDimAry.value = data.data.sunDimList; + sunMeaAry.value = data.data.sunMeaList; }); /*获取视图数据*/ getChartCont({ id: props.state.formData.form.name }).then((data) => { @@ -136,8 +141,13 @@ const saveChart = () => { /> - + + diff --git a/src/views/sysworkflow/lowcodepage/appPage/appPageForm/echatesUnit/right.vue b/src/views/sysworkflow/lowcodepage/appPage/appPageForm/echatesUnit/right.vue index 3a2a603..e416a34 100644 --- a/src/views/sysworkflow/lowcodepage/appPage/appPageForm/echatesUnit/right.vue +++ b/src/views/sysworkflow/lowcodepage/appPage/appPageForm/echatesUnit/right.vue @@ -30,6 +30,18 @@ const props = defineProps({ return []; }, }, + sunDimAry: { + type: Array, + default() { + return []; + }, + }, + sunMeaAry: { + type: Array, + default() { + return []; + }, + }, }); const pickDimInfo = ref(""); @@ -353,6 +365,8 @@ const shuxingmh = (val: any) => { :dim-mea-type="dimMeaType" :dim-ary="dimAry" :mea-ary="meaAry" + :sun-dim-ary="props.sunDimAry" + :sun-mea-ary="props.sunMeaAry" /> ("right"); @@ -629,6 +641,7 @@ const duliangBianhua = () => { checkMeaList.value = checkMeaList.value.slice(-1); } }; +const checkListsund = ref([]);