319 lines
10 KiB
Vue
319 lines
10 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="payNo">
|
|
<el-input
|
|
v-model="queryParams.payNo"
|
|
placeholder="请输入支付单号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="退款原因" prop="reason">
|
|
<el-input
|
|
v-model="queryParams.reason"
|
|
placeholder="请输入退款原因"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="操作人" prop="userName">
|
|
<el-input
|
|
v-model="queryParams.userName"
|
|
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:refund:export']"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="refundList" @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 === 'reason'">
|
|
<order-link v-if="PayBstType.ORDER === d.row.payBstType" :id="d.row.payBstId" :text="d.row.reason" />
|
|
<span v-else>{{d.row.reason | dv}}</span>
|
|
<dict-tag :options="dict.type.refund_type" :value="d.row.type" size="mini" style="margin-left: 4px;"/>
|
|
<dict-tag :options="dict.type.refund_status" :value="d.row.status" size="mini" style="margin-left: 4px;"/>
|
|
<dict-tag :options="dict.type.pay_bst_type" :value="d.row.payBstType" size="mini" style="margin-left: 4px;"/>
|
|
</template>
|
|
<template v-else-if="column.key === 'amount'">
|
|
{{d.row[column.key] | fix2 | dv}} 元
|
|
</template>
|
|
<template v-else-if="column.key === 'userName'">
|
|
<user-link :id="d.row.userId" :text="d.row.userName" />
|
|
</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 { listRefund, getRefund, delRefund, addRefund, updateRefund } from "@/api/bst/refund";
|
|
import { $showColumns } from '@/utils/mixins';
|
|
import FormCol from "@/components/FormCol/index.vue";
|
|
import UserLink from '@/components/Business/User/UserLink.vue'
|
|
import OrderLink from '@/components/Business/Order/OrderLink.vue';
|
|
import { PayBstType } from '@/utils/enums';
|
|
|
|
// 默认排序字段
|
|
const defaultSort = {
|
|
prop: "createTime",
|
|
order: "descending"
|
|
}
|
|
|
|
export default {
|
|
name: "Refund",
|
|
mixins: [$showColumns],
|
|
dicts: ['refund_status', 'pay_bst_type', 'refund_type'],
|
|
components: {FormCol, UserLink, OrderLink},
|
|
props: {
|
|
query: {
|
|
type: Object,
|
|
default: () => ({})
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
PayBstType,
|
|
span: 24,
|
|
// 字段列表
|
|
columns: [
|
|
{key: 'id', visible: false, label: 'ID', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"},
|
|
{key: 'reason', visible: true, label: '原因', minWidth: "200", sortable: true, overflow: false, align: 'left', width: null},
|
|
{key: 'amount', 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: null},
|
|
{key: 'no', visible: true, label: '退款编号', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'payNo', visible: true, label: '支付单号', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'userId', visible: false, label: '操作人ID', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
{key: 'userName', visible: true, label: '操作人', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
|
],
|
|
// 排序方式
|
|
orderSorts: ['ascending', 'descending', null],
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 退款表格数据
|
|
refundList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
defaultSort,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
orderByColumn: defaultSort.prop,
|
|
isAsc: defaultSort.order,
|
|
id: null,
|
|
no: null,
|
|
payId: null,
|
|
status: null,
|
|
reason: null,
|
|
userId: null,
|
|
userName: null
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
no: [
|
|
{ required: true, message: "退款订单编号不能为空", trigger: "blur" }
|
|
],
|
|
payId: [
|
|
{ required: true, message: "原支付单ID不能为空", trigger: "blur" }
|
|
],
|
|
amount: [
|
|
{ required: true, message: "退款金额不能为空", trigger: "blur" }
|
|
],
|
|
createTime: [
|
|
{ required: true, message: "创建时间不能为空", trigger: "blur" }
|
|
],
|
|
status: [
|
|
{ required: true, message: "退款订单状态不能为空", trigger: "change" }
|
|
],
|
|
}
|
|
};
|
|
},
|
|
created() {
|
|
Object.assign(this.queryParams, this.query);
|
|
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;
|
|
listRefund(this.queryParams).then(response => {
|
|
this.refundList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
id: null,
|
|
no: null,
|
|
payId: null,
|
|
amount: null,
|
|
createTime: null,
|
|
status: null,
|
|
reason: null,
|
|
userId: null,
|
|
userName: 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
|
|
getRefund(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) {
|
|
updateRefund(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addRefund(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 delRefund(ids);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('bst/refund/export', {
|
|
...this.queryParams
|
|
}, `refund_${new Date().getTime()}.xlsx`)
|
|
}
|
|
}
|
|
};
|
|
</script>
|