|
@@ -67,13 +67,13 @@
|
|
|
<el-table-column label="操作" fixed="right" width="200">
|
|
<el-table-column label="操作" fixed="right" width="200">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<el-button link type="primary" size="small" @click="agentPass(scope.row)">申请通过</el-button>
|
|
<el-button link type="primary" size="small" @click="agentPass(scope.row)">申请通过</el-button>
|
|
|
- <el-popover placement="top" width="300" trigger="click" v-model:visible="scope.row.agentShow">
|
|
|
|
|
|
|
+ <el-popover placement="top" width="300" trigger="click" :visible="scope.row.agentShow">
|
|
|
<template #reference>
|
|
<template #reference>
|
|
|
- <el-button link type="primary" size="small">驳回</el-button>
|
|
|
|
|
|
|
+ <el-button @click="scope.row.agentShow = true" link type="primary" size="small">驳回</el-button>
|
|
|
</template>
|
|
</template>
|
|
|
<el-input type="textarea" v-model="agentReason" maxlength="200"></el-input>
|
|
<el-input type="textarea" v-model="agentReason" maxlength="200"></el-input>
|
|
|
<div style="display: flex; align-items: center; justify-content: flex-end; margin-top: 10px">
|
|
<div style="display: flex; align-items: center; justify-content: flex-end; margin-top: 10px">
|
|
|
- <el-button size="small" @click="handleAgentCancel(scope.row)">取消</el-button>
|
|
|
|
|
|
|
+ <el-button size="small" @click="scope.row.agentShow = false">取消</el-button>
|
|
|
<el-button type="danger" size="small" @click="handleAgentConfirm(scope.row)">确定驳回</el-button>
|
|
<el-button type="danger" size="small" @click="handleAgentConfirm(scope.row)">确定驳回</el-button>
|
|
|
</div>
|
|
</div>
|
|
|
</el-popover>
|
|
</el-popover>
|
|
@@ -304,6 +304,7 @@ const handleCurrentChange = (page) => {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
const initList = (type) => {
|
|
const initList = (type) => {
|
|
|
|
|
+ console.log(type)
|
|
|
api.financeApi.queryUserBankCardList({
|
|
api.financeApi.queryUserBankCardList({
|
|
|
salesman: firstForm.value?.salesman,
|
|
salesman: firstForm.value?.salesman,
|
|
|
typeAttr: firstForm.value?.typeAttr,
|
|
typeAttr: firstForm.value?.typeAttr,
|
|
@@ -385,7 +386,6 @@ const handleConfirmAudit = () => {
|
|
|
// 驳回
|
|
// 驳回
|
|
|
let agentReason = ref('')
|
|
let agentReason = ref('')
|
|
|
const handleAgentCancel = (row) => {
|
|
const handleAgentCancel = (row) => {
|
|
|
- row.agentShow = false
|
|
|
|
|
agentReason.value = ''
|
|
agentReason.value = ''
|
|
|
}
|
|
}
|
|
|
const handleAgentConfirm = (row) => {
|
|
const handleAgentConfirm = (row) => {
|