master
e 3 years ago
parent 71e5c0ec79
commit 586cd3c6a6
  1. 7
      src/components/page/afterLoan/afterInsurance.vue
  2. 6
      src/components/page/afterLoan/collection.vue
  3. 8
      src/components/page/afterLoan/complete.vue

@ -974,13 +974,6 @@ export default {
}
},
async created(){
let a = [1,2,3,4],b = [1,2,3,4,5,6]
let c = a.concat(b).filter((cur, i, arr) => {
return arr.indexOf(cur) === arr.lastIndexOf(cur);
});
// console.log(c,'',a,b)
// console.log(this.loanbackStatus,'this.loanbackStatus')
this.liquidateList()
if(this.bankSelect.length===0){//

@ -486,8 +486,8 @@
<el-table-column label="操作" width="200" align="center">
<template slot-scope="scope">
<el-button type="text" v-if="$router.currentRoute.meta.btn.includes('催收记录查看')" @click="collectionHisSee(scope.row)">查看</el-button>
<el-button type="text" v-if="$router.currentRoute.meta.btn.includes('催收记录查看')" @click="eidt(scope.row)">编辑</el-button>
<el-button type="text" v-if="$router.currentRoute.meta.btn.includes('催收记录查看')" @click="del(scope.row)">删除</el-button>
<el-button type="text" v-if="$router.currentRoute.meta.btn.includes('催收编辑')" @click="eidt(scope.row)">编辑</el-button>
<el-button type="text" v-if="$router.currentRoute.meta.btn.includes('催收删除')" @click="del(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
@ -679,6 +679,8 @@
}
},
created(){
console.log(this.$router.currentRoute.meta.btn,'$router.currentRoute.meta.btn')
this.logStatus = this.$store.state.loan.logStatus
// console.log(this.logStatus,'this.logStatus')
if(this.logStatus == 1){

@ -807,6 +807,7 @@ export default {
}
}
if(val==='依据小组排名'){
console.log(this.liquidWatch,'liquidWatch,小组')
let groupMap = new Map()//
let sortGroups = []//
// console.log('',groups,'groups')
@ -902,9 +903,14 @@ export default {
// lastData.push(val)
// }
})
lastData.forEach((e,i)=>{
e.companyRanks = i+1
e.editStr = '编辑'
e.edit = false
})
// console.log(lastData,'')/
this.statisticsData = JSON.parse(JSON.stringify(lastData))
console.log(this.statisticsData,'是否有操作的值')

Loading…
Cancel
Save