Commit 26d9489d authored by caimeng's avatar caimeng

提交

parent 5bb70a62
......@@ -136,7 +136,7 @@
>
<template #default='{ row }'>
<el-button type='text' @click='handleDetail(row)'>详情</el-button>
<template v-if='row.creditResult==="REJECT"'>
<template v-if='row.creditResult==="REJECT" && row.appealNum < 1'>
<el-button type='text' @click='handlePlead(row)'>申诉</el-button>
</template>
</template>
......@@ -250,7 +250,7 @@
bdNo: '',
creditNo: '',
creditStatus: '',
creditResult:'',
creditResult: '',
realName: '',
time: '',
startTime: '',
......
......@@ -136,11 +136,11 @@
<el-input v-model='dialogForm.memo' type='textarea' clearable placeholder='请输入' />
</el-form-item>
<template v-if='searchData!==null'>
<el-form-item prop='payChannelApi' required label='放款渠道'>
<el-select v-model='queryForm.payChannelApi' clearable placeholder='请选择放款渠道'>
<template v-if='searchData!==null && payChannelApiResponses.length'>
<el-form-item prop='payChannelApi' label='放款渠道'>
<el-select v-model='dialogForm.payChannelApi' clearable placeholder='请选择放款渠道'>
<el-option
v-for='(item,index) in searchData.payChannelApiResponses'
v-for='(item,index) in payChannelApiResponses'
:label='item.payChannelApiStr'
:key='index'
:value='item.payChannelApi'></el-option>
......@@ -183,6 +183,7 @@
userId: '',
payChannelApi: ''
},
payChannelApiResponses:[],
checkList: ['订单编号', '项目名称', '客户信息', '借款金额', '借款期数', 'BD姓名', '商户区域', '创建时间', '放款状态', '资金渠道'],
......@@ -251,13 +252,13 @@
message: '请输入备注'
}
],
payChannelApi: [
{
required: true,
trigger: 'blur',
message: '请选择放款渠道'
}
]
//payChannelApi: [
// {
// required: true,
// trigger: 'blur',
// message: '请选择放款渠道'
// }
//]
},
queryForm: {
current: 1,
......@@ -324,7 +325,7 @@
this.fetchData()
},
handleDialog(row, type) {
const { realName, loanAmount, currentAction, orderNo, stepsNo } = row
const { realName, loanAmount, currentAction,loanSign, orderNo, stepsNo } = row
console.log(row, '当前行信息')
this.DialogVisible = true
this.DialogTitle = type === 'confirm' ? '确认放款' : '取消放款'
......@@ -335,6 +336,16 @@
this.dialogForm.orderNo = orderNo
this.dialogForm.stepsNo = stepsNo
const payChannel = [];
this.searchData.payChannelApiResponses.forEach(item=>{
if(item.loanSign===loanSign){
payChannel.push(item)
}
})
this.payChannelApiResponses = payChannel;
},
handleCurrentChange(val) {
this.queryForm.current = val
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment