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