395 lines
13 KiB
Vue
395 lines
13 KiB
Vue
<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="no">
|
|
<el-input
|
|
v-model="queryParams.no"
|
|
placeholder="请输入支付单号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="渠道单号" prop="channelNo">
|
|
<el-input
|
|
v-model="queryParams.channelNo"
|
|
placeholder="请输入渠道支付单号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="状态" prop="status">
|
|
<el-select v-model="queryParams.status" placeholder="请选择支付状态" clearable @change="handleQuery">
|
|
<el-option
|
|
v-for="dict in dict.type.pay_status"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="业务类型" prop="bstType">
|
|
<el-select v-model="queryParams.bstType" placeholder="请选择业务类型" clearable @change="handleQuery">
|
|
<el-option
|
|
v-for="dict in dict.type.pay_bst_type"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="支付金额" prop="amount">
|
|
<el-input
|
|
v-model="queryParams.amount"
|
|
placeholder="请输入支付金额"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="支付渠道" prop="channelName">
|
|
<el-input
|
|
v-model="queryParams.channelName"
|
|
placeholder="请输入支付渠道名称"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="描述" prop="description">
|
|
<el-input
|
|
v-model="queryParams.description"
|
|
placeholder="请输入描述"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="支付账号" prop="account">
|
|
<el-input
|
|
v-model="queryParams.account"
|
|
placeholder="请输入支付账号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="付款IP" prop="ip">
|
|
<el-input
|
|
v-model="queryParams.ip"
|
|
placeholder="请输入付款人IP"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="应用名称" prop="appName">
|
|
<el-input
|
|
v-model="queryParams.appName"
|
|
placeholder="请输入应用名称"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</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="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
v-has-permi="['bst:pay:export']"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="payList" @selection-change="handleSelectionChange" :default-sort="defaultSort" @sort-change="onSortChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<template v-for="column of showColumns">
|
|
<el-table-column
|
|
:key="column.key"
|
|
:label="column.label"
|
|
:prop="column.key"
|
|
:align="column.align"
|
|
:min-width="column.minWidth"
|
|
:sort-orders="orderSorts"
|
|
:sortable="column.sortable"
|
|
:show-overflow-tooltip="column.overflow"
|
|
:width="column.width"
|
|
>
|
|
<template slot-scope="d">
|
|
<template v-if="column.key === 'id'">
|
|
{{d.row[column.key]}}
|
|
</template>
|
|
<template v-else-if="column.key === 'description'">
|
|
{{d.row.description | dv}}
|
|
<dict-tag :options="dict.type.pay_bst_type" :value="d.row.bstType" size="mini" style="margin-left: 4px;"/>
|
|
<dict-tag :options="dict.type.pay_status" :value="d.row.status" size="mini" style="margin-left: 4px;"/>
|
|
</template>
|
|
<template v-else>
|
|
{{d.row[column.key]}}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
</el-table>
|
|
|
|
<pagination
|
|
v-show="total>0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList"
|
|
/>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listPay, getPay, delPay, addPay, updatePay } from "@/api/bst/pay";
|
|
import { $showColumns } from '@/utils/mixins';
|
|
import FormCol from "@/components/FormCol/index.vue";
|
|
|
|
// 默认排序字段
|
|
const defaultSort = {
|
|
prop: "createTime",
|
|
order: "descending"
|
|
}
|
|
|
|
export default {
|
|
name: "Pay",
|
|
mixins: [$showColumns],
|
|
dicts: ['pay_status', 'pay_bst_type'],
|
|
components: {FormCol},
|
|
data() {
|
|
return {
|
|
span: 24,
|
|
// 字段列表
|
|
columns: [
|
|
{key: 'id', visible: false, label: 'ID', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"},
|
|
{key: 'description', visible: true, label: '描述', minWidth: "250", sortable: true, overflow: false, align: 'left', width: null},
|
|
{key: 'no', visible: true, label: '支付单号', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'channelNo', visible: true, label: '渠道单号', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'amount', visible: true, label: '金额', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'refunding', visible: true, label: '退款中', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'refunded', visible: true, label: '已退款', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'channelName', visible: true, label: '渠道', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'payTime', visible: true, label: '支付时间', minWidth: null, sortable: false, overflow: false, align: 'center', width: "100"},
|
|
{key: 'account', visible: true, label: '支付账号', minWidth: null, sortable: true, overflow: true, align: 'center', width: null},
|
|
{key: 'channelCost', visible: true, label: '渠道成本', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'ip', visible: true, label: '付款人IP', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'appName', visible: true, label: '应用', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'createTime', visible: true, label: '创建时间', minWidth: null, sortable: true, overflow: false, align: 'center', width: "100"},
|
|
],
|
|
// 排序方式
|
|
orderSorts: ['ascending', 'descending', null],
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 支付订单表格数据
|
|
payList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
defaultSort,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
orderByColumn: defaultSort.prop,
|
|
isAsc: defaultSort.order,
|
|
id: null,
|
|
no: null,
|
|
bstType: null,
|
|
bstId: null,
|
|
amount: null,
|
|
channelId: null,
|
|
status: null,
|
|
description: null,
|
|
account: null,
|
|
ip: null,
|
|
appId: null,
|
|
channelNo: null
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
no: [
|
|
{ required: true, message: "支付订单编号不能为空", trigger: "blur" }
|
|
],
|
|
bstType: [
|
|
{ required: true, message: "业务类型不能为空", trigger: "change" }
|
|
],
|
|
bstId: [
|
|
{ required: true, message: "业务ID不能为空", trigger: "blur" }
|
|
],
|
|
amount: [
|
|
{ required: true, message: "支付金额不能为空", trigger: "blur" }
|
|
],
|
|
channelId: [
|
|
{ required: true, message: "支付渠道ID不能为空", trigger: "blur" }
|
|
],
|
|
status: [
|
|
{ required: true, message: "支付状态不能为空", trigger: "change" }
|
|
],
|
|
createTime: [
|
|
{ required: true, message: "创建时间不能为空", trigger: "blur" }
|
|
],
|
|
account: [
|
|
{ required: true, message: "支付账号不能为空", trigger: "blur" }
|
|
],
|
|
channelCost: [
|
|
{ required: true, message: "渠道成本不能为空", trigger: "blur" }
|
|
],
|
|
refunded: [
|
|
{ required: true, message: "已退款金额不能为空", trigger: "blur" }
|
|
],
|
|
refunding: [
|
|
{ required: true, message: "退款中金额不能为空", trigger: "blur" }
|
|
],
|
|
appId: [
|
|
{ required: true, message: "应用ID不能为空", trigger: "blur" }
|
|
],
|
|
channelNo: [
|
|
{ required: true, message: "渠道支付单号不能为空", trigger: "blur" }
|
|
]
|
|
}
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 当排序按钮被点击时触发 **/
|
|
onSortChange(column) {
|
|
if (column.order == null) {
|
|
this.queryParams.orderByColumn = defaultSort.prop;
|
|
this.queryParams.isAsc = defaultSort.order;
|
|
} else {
|
|
this.queryParams.orderByColumn = column.prop;
|
|
this.queryParams.isAsc = column.order;
|
|
}
|
|
this.getList();
|
|
},
|
|
/** 查询支付订单列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listPay(this.queryParams).then(response => {
|
|
this.payList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
id: null,
|
|
no: null,
|
|
bstType: null,
|
|
bstId: null,
|
|
amount: null,
|
|
channelId: null,
|
|
status: null,
|
|
payTime: null,
|
|
createTime: null,
|
|
description: null,
|
|
account: null,
|
|
channelCost: null,
|
|
refunded: null,
|
|
refunding: null,
|
|
ip: null,
|
|
appId: null,
|
|
channelNo: 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.id)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加支付订单";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const id = row.id || this.ids
|
|
getPay(id).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改支付订单";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.id != null) {
|
|
updatePay(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addPay(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const ids = row.id || this.ids;
|
|
this.$modal.confirm('是否确认删除支付订单编号为"' + ids + '"的数据项?').then(function() {
|
|
return delPay(ids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('bst/pay/export', {
|
|
...this.queryParams
|
|
}, `pay_${new Date().getTime()}.xlsx`)
|
|
}
|
|
}
|
|
};
|
|
</script>
|