diff --git a/src/pages/regulatoryRepository/nonConfomity/pages/historicalData.vue b/src/pages/regulatoryRepository/nonConfomity/pages/historicalData.vue
index 92d3a7370..a520ab673 100644
--- a/src/pages/regulatoryRepository/nonConfomity/pages/historicalData.vue
+++ b/src/pages/regulatoryRepository/nonConfomity/pages/historicalData.vue
@@ -232,7 +232,7 @@
{{historySeeForm.qaEngineer}}
- {{historySeeForm.actualCloseTime.substring(0, 11)}}
+ {{historySeeForm.actualCloseTime}}
diff --git a/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue b/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue
index 220bc4adc..01f2866bd 100644
--- a/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue
+++ b/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue
@@ -269,7 +269,7 @@
{{historySeeForm.qaEngineer}}
- {{historySeeForm.planCloseTime.substring(0, 11)}}
+ {{historySeeForm.planCloseTime ? historySeeForm.planCloseTime.substring(0, 11) : '-'}}
@@ -384,7 +384,7 @@
验证时间:
-
{{(item.validTime ? item.validTime.substring(0, 11): '')}}
+
{{(item.validTime ? item.validTime.substring(0, 11) : '')}}
验证结果:
@@ -592,16 +592,18 @@ export default {
this.$nextTick(() => {
const arr = []
let questionType = []
- questionType = this.historySeeForm.quesType.split(',')
- questionType.map((item) => {
- this.optionList.map((opr) => {
- if (item === opr.value) {
- item = opr.label
- arr.push(item)
- }
+ if (this.historySeeForm.quesType) {
+ questionType = this.historySeeForm.quesType.split(',')
+ questionType.map((item) => {
+ this.optionList.map((opr) => {
+ if (item === opr.value) {
+ item = opr.label
+ arr.push(item)
+ }
+ })
})
- })
- this.historySeeForm.quesType = arr.toString()
+ this.historySeeForm.quesType = arr.toString()
+ }
})
},
//点击编辑按钮事件