危险作业-有限空间bug
parent
70407e7e00
commit
59edf1e6af
|
@ -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: ''
|
||||
}
|
||||
},
|
||||
|
|
|
@ -108,7 +108,7 @@ export default {
|
|||
return new Promise((resolve) => {
|
||||
this.listLoading = true
|
||||
requestFN(
|
||||
'/gfLimitSpace/corpCountlist?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
|
||||
'/gfConfinedSpace/corpCountlist?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
|
||||
{
|
||||
COPRINF_ID: sessionStorage.getItem('user').CORPINFO_ID || '',
|
||||
KEYWORDS: this.KEYWORDS
|
||||
|
|
|
@ -242,7 +242,7 @@ export default {
|
|||
getList() {
|
||||
this.listLoading = true
|
||||
requestFN(
|
||||
'/gfLimitSpace/list?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
|
||||
'/gfConfinedSpace/list?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
|
||||
{
|
||||
KEYWORDS: this.KEYWORDS, APPLY_STATUS: this.STATUS,
|
||||
DEPTIDS: this.DEPTIDS, tm: new Date().getTime(),
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue