From e481bf27f4928a909e7bcf57b98832b9fe607ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A2=A8=E5=A4=A7=E5=8F=94?= <494979559@qq.com> Date: Thu, 1 Aug 2024 14:26:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E7=8E=B0=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/mch/withdraw.js | 9 ++ src/api/ss/account.js | 12 ++ src/utils/constants.js | 8 ++ src/views/mch/withdraw/detail.vue | 3 +- src/views/mch/withdraw/index.vue | 2 +- src/views/system/withdraw/detail.vue | 173 +++++++++++++++++++++++++ src/views/system/withdraw/index.vue | 180 +++++++++++---------------- 7 files changed, 279 insertions(+), 108 deletions(-) create mode 100644 src/views/system/withdraw/detail.vue diff --git a/src/api/mch/withdraw.js b/src/api/mch/withdraw.js index 432c520..3ff2826 100644 --- a/src/api/mch/withdraw.js +++ b/src/api/mch/withdraw.js @@ -8,3 +8,12 @@ export function mchListWithdraw(params) { params }) } + +// 查询本人提现详情 +export function mchGetWithdraw(params) { + return request({ + url: '/mch/withdraw/withdrawList', + method: 'get', + params + }) +} diff --git a/src/api/ss/account.js b/src/api/ss/account.js index 28dc6e8..5884d1d 100644 --- a/src/api/ss/account.js +++ b/src/api/ss/account.js @@ -17,6 +17,18 @@ export function getAccount(accountId) { }) } +// 查询用户对应类型的账户 +export function getUserAccountByType(userId, type) { + return request({ + url: '/ss/account/getUserAccountByType', + method: 'get', + params: { + userId, + type + } + }) +} + // 新增用户账户 export function addAccount(data) { return request({ diff --git a/src/utils/constants.js b/src/utils/constants.js index 8449146..a53bf71 100644 --- a/src/utils/constants.js +++ b/src/utils/constants.js @@ -16,3 +16,11 @@ export const UserType = { ADMIN: "1", // 管理员 APP: "2" // 普通用户 } + +/** + * 提现打款方式 + */ +export const WithdrawType = { + ONLINE: "1", // 线上 + OFFLINE: "2" // 线下 +} diff --git a/src/views/mch/withdraw/detail.vue b/src/views/mch/withdraw/detail.vue index f30a66a..a573c32 100644 --- a/src/views/mch/withdraw/detail.vue +++ b/src/views/mch/withdraw/detail.vue @@ -31,6 +31,7 @@ diff --git a/src/views/system/withdraw/index.vue b/src/views/system/withdraw/index.vue index cbef248..4e08336 100644 --- a/src/views/system/withdraw/index.vue +++ b/src/views/system/withdraw/index.vue @@ -1,7 +1,20 @@ - + @@ -74,7 +105,7 @@ - + @@ -89,16 +120,17 @@ + @@ -181,13 +175,18 @@ import { rejectWithDrawBill, payWithDrawBill } from "@/api/system/withdraw"; import UserLink from '@/components/Business/SmUser/UserLink.vue' +import WithdrawDetail from '@/views/system/withdraw/detail.vue' +import { AccountType, WithdrawType } from '@/utils/constants' +import { getUserAccountByType } from '@/api/ss/account' export default { name: "Bill", - components: { UserLink }, + components: { WithdrawDetail, UserLink }, dicts: ['withdraw_status', 'withdraw_type', 'channel_type'], data() { return { + showDetail: false, + row: {}, // 遮罩层 loading: true, // 选中数组 @@ -224,18 +223,19 @@ export default { approvalForm: { billId: null, remark: null, + offlineImage: null }, - approvalRules: { - withdrawType: [ - { required: true, message: "请选择打款方式", trigger: "blur"} - ] - } }; }, created() { this.getList(); }, methods: { + // 查看详情 + handleView(row) { + this.row = row; + this.showDetail = true; + }, // 处理打款 handlePay(row) { if (row == null || row.billId == null) { @@ -255,38 +255,6 @@ export default { }) }) }, - pass() { - this.$confirm("确定通过审核吗?", "通过", { - confirmButtonText: "确定", - cancelButtonText: "取消", - type: "warning" - }).then(() => { - passWithDrawBill(this.approvalForm).then(res => { - if (res.code !== 200) { - return this.$message.error(res.msg); - } - this.$message.success("通过成功"); - this.openApproval = false; - this.getList(); - }) - }) - }, - reject() { - this.$confirm("确定驳回吗?", "驳回", { - confirmButtonText: "确定", - cancelButtonText: "取消", - type: "warning" - }).then(() => { - rejectWithDrawBill(this.approvalForm).then(res => { - if (res.code !== 200) { - return this.$message.error(res.msg); - } - this.$message.success("驳回成功"); - this.openApproval = false; - this.getList(); - }) - }) - }, // 处理审核 handleApproval(row) { getBill(row.billId).then(response => {