1.吊装作业bug修复
parent
f2a07c9b6b
commit
484c95f85b
|
@ -132,6 +132,10 @@
|
|||
<el-button type="primary" @click="dialogFormShow = false">确 定</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<div style="height: 60px;"></div>
|
||||
<div class="ui-foot">
|
||||
<el-button type="primary" @click="goBack">返 回</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
@ -211,7 +215,9 @@ export default {
|
|||
'/dangerousWork/gfHoisting/list?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
|
||||
{
|
||||
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) => {
|
||||
this.listLoading = false
|
||||
|
@ -324,8 +330,13 @@ export default {
|
|||
}
|
||||
},
|
||||
goDetail(id) {
|
||||
this.$parent.activeName = 'Hoisting'
|
||||
this.$parent.activeName = 'Detail'
|
||||
this.$parent.HOISTING_ID = id
|
||||
},
|
||||
goBack(){
|
||||
this.$parent.activeName = 'CorpInfo'
|
||||
this.$parent.HOISTING_ID = ''
|
||||
this.$parent.ticketType =''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<CorpInfo v-show="activeName=='CorpInfo'" ref="list" />
|
||||
<List v-show="activeName=='hoisting_list'" />
|
||||
<List v-if="activeName=='hoisting_list'" />
|
||||
<Detail v-if="activeName=='Detail'"/>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -15,7 +15,8 @@ export default {
|
|||
data() {
|
||||
return {
|
||||
activeName: 'CorpInfo',
|
||||
HOISTING_ID: ''
|
||||
HOISTING_ID: '',
|
||||
ticketType:''
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
|
Loading…
Reference in New Issue