危险作业-有限空间bug

pet-人员中台对接-xuyifeng-7.24
water_xu 2024-06-27 20:39:15 +08:00
parent 70407e7e00
commit 59edf1e6af
4 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<CorpInfo v-show="activeName=='CorpInfo'" /> <CorpInfo v-show="activeName=='CorpInfo'" />
<List v-show="activeName=='highwork_list'" /> <List v-if="activeName=='highwork_list'" />
<Detail v-if="activeName=='Detail'"/> <Detail v-if="activeName=='Detail'"/>
</div> </div>
</template> </template>
@ -14,7 +14,7 @@ export default {
components: {CorpInfo,List,Detail}, components: {CorpInfo,List,Detail},
data() { data() {
return { return {
activeName: 'highwork_list', activeName: 'CorpInfo',
HIGHWORK_ID: '' HIGHWORK_ID: ''
} }
}, },

View File

@ -108,7 +108,7 @@ export default {
return new Promise((resolve) => { return new Promise((resolve) => {
this.listLoading = true this.listLoading = true
requestFN( requestFN(
'/gfLimitSpace/corpCountlist?showCount=' + this.listQuery.limit + '&currentPage=' + this.listQuery.page, '/gfConfinedSpace/corpCountlist?showCount=' + this.listQuery.limit + '&currentPage=' + this.listQuery.page,
{ {
COPRINF_ID: sessionStorage.getItem('user').CORPINFO_ID || '', COPRINF_ID: sessionStorage.getItem('user').CORPINFO_ID || '',
KEYWORDS: this.KEYWORDS KEYWORDS: this.KEYWORDS

View File

@ -242,7 +242,7 @@ export default {
getList() { getList() {
this.listLoading = true this.listLoading = true
requestFN( requestFN(
'/gfLimitSpace/list?showCount=' + this.listQuery.limit + '&currentPage=' + this.listQuery.page, '/gfConfinedSpace/list?showCount=' + this.listQuery.limit + '&currentPage=' + this.listQuery.page,
{ {
KEYWORDS: this.KEYWORDS, APPLY_STATUS: this.STATUS, KEYWORDS: this.KEYWORDS, APPLY_STATUS: this.STATUS,
DEPTIDS: this.DEPTIDS, tm: new Date().getTime(), DEPTIDS: this.DEPTIDS, tm: new Date().getTime(),

View File

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<CorpInfo v-show="activeName=='CorpInfo'" ref="list" /> <CorpInfo v-show="activeName=='CorpInfo'" ref="list" />
<circuitList v-show="activeName=='LimitSpace'"/> <circuitList v-if="activeName=='LimitSpace'"/>
<Detail v-if="activeName=='Detail'"/> <Detail v-if="activeName=='Detail'"/>
</div> </div>
</template> </template>