diff --git a/src/pages/regulatoryRepository/nonConfomity/pages/historicalData.vue b/src/pages/regulatoryRepository/nonConfomity/pages/historicalData.vue
index 92d3a7370..ac1ad2ac2 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 ? historySeeForm.actualCloseTime.substring(0, 11) : '-'}}
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()
+ }
})
},
//点击编辑按钮事件
diff --git a/src/sysConfig/index.js b/src/sysConfig/index.js
index d2960cf5d..3ea4b4abd 100644
--- a/src/sysConfig/index.js
+++ b/src/sysConfig/index.js
@@ -6,7 +6,7 @@
// 服务器地址
// const devIp = '10.96.10.171'
// const devInterfacePORT = '9999'
-const devIp = '10.96.170.156'
+const devIp = '127.0.0.1'
const devInterfacePORT = '9999'
// 云端端口号
const DEV_CLOUD_RES_INTERFACE_PORT = '7777'