diff --git a/src/asyncRouter.js b/src/asyncRouter.js index f9e507c..3a23a8e 100644 --- a/src/asyncRouter.js +++ b/src/asyncRouter.js @@ -46,7 +46,11 @@ router.beforeEach((to, from, next) => { if (to.path == `/login` || to.path == '/apiMonitoringCenter' || to.path == '/apiMajorHazardSources') { next() } else { - next(`/login`) + if (to.path == '/map' && to.query.userId) { + next() + } else { + next(`/login`) + } } } }) diff --git a/src/views/firefighting/device/components/edit.vue b/src/views/firefighting/device/components/edit.vue index b6ab6a6..3130bbb 100644 --- a/src/views/firefighting/device/components/edit.vue +++ b/src/views/firefighting/device/components/edit.vue @@ -311,7 +311,7 @@ export default { } this.$refs.form.validate(valid => { if (valid) { - if (this.$parent.FIRE_DEVICE_ID === '') { + if (this.$parent.FIRE_DEVICE_ID === '' || this.$parent.FIRE_DEVICE_ID === undefined) { this.handleAdd() } else { this.handleUpdate() diff --git a/src/views/map/index.vue b/src/views/map/index.vue index 7115566..849fb7e 100644 --- a/src/views/map/index.vue +++ b/src/views/map/index.vue @@ -1614,6 +1614,10 @@ export default { handleClickRightTools(index) { if (this.rightOptionsList[index].check !== '') this.rightOptionsList[index].check = !this.rightOptionsList[index].check if (index === 0) { + if (this.$route.query.userId) { + window.close() + return + } if (this.gangkouActive === '00004') { if (this.timer) { clearInterval(this.timer) @@ -2922,10 +2926,28 @@ export default { this.corpInfo.CORP_INFO_ID = data.info.CORP_INFO_ID this.corpInfo.latitude = data.info.latitude this.corpInfo.longitude = data.info.longitude + this.initUser() this.initMap() }).catch((e) => { console.log(e) }) + }, + initUser() { + const { userId } = this.$route.query + if (!userId) return + requestFN( + '/admin/v2/login', + { userId } + ).then((res) => { + console.log(res) + if (res.result !== 'success') { + alert('登录失败') + window.close() + } + }).catch((e) => { + alert('登录失败') + window.close() + }) } } } diff --git a/src/views/security_commitment/promise_book/components/add.vue b/src/views/security_commitment/promise_book/components/add.vue index 0b94653..9249496 100644 --- a/src/views/security_commitment/promise_book/components/add.vue +++ b/src/views/security_commitment/promise_book/components/add.vue @@ -146,7 +146,7 @@ - + + + + + + @@ -297,6 +302,7 @@ export default { DEPARTMENT_ID: null, POST_ID: '', USER_ID: [], + NICKNAME: '', id: Math.random() } ], @@ -379,6 +385,7 @@ export default { DEPARTMENT_ID: data.coverpeople[i].DEPARTMENT_ID, POST_ID: data.coverpeople[i].POST_ID, USER_ID: [], + NICKNAME: data.coverpeople[i].NICKNAME, id: data.coverpeople[i].PROMISEPEOPLE_ID }) for (let j = 0; j < this.form.coverpeople.length; j++) { @@ -557,7 +564,7 @@ export default { { DEPARTMENT_ID: item.DEPARTMENT_ID, POST_ID: item.POST_ID, USER_ID: item.USER_ID } )) const coverpeople = this.form.coverpeople.map(item => ( - { DEPARTMENT_ID: item.DEPARTMENT_ID, POST_ID: item.POST_ID, USER_ID: item.USER_ID } + { DEPARTMENT_ID: item.DEPARTMENT_ID, POST_ID: item.POST_ID, USER_ID: item.USER_ID, NICKNAME: item.NICKNAME } )) let url if (this.$parent.PROMISE_ID) { diff --git a/src/views/security_commitment/promise_book/components/details.vue b/src/views/security_commitment/promise_book/components/details.vue index fd52cc9..423ef04 100644 --- a/src/views/security_commitment/promise_book/components/details.vue +++ b/src/views/security_commitment/promise_book/components/details.vue @@ -113,7 +113,7 @@ export default { ).then((data) => { const DETAIL = data.COLLATERAL.map(item => ({ value: item.COLLATERAL, id: item.PROMISEDETAIL_ID })) this.dialog.visible = true - this.dialog.data = { ...data.varList, DETAIL, FILEPATH: data.ISGN.FILEPATH, SIGNTIME: data.ISGN.SIGNTIME, COVERPEOPLE: data.COVERPEOPLE[0].USERNAME } + this.dialog.data = { ...data.varList, DETAIL, FILEPATH: data.ISGN.FILEPATH, SIGNTIME: data.ISGN.SIGNTIME, COVERPEOPLE: data.COVERPEOPLE[0].USERNAME, NICKNAME: data.COVERPEOPLE[0].NICKNAME } }).catch((e) => { }) }, diff --git a/src/views/security_commitment/promise_book/components/promise_book_dialog.vue b/src/views/security_commitment/promise_book/components/promise_book_dialog.vue index ca2cd81..dfc5954 100644 --- a/src/views/security_commitment/promise_book/components/promise_book_dialog.vue +++ b/src/views/security_commitment/promise_book/components/promise_book_dialog.vue @@ -9,7 +9,7 @@

{{ dialogData.TYPE === '0' ? '安全生产承诺书' : '安全生产责任状' }}

-
{{ dialogData.COVERPEOPLE }}:
+
{{ dialogData.COVERPEOPLE }}{{ dialogData.NICKNAME }}:
{{ dialogData.TEXT }}
diff --git a/src/views/security_commitment/promise_book/components/see.vue b/src/views/security_commitment/promise_book/components/see.vue index 86b9f4f..894fbe3 100644 --- a/src/views/security_commitment/promise_book/components/see.vue +++ b/src/views/security_commitment/promise_book/components/see.vue @@ -39,6 +39,8 @@ {{ item.POSTNAME }} {{ '人员' + (index + 1) }} {{ item.USERNAME && item.USERNAME.join('、') }} + {{ '岗位名称' + (index + 1) }} + {{ item.NICKNAME }} 承诺内容 @@ -119,6 +121,7 @@ export default { DEPTNAME: data.coverpeople[i].DEPTNAME, POST_ID: data.coverpeople[i].POST_ID, POSTNAME: data.coverpeople[i].POSTNAME, + NICKNAME: data.coverpeople[i].NICKNAME, USER_ID: [], USERNAME: [], id: data.coverpeople[i].PROMISEPEOPLE_ID @@ -135,7 +138,7 @@ export default { }, goView() { this.dialog.visible = true - this.dialog.data = { ...this.form, DETAIL: this.form.DETAIL, FILEPATH: '', SIGNTIME: '', COVERPEOPLE: this.form.coverpeople[0].USERNAME[0] } + this.dialog.data = { ...this.form, DETAIL: this.form.DETAIL, FILEPATH: '', SIGNTIME: '', COVERPEOPLE: this.form.coverpeople[0].USERNAME[0], NICKNAME: this.form.coverpeople[0].NICKNAME } }, goBack() { this.$parent.activeName = 'List'