提现渠道

This commit is contained in:
邱贞招 2024-10-23 10:37:35 +08:00
parent 8c03d543b8
commit cddbcc07d4
3 changed files with 415 additions and 1 deletions

View File

@ -6,4 +6,4 @@ ENV = 'production'
# 电动车租赁系统/生产环境
# VUE_APP_BASE_API = '/prod-api'
VUE_APP_BASE_API = 'http://192.168.2.21:8090'
VUE_APP_BASE_API = 'https://zc.chuangtewl.com'

View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询用户提现渠道列表
export function listUserWithdraw(query) {
return request({
url: '/system/userWithdraw/list',
method: 'get',
params: query
})
}
// 查询用户提现渠道详细
export function getUserWithdraw(userChannelId) {
return request({
url: '/system/userWithdraw/' + userChannelId,
method: 'get'
})
}
// 新增用户提现渠道
export function addUserWithdraw(data) {
return request({
url: '/system/userWithdraw',
method: 'post',
data: data
})
}
// 修改用户提现渠道
export function updateUserWithdraw(data) {
return request({
url: '/system/userWithdraw',
method: 'put',
data: data
})
}
// 删除用户提现渠道
export function delUserWithdraw(userChannelId) {
return request({
url: '/system/userWithdraw/' + userChannelId,
method: 'delete'
})
}

View File

@ -0,0 +1,370 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="用户" prop="userId">
<el-input
v-model="queryParams.userId"
placeholder="请输入用户"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<!-- <el-form-item label="提现渠道" prop="channelId">-->
<!-- <el-input-->
<!-- v-model="queryParams.channelId"-->
<!-- placeholder="请输入提现渠道"-->
<!-- clearable-->
<!-- @keyup.enter.native="handleQuery"-->
<!-- />-->
<!-- </el-form-item>-->
<el-form-item label="渠道名称" prop="name">
<el-input
v-model="queryParams.name"
placeholder="请输入渠道名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="提现类型" prop="handlingChargeType">
<el-select v-model="queryParams.handlingChargeType" placeholder="请选择提现类型" clearable>
<el-option
v-for="dict in dict.type.rl_handling_charge_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<!-- <el-form-item label="提现手续费" prop="withdrawHandlingCharge">-->
<!-- <el-input-->
<!-- v-model="queryParams.withdrawHandlingCharge"-->
<!-- placeholder="请输入提现手续费"-->
<!-- clearable-->
<!-- @keyup.enter.native="handleQuery"-->
<!-- />-->
<!-- </el-form-item>-->
<el-form-item label="是否开通" prop="isOpen">
<el-select v-model="queryParams.isOpen" placeholder="请选择是否开通" clearable>
<el-option
v-for="dict in dict.type.sys_normal_disable"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:userWithdraw:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['system:userWithdraw:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:userWithdraw:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:userWithdraw:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="userWithdrawList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="id" align="center" prop="userChannelId" />
<el-table-column label="用户" align="center" prop="userId" />
<el-table-column label="提现渠道ID" align="center" prop="channelId" />
<el-table-column label="渠道名称" align="center" prop="name" />
<el-table-column label="提现类型" align="center" prop="handlingChargeType">
<template slot-scope="scope">
<dict-tag :options="dict.type.rl_handling_charge_type" :value="scope.row.handlingChargeType"/>
</template>
</el-table-column>
<el-table-column label="提现手续费" align="center" prop="withdrawHandlingCharge" />
<el-table-column label="单笔最低提现金额" align="center" prop="minAmount" />
<el-table-column label="单笔最高提现金额" align="center" prop="maxAmount" />
<el-table-column label="是否开通" align="center" prop="isOpen">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.isOpen"/>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:userWithdraw:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:userWithdraw:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改用户提现渠道对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="用户" prop="userId">
<el-input v-model="form.userId" placeholder="请输入用户" />
</el-form-item>
<el-form-item label="提现渠道ID" prop="channelId">
<el-input v-model="form.channelId" placeholder="请输入提现渠道ID" />
</el-form-item>
<el-form-item label="渠道名称" prop="name">
<el-input v-model="form.name" placeholder="请输入渠道名称" />
</el-form-item>
<el-form-item label="提现类型" prop="handlingChargeType">
<el-select v-model="form.handlingChargeType" placeholder="请选择提现类型">
<el-option
v-for="dict in dict.type.rl_handling_charge_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="提现手续费" prop="withdrawHandlingCharge">
<el-input v-model="form.withdrawHandlingCharge" placeholder="请输入提现手续费" />
</el-form-item>
<el-form-item label="单笔最低提现金额" prop="minAmount">
<el-input v-model="form.minAmount" placeholder="请输入单笔最低提现金额" />
</el-form-item>
<el-form-item label="单笔最高提现金额" prop="maxAmount">
<el-input v-model="form.maxAmount" placeholder="请输入单笔最高提现金额" />
</el-form-item>
<el-form-item label="是否开通" prop="isOpen">
<el-select v-model="form.isOpen" placeholder="请选择是否开通">
<el-option
v-for="dict in dict.type.sys_normal_disable"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listUserWithdraw, getUserWithdraw, delUserWithdraw, addUserWithdraw, updateUserWithdraw } from "@/api/rl/userWithdraw";
export default {
name: "UserWithdraw",
dicts: ['rl_handling_charge_type', 'sys_normal_disable'],
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
userWithdrawList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
userId: null,
channelId: null,
name: null,
handlingChargeType: null,
withdrawHandlingCharge: null,
minAmount: null,
maxAmount: null,
isOpen: null
},
//
form: {},
//
rules: {
userId: [
{ required: true, message: "用户不能为空", trigger: "blur" }
],
channelId: [
{ required: true, message: "提现渠道ID不能为空", trigger: "blur" }
],
name: [
{ required: true, message: "渠道名称不能为空", trigger: "blur" }
],
minAmount: [
{ required: true, message: "单笔最低提现金额不能为空", trigger: "blur" }
],
maxAmount: [
{ required: true, message: "单笔最高提现金额不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
},
methods: {
/** 查询用户提现渠道列表 */
getList() {
this.loading = true;
listUserWithdraw(this.queryParams).then(response => {
this.userWithdrawList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
userChannelId: null,
userId: null,
channelId: null,
name: null,
handlingChargeType: null,
withdrawHandlingCharge: null,
minAmount: null,
maxAmount: null,
createTime: null,
isOpen: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.userChannelId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加用户提现渠道";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const userChannelId = row.userChannelId || this.ids
getUserWithdraw(userChannelId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改用户提现渠道";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.userChannelId != null) {
updateUserWithdraw(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addUserWithdraw(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const userChannelIds = row.userChannelId || this.ids;
this.$modal.confirm('是否确认删除用户提现渠道编号为"' + userChannelIds + '"的数据项?').then(function() {
return delUserWithdraw(userChannelIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/userWithdraw/export', {
...this.queryParams
}, `userWithdraw_${new Date().getTime()}.xlsx`)
}
}
};
</script>