Commit 26d9489d authored by caimeng's avatar caimeng

提交

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