危险作业-有限空间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>
<div>
<CorpInfo v-show="activeName=='CorpInfo'" />
<List v-show="activeName=='highwork_list'" />
<List v-if="activeName=='highwork_list'" />
<Detail v-if="activeName=='Detail'"/>
</div>
</template>
@ -14,7 +14,7 @@ export default {
components: {CorpInfo,List,Detail},
data() {
return {
activeName: 'highwork_list',
activeName: 'CorpInfo',
HIGHWORK_ID: ''
}
},

View File

@ -108,7 +108,7 @@ export default {
return new Promise((resolve) => {
this.listLoading = true
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 || '',
KEYWORDS: this.KEYWORDS

View File

@ -242,7 +242,7 @@ export default {
getList() {
this.listLoading = true
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,
DEPTIDS: this.DEPTIDS, tm: new Date().getTime(),

View File

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