From f1c3486d00b82bb573f8856cfcb520777dbc74d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Thu, 6 Apr 2023 09:45:15 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E8=AE=A4=E8=AF=81=E6=B8=85=E5=8D=95?= =?UTF-8?q?=E6=A0=87=E5=87=86=E6=A0=87=E5=8F=B7=E5=A2=9E=E5=8A=A0=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E5=BA=93=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/virtualListDetails.vue | 22 ++++++++------- .../components/editModel.vue | 27 +++++++++++++------ 2 files changed, 32 insertions(+), 17 deletions(-) diff --git a/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue b/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue index e2577d9e7..348be5014 100644 --- a/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue +++ b/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue @@ -607,13 +607,13 @@ } ] }, - { - title: this.$t('operation'), - align: 'left', - fixed: 'right', - width: 240, - scopedSlots: { customRender: 'operation' } - } + // { + // title: this.$t('operation'), + // align: 'left', + // fixed: 'right', + // width: 240, + // scopedSlots: { customRender: 'operation' } + // } ], columnsAll: [], confirmLoading: false, @@ -1075,7 +1075,11 @@ moduleFlag: this.$route.query.title == '市场清单详情' ? '虚拟清单详情' : '维护清单' }).then((res) => { if (res.success) { - this.columnsAll = res.result + if(res.result && res.result.length > 0){ + this.columnsAll = res.result + }else{ + this.columnsAll = this.column + } for (let j = 0; j < this.columnsAll.length; j++) { for (let i = 0; i < this.column.length; i++) { if (this.columnsAll[j].title == this.$t('confirmationOfDesignConformity')) { @@ -1122,7 +1126,7 @@ title: this.$t('operation'), align: 'left', fixed: 'right', - width: 160, + width: 240, scopedSlots: { customRender: 'operation' } }) diff --git a/jero-web/src/views/virtualAuthenticationList/components/editModel.vue b/jero-web/src/views/virtualAuthenticationList/components/editModel.vue index 80a37c0fd..f24bf95ad 100644 --- a/jero-web/src/views/virtualAuthenticationList/components/editModel.vue +++ b/jero-web/src/views/virtualAuthenticationList/components/editModel.vue @@ -15,13 +15,14 @@
- * + * {{$t('regulationNo')}}
@@ -30,7 +31,7 @@
- * + * {{$t('areaOfResponsibility')}}
@@ -48,12 +49,13 @@
- * + * WVTA ID
@@ -64,13 +66,14 @@
- * + * {{$t('category')}}
@@ -78,13 +81,14 @@
- * + * {{$t('inspectionItems')}}
@@ -94,12 +98,13 @@
- * + * {{$t('configurationItem')}}
@@ -109,7 +114,7 @@
- * + * {{$t('typeOfDeliverables')}}
\ No newline at end of file From 5664ddac16ed8f9762a491ebf5cc3b9684173f4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Thu, 6 Apr 2023 09:58:11 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E8=AE=A4=E8=AF=81=E6=B8=85=E5=8D=95?= =?UTF-8?q?=E6=A0=87=E5=87=86=E6=A0=87=E5=8F=B7=E5=A2=9E=E5=8A=A0=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E5=BA=93=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/projectManagement/components/responsibilityList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jero-web/src/views/projectManagement/components/responsibilityList.vue b/jero-web/src/views/projectManagement/components/responsibilityList.vue index c756dfcfa..953aff549 100644 --- a/jero-web/src/views/projectManagement/components/responsibilityList.vue +++ b/jero-web/src/views/projectManagement/components/responsibilityList.vue @@ -104,7 +104,7 @@ if (this.queryParam.operatorType == 'queryListingToConfirmStatistics' || this.queryParam.operatorType == 'queryTaskToConfirmStatistics'){ item.isListing = '1' } - this.$emit('responsibility', item) + // this.$emit('responsibility', item) } } }