diff --git a/jero-web/src/views/projectManagement/components/TaskListModel.vue b/jero-web/src/views/projectManagement/components/TaskListModel.vue
index 31e1cc703..06ca28a16 100644
--- a/jero-web/src/views/projectManagement/components/TaskListModel.vue
+++ b/jero-web/src/views/projectManagement/components/TaskListModel.vue
@@ -176,7 +176,15 @@
data() {
return {
formInline: {},
- rules: {},
+ rules: {
+ certificationProgressRemark:[
+ {
+ max: 500,
+ message: this.$t('remarks') + this.$t('cannotExceed') + 500 + this.$t('Characters'),
+ trigger: 'blur'
+ }
+ ],
+ },
title: this.$t('CertificationProgress'),
visible: false,
confirmLoading: false,
diff --git a/jero-web/src/views/projectManagement/components/certificationList/index.vue b/jero-web/src/views/projectManagement/components/certificationList/index.vue
index 7f30ea37e..96bec6188 100644
--- a/jero-web/src/views/projectManagement/components/certificationList/index.vue
+++ b/jero-web/src/views/projectManagement/components/certificationList/index.vue
@@ -70,7 +70,8 @@
{{ $t('export') }}
@@ -129,7 +130,7 @@
{{ $t('templateDownload') }}
@@ -144,7 +145,7 @@
-
+ v-if="roleSwitchingCode == 0 || roleSwitchingCode == 2">
...{{ $t('more') }}
diff --git a/jero-web/src/views/virtualAuthenticationList/index.vue b/jero-web/src/views/virtualAuthenticationList/index.vue
index 10c635433..4765a055d 100644
--- a/jero-web/src/views/virtualAuthenticationList/index.vue
+++ b/jero-web/src/views/virtualAuthenticationList/index.vue
@@ -409,7 +409,7 @@
name: item.name,
useExplain: item.useExplain,
id: item.id,
- title: '虚拟认证清单详情'
+ title: '市场认证清单详情'
}
})
window.open(newUrl.href, '_blank')
diff --git a/jero-web/src/views/virtualAuthenticationList/virtualAuthenticationListDesign/certificationListMaintenance.vue b/jero-web/src/views/virtualAuthenticationList/virtualAuthenticationListDesign/certificationListMaintenance.vue
index 3da9a0222..95301d8a7 100644
--- a/jero-web/src/views/virtualAuthenticationList/virtualAuthenticationListDesign/certificationListMaintenance.vue
+++ b/jero-web/src/views/virtualAuthenticationList/virtualAuthenticationListDesign/certificationListMaintenance.vue
@@ -292,7 +292,7 @@
title: this.$t('category'),
align: 'left',
dataIndex: 'category',
- width: 150,
+ width: 200,
fixed: 'left',
ellipsis: true
},
@@ -300,7 +300,7 @@
title: this.$t('inspectionItems'),
align: 'left',
dataIndex: 'inspectionItem',
- width: 150,
+ width: 200,
ellipsis: true,
fixed: 'left',
scopedSlots: { customRender: 'inspectionItems' }
@@ -323,7 +323,7 @@
title: this.$t('standard'),
align: 'left',
dataIndex: 'serialNumber',
- width: 150,
+ width: 210,
ellipsis: true
},
{
@@ -353,7 +353,7 @@
}
},
created() {
- if (this.$route.query.title == '虚拟认证清单详情') {
+ if (this.$route.query.title == '市场认证清单详情') {
document.title = this.$t('virtualAuthenticationListDetails')
this.columns.splice(7, 1)
} else {
@@ -362,8 +362,8 @@
},
mounted() {
this.title = this.$route.query.title
- this.isTrue = this.$route.query.title == '虚拟认证清单详情' ? false : true
- this.isFalse = this.$route.query.title == '虚拟认证清单详情' ? true : false
+ this.isTrue = this.$route.query.title == '市场认证清单详情' ? false : true
+ this.isFalse = this.$route.query.title == '市场认证清单详情' ? true : false
this.getList()
},
computed: {},