危险作业-高处作业-吊装作业bug修改
parent
f2a07c9b6b
commit
7bbb361e1b
|
@ -248,7 +248,7 @@ export default {
|
|||
})
|
||||
},
|
||||
goBack() {
|
||||
this.$parent.activeName = 'List'
|
||||
this.$parent.activeName = 'highwork_list'
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -132,7 +132,14 @@
|
|||
<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>
|
||||
import Pagination from '@/components/Pagination' // 通过 el-pagination二次打包
|
||||
|
@ -211,7 +218,9 @@ export default {
|
|||
'/dangerousWork/gfHighWork/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
|
||||
|
@ -326,6 +335,10 @@ export default {
|
|||
goDetail(id) {
|
||||
this.$parent.activeName = 'Detail'
|
||||
this.$parent.HIGHWORK_ID = id
|
||||
},
|
||||
goBack(){
|
||||
this.$parent.activeName = 'CorpInfo'
|
||||
this.$parent.HIGHWORK_ID = ''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,28 +1,23 @@
|
|||
<template>
|
||||
<div>
|
||||
<CorpInfo v-show="activeName=='CorpInfo'" />
|
||||
<List v-show="activeName=='highwork_list'" />
|
||||
<CorpInfo v-show="activeName=='CorpInfo'" ref="list"/>
|
||||
<List v-if="activeName=='highwork_list'" />
|
||||
<Detail v-if="activeName=='Detail'"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import CorpInfo from "./components/corpInfo";
|
||||
import List from './components/list'
|
||||
import Detail from './components/detail'
|
||||
import CorpInfo from "./components/corpInfo";
|
||||
export default {
|
||||
components: {CorpInfo,List,Detail},
|
||||
data() {
|
||||
return {
|
||||
activeName: 'highwork_list',
|
||||
HIGHWORK_ID: ''
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
activeName(val) {
|
||||
if (val == 'highwork_list') {
|
||||
this.$refs.list.getQuery()
|
||||
}
|
||||
activeName: 'CorpInfo',
|
||||
HIGHWORK_ID: '',
|
||||
ticketType : '',
|
||||
CUTROAD_ID:''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -102,7 +102,7 @@ export default {
|
|||
this.$parent.activeName = tableName
|
||||
this.$parent.CORPINFO_ID = CORPINFO_ID
|
||||
this.$parent.ticketType = ticketType
|
||||
this.$parent.CUTROAD_ID =''
|
||||
this.$parent.HOISTING_ID =''
|
||||
},
|
||||
getList() {
|
||||
return new Promise((resolve) => {
|
||||
|
|
|
@ -132,7 +132,13 @@
|
|||
<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>
|
||||
import Pagination from '@/components/Pagination' // 通过 el-pagination二次打包
|
||||
|
@ -211,7 +217,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 +332,12 @@ 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 = ''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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,9 @@ export default {
|
|||
data() {
|
||||
return {
|
||||
activeName: 'CorpInfo',
|
||||
HOISTING_ID: ''
|
||||
HOISTING_ID: '',
|
||||
ticketType : '',
|
||||
CORPINFO_ID : ''
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
|
|
Loading…
Reference in New Issue