1.其他公司的风险四色图
parent
045793c5fd
commit
f2a07c9b6b
|
@ -246,7 +246,7 @@ export default {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
goBack() {
|
goBack() {
|
||||||
this.$parent.activeName = 'List'
|
this.$parent.activeName = 'electricity_list'
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -109,6 +109,10 @@
|
||||||
<el-button type="primary" @click="dialogFormShow = false">确 定</el-button>
|
<el-button type="primary" @click="dialogFormShow = false">确 定</el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
|
<div style="height: 60px;"></div>
|
||||||
|
<div class="ui-foot">
|
||||||
|
<el-button type="primary" @click="goBack">返 回</el-button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
@ -186,7 +190,9 @@ export default {
|
||||||
'/dangerousWork/gfElectricity/list?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
|
'/dangerousWork/gfElectricity/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(),
|
||||||
|
CORPINFO_ID: this.$parent.CORPINFO_ID,
|
||||||
|
ticketType: this.$parent.ticketType
|
||||||
}
|
}
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
|
@ -291,6 +297,10 @@ export default {
|
||||||
goDetail(id) {
|
goDetail(id) {
|
||||||
this.$parent.activeName = 'Detail'
|
this.$parent.activeName = 'Detail'
|
||||||
this.$parent.ELECTRICITY_ID = id
|
this.$parent.ELECTRICITY_ID = id
|
||||||
|
},
|
||||||
|
goBack(){
|
||||||
|
this.$parent.activeName = 'CorpInfo'
|
||||||
|
this.$parent.BREAKGROUND_ID = ''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<CorpInfo v-show="activeName=='CorpInfo'" ref="list" />
|
<CorpInfo v-show="activeName=='CorpInfo'" ref="list" />
|
||||||
<List v-show="activeName=='electricity_list'" />
|
<List v-if="activeName=='electricity_list'" />
|
||||||
<Detail v-if="activeName=='Detail'"/>
|
<Detail v-if="activeName=='Detail'"/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue