修改
This commit is contained in:
parent
74103b0b62
commit
dd55a5279d
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div style="background-color: #f1f3f5; padding-top: 16px">
|
<div style="background-color: #f1f3f5; padding-top: 16px">
|
||||||
<div slot="footer" class="topfooter">
|
<div slot="footer" class="topfooter">
|
||||||
<el-tabs v-model="activeNametab" @tab-click="handleClick">
|
<el-tabs v-model="activeNametab">
|
||||||
<el-tab-pane label="画像审核" name="portrait"></el-tab-pane>
|
<el-tab-pane label="画像审核" name="portrait"></el-tab-pane>
|
||||||
<el-tab-pane label="路径审核" name="route"></el-tab-pane>
|
<el-tab-pane label="路径审核" name="route"></el-tab-pane>
|
||||||
</el-tabs>
|
</el-tabs>
|
||||||
@ -230,9 +230,6 @@ export default {
|
|||||||
this.portraitlistdata = val
|
this.portraitlistdata = val
|
||||||
console.log(this.portraitlistdata, '999999999')
|
console.log(this.portraitlistdata, '999999999')
|
||||||
},
|
},
|
||||||
handleClick(tab, event) {
|
|
||||||
console.log(tab, event, this.activeNametab);
|
|
||||||
},
|
|
||||||
// 忽略
|
// 忽略
|
||||||
ignore() {
|
ignore() {
|
||||||
// let manageRouteNodeIds = []
|
// let manageRouteNodeIds = []
|
||||||
|
|||||||
@ -377,15 +377,24 @@ export default {
|
|||||||
this.informationlist = res.data
|
this.informationlist = res.data
|
||||||
loading.close();
|
loading.close();
|
||||||
})
|
})
|
||||||
.catch(()=>{
|
.catch(() => {
|
||||||
loading.close();
|
loading.close();
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getlist() {
|
getlist() {
|
||||||
if (!this.routelist) {
|
if (!this.routelist) {
|
||||||
|
const loading = this.$loading({
|
||||||
|
lock: true,
|
||||||
|
text: '加载中',
|
||||||
|
spinner: 'el-icon-loading',
|
||||||
|
background: 'rgba(255, 255, 255, 0.7)'
|
||||||
|
});
|
||||||
getRouteNodeInfo(this.$route.query.signRecordId).then(res => {
|
getRouteNodeInfo(this.$route.query.signRecordId).then(res => {
|
||||||
this.routelist = res.data
|
this.routelist = res.data
|
||||||
this.tab = 2
|
this.tab = 2
|
||||||
|
loading.close();
|
||||||
|
}).catch(err => {
|
||||||
|
loading.close();
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
this.tab = 2
|
this.tab = 2
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user