From 9a0007442d3eacb9d6e6386c35192bf2dbafc661 Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Thu, 19 May 2022 21:39:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93=E5=B7=B2?= =?UTF-8?q?=E7=9F=A5bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../virtualList/components/addModel.vue | 8 +- .../virtualList/components/editModel.vue | 152 +++++++++--------- .../views/documentTools/virtualList/index.vue | 8 +- .../projectManagement/components/TaskList.vue | 6 +- .../components/TaskListModel.vue | 12 +- .../components/batSetting.vue | 68 +++++++- .../currentStatusOfTheProjectEcharts.vue | 2 +- .../components/listAddModel.vue | 8 +- .../components/listOfRegulations.vue | 31 +++- 9 files changed, 185 insertions(+), 110 deletions(-) diff --git a/jero-web/src/views/documentTools/virtualList/components/addModel.vue b/jero-web/src/views/documentTools/virtualList/components/addModel.vue index 4203bc568..ec82418de 100644 --- a/jero-web/src/views/documentTools/virtualList/components/addModel.vue +++ b/jero-web/src/views/documentTools/virtualList/components/addModel.vue @@ -40,7 +40,7 @@ :triggerChange="false" :dictCode="'state'"/> - + {{$t('query')}} {{$t('reset')}} @@ -265,8 +265,7 @@ } .title-text { - width: 20%; - min-width: 110px; + width: 33px; color: #000F16; display: inline-block; font-weight: 500; @@ -281,9 +280,8 @@ .box-input { display: inline-block; - width: 70%; + width: 100%; height: 38px; - margin-top: 2px; } .box-button { diff --git a/jero-web/src/views/documentTools/virtualList/components/editModel.vue b/jero-web/src/views/documentTools/virtualList/components/editModel.vue index 62d14c0ae..2e93313ab 100644 --- a/jero-web/src/views/documentTools/virtualList/components/editModel.vue +++ b/jero-web/src/views/documentTools/virtualList/components/editModel.vue @@ -55,13 +55,17 @@
- WVTA ID + {{$t('zoneOfApplication')}}
- - + + + + +
@@ -117,6 +121,24 @@
+ +
+
+ {{$t('implementationCategory')}} +
+ + + +
+
+ +
@@ -134,8 +156,6 @@
- -
@@ -154,6 +174,21 @@
+ + + +
+
+ WVTA ID +
+ + + +
+
@@ -171,6 +206,39 @@
+ + +
+
+ * + {{$t('certificationLevel')}} +
+ + + +
+
+ +
+
+ {{$t('applicableSupplement')}} +
+ + + +
+
+
@@ -209,74 +277,6 @@
- - -
-
- * - {{$t('certificationLevel')}} -
- - - -
-
- -
-
- {{$t('implementationCategory')}} -
- - - -
-
-
- - -
-
- {{$t('zoneOfApplication')}} -
- - - - - - -
-
- -
-
- {{$t('applicableSupplement')}} -
- - - -
-
-
diff --git a/jero-web/src/views/documentTools/virtualList/index.vue b/jero-web/src/views/documentTools/virtualList/index.vue index 95e35e94f..66d090504 100644 --- a/jero-web/src/views/documentTools/virtualList/index.vue +++ b/jero-web/src/views/documentTools/virtualList/index.vue @@ -178,7 +178,7 @@ total: 0, pageSize: 10, pageNo: 1, - title: '新增', + title: this.$t('newlyAdded'), columns: [ { title: this.$t('VirtualListName'), @@ -217,7 +217,7 @@ }, //添加 handleAdd() { - this.title = '新增' + this.title = this.$t('newlyAdded') this.formInline = {} this.visible = true this.$nextTick(() => { @@ -249,7 +249,7 @@ }, //编辑 edit(item) { - this.title = '编辑' + this.title = this.$t('edit') this.formInline = JSON.parse(JSON.stringify(item)) this.visible = true this.$nextTick(() => { @@ -514,7 +514,7 @@ .drawer-bootom-button { position: absolute; bottom: 0; - z-index:100; + z-index: 100; width: 100%; border-top: 1px solid #e8e8e8; padding: 10px 16px; diff --git a/jero-web/src/views/projectManagement/components/TaskList.vue b/jero-web/src/views/projectManagement/components/TaskList.vue index b9d1bdc8b..6626f9ec9 100644 --- a/jero-web/src/views/projectManagement/components/TaskList.vue +++ b/jero-web/src/views/projectManagement/components/TaskList.vue @@ -231,12 +231,14 @@ CurrentColor: { '1': '#f3dddd', '2': '#f6ebdb', - '3': '#dbf6e2' + '3': '#dbf6e2', + '4': '#ddf3f4' }, CurrentColorBox: { '1': '#E83030', '2': '#FDA71C', - '3': '#26BD4B' + '3': '#26BD4B', + '4': '#00B3BE' }, url: { list: '/project/projectTaskInventoryEO/list', diff --git a/jero-web/src/views/projectManagement/components/TaskListModel.vue b/jero-web/src/views/projectManagement/components/TaskListModel.vue index fa98a23c3..80e5e71e0 100644 --- a/jero-web/src/views/projectManagement/components/TaskListModel.vue +++ b/jero-web/src/views/projectManagement/components/TaskListModel.vue @@ -73,11 +73,12 @@ {{ $t('green') }} - - - - - + + + + {{ $t('blue') }} + +
@@ -143,6 +144,7 @@ this.disabled = true } } + console.log(val.conditionAssessment) this.formInline = val this.$nextTick(() => { this.$refs.ruleForm.clearValidate() diff --git a/jero-web/src/views/projectManagement/components/batSetting.vue b/jero-web/src/views/projectManagement/components/batSetting.vue index 6b65bc210..d0e883b8e 100644 --- a/jero-web/src/views/projectManagement/components/batSetting.vue +++ b/jero-web/src/views/projectManagement/components/batSetting.vue @@ -1,7 +1,7 @@