task#11035,获取调度apptoken
This commit is contained in:
@ -22,7 +22,7 @@
|
||||
<div class="listWrap">
|
||||
<div class="listItem" v-for="(item,index) in pageList" :key="index" @click="goPageDetail(item.id)">
|
||||
<div class="line1">
|
||||
<div><span>审核批次:</span><span>{{ item.batchCode }}</span></div>
|
||||
<div><span>案件编号:</span><span>{{ item.userOrderCode }}</span></div>
|
||||
<div class="right">
|
||||
<img class="commonImg" :src="getStatus(item.state.code)">
|
||||
<div :class="getStatusColor(item.state.code)">{{item.state.label}}</div>
|
||||
@ -68,11 +68,8 @@ export default {
|
||||
|
||||
},
|
||||
async mounted() {
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
this.id = this.$route.params.id || urlParams.get('id') || this.$route.params.batchCode;
|
||||
// console.log(" this.id", this.id)
|
||||
this.activeIndex=this.$route.params?.activeIndex || 0
|
||||
// console.log(" this.activeIndex", this.activeIndex)
|
||||
this.id = this.$route.params.id || this.$route.params.batchCode;
|
||||
// this.activeIndex=this.$route.params?.activeIndex || 0
|
||||
await this.batchOrderCount();
|
||||
await this.getList()
|
||||
},
|
||||
@ -118,10 +115,11 @@ export default {
|
||||
name: 'caseDetail', // 目标路由的名称
|
||||
params: {
|
||||
id:id,
|
||||
index:this.activeIndex,
|
||||
// index:this.activeIndex,
|
||||
batchCode:this.id,
|
||||
}
|
||||
});
|
||||
|
||||
},
|
||||
getStatus(i){
|
||||
switch (i){
|
||||
|
Reference in New Issue
Block a user