diff --git a/config/index.js b/config/index.js
index f15bf6e..eb65708 100644
--- a/config/index.js
+++ b/config/index.js
@@ -11,7 +11,7 @@ module.exports = {
assetsPublicPath: '/',
proxyTable: {
'/api': {
- target: 'http://192.168.151.43:8091/',
+ target: 'http://192.168.0.49:8091/',
changeOrigin: true,
pathRewrite: {
'^/api': ''
diff --git a/src/views/hotwork_cfd/hotwork/components/detail.vue b/src/views/hotwork_cfd/hotwork/components/detail.vue
index 6c90e95..2bcb9b9 100644
--- a/src/views/hotwork_cfd/hotwork/components/detail.vue
+++ b/src/views/hotwork_cfd/hotwork/components/detail.vue
@@ -75,6 +75,25 @@
@@ -149,13 +168,14 @@
接受交底人 |
-
+
签字:
-
- {{ item.ACCEPT_CONFESS_USER_SIGNER_TIME }}
+
+ {{ item.APPROVAL_SIGNATURE_TIME }}
|
+
监护人 |
@@ -270,6 +290,7 @@ export default {
imgList: [],
imgList1: [],
otherProtectiveMeasures: [],
+ acceptConfessList: [],
confessList: []
}
},
@@ -315,6 +336,11 @@ export default {
this.confessList.push(item)
}
})
+ data.pd.acceptConfessList.forEach(item => {
+ if (item.APPROVAL_SIGNATURE_TIME !== undefined && item.APPROVAL_SIGNATURE_TIME.trim() !== '') {
+ this.acceptConfessList.push(item)
+ }
+ })
for (let i = 0; i < data.measuresList.length; i++) {
// 将字符串转成数组
const PROTECTIVE_MEASURES = data.measuresList[i].PROTECTIVE_MEASURES.split('')
diff --git a/src/views/hotwork_cfd/pigeonhole/components/detail.vue b/src/views/hotwork_cfd/pigeonhole/components/detail.vue
index 7a570fe..a60dc40 100644
--- a/src/views/hotwork_cfd/pigeonhole/components/detail.vue
+++ b/src/views/hotwork_cfd/pigeonhole/components/detail.vue
@@ -74,7 +74,25 @@
| 动火作业实施时间 |
{{ pd.WORK_START_DATE }}至{{ pd.WORK_END_DATE }}止 |
-
+
+ 动火是否完成 |
+
+ 已完成
+ 未完成
+ |
+ 作业现场是否清理 |
+
+ 已清理
+ 未清理
+ |
+
+
+ 是否存在遗留火种 |
+
+ 无遗留火种
+ 未确定现场是否存在遗留火种
+ |
+
@@ -149,10 +167,10 @@
接受交底人 |
-
+
签字:
-
- {{ item.ACCEPT_CONFESS_USER_SIGNER_TIME }}
+
+ {{ item.APPROVAL_SIGNATURE_TIME }}
|
@@ -274,6 +292,7 @@ export default {
imgList: [],
imgList1: [],
otherProtectiveMeasures: [],
+ acceptConfessList: [],
confessList: []
}
},
@@ -399,6 +418,11 @@ export default {
this.confessList.push(item)
}
})
+ data.pd.acceptConfessList.forEach(item => {
+ if (item.APPROVAL_SIGNATURE_TIME !== undefined && item.APPROVAL_SIGNATURE_TIME.trim() !== '') {
+ this.acceptConfessList.push(item)
+ }
+ })
for (let i = 0; i < data.measuresList.length; i++) {
// 将字符串转成数组
const PROTECTIVE_MEASURES = data.measuresList[i].PROTECTIVE_MEASURES.split('')
diff --git a/src/views/map/dialog/hotworkFirst.vue b/src/views/map/dialog/hotworkFirst.vue
index a10ce5e..19a8b7f 100644
--- a/src/views/map/dialog/hotworkFirst.vue
+++ b/src/views/map/dialog/hotworkFirst.vue
@@ -138,10 +138,10 @@
接受交底人 |
-
+
签字:
-
- {{ item.ACCEPT_CONFESS_USER_SIGNER_TIME }}
+
+ {{ item.APPROVAL_SIGNATURE_TIME }}
|
@@ -271,6 +271,7 @@ export default {
imgList: [],
imgList1: [],
otherProtectiveMeasures: [],
+ acceptConfessList: [],
confessList: []
}
},
@@ -318,6 +319,11 @@ export default {
this.confessList.push(item)
}
})
+ data.pd.acceptConfessList.forEach(item => {
+ if (item.APPROVAL_SIGNATURE_TIME !== undefined && item.APPROVAL_SIGNATURE_TIME.trim() !== '') {
+ this.acceptConfessList.push(item)
+ }
+ })
for (let i = 0; i < data.measuresList.length; i++) {
// 将字符串转成数组
const PROTECTIVE_MEASURES = data.measuresList[i].PROTECTIVE_MEASURES.split('')
diff --git a/static/config.js b/static/config.js
index e50846a..509d709 100644
--- a/static/config.js
+++ b/static/config.js
@@ -1,7 +1,7 @@
// eslint-disable-next-line no-unused-vars
const config = {
- weburl: 'http://192.168.151.43:8080/', // 前台地址
- httpurl: 'http://192.168.151.43:8091/', // 后台地址
+ weburl: 'http://192.168.0.49:8080/', // 前台地址
+ httpurl: 'http://192.168.0.49:8091/', // 后台地址
qyurl: 'https://qgqy.qhdsafety.com/', // 企业前台
adminurl: 'https://www.qdkjchina.com/qa-prevention-admin/',
// 正式
| |