2021-11-03 17:49:08 +08:00
|
|
|
<template>
|
|
|
|
<div class="app-container">
|
|
|
|
|
|
|
|
<!-- 搜索工作栏 -->
|
2022-03-20 22:58:13 +08:00
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
2021-11-03 17:49:08 +08:00
|
|
|
<el-form-item label="商户号" prop="no">
|
2022-03-20 22:46:22 +08:00
|
|
|
<el-input v-model="queryParams.no" placeholder="请输入商户号" clearable @keyup.enter.native="handleQuery"/>
|
2021-11-03 17:49:08 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="商户全称" prop="name">
|
2022-03-20 22:46:22 +08:00
|
|
|
<el-input v-model="queryParams.name" placeholder="请输入商户全称" clearable @keyup.enter.native="handleQuery"/>
|
2021-11-03 17:49:08 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="商户简称" prop="shortName">
|
2022-03-20 22:46:22 +08:00
|
|
|
<el-input v-model="queryParams.shortName" placeholder="请输入商户简称" clearable @keyup.enter.native="handleQuery"/>
|
2021-11-03 17:49:08 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="开启状态" prop="status">
|
2022-03-20 22:46:22 +08:00
|
|
|
<el-select v-model="queryParams.status" placeholder="请选择开启状态" clearable>
|
2021-11-03 17:49:08 +08:00
|
|
|
<el-option v-for="dict in statusDictDatas" :key="parseInt(dict.value)" :label="dict.label" :value="parseInt(dict.value)"/>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="备注" prop="remark">
|
2022-03-20 22:46:22 +08:00
|
|
|
<el-input v-model="queryParams.remark" placeholder="请输入备注" clearable @keyup.enter.native="handleQuery"/>
|
2021-11-03 17:49:08 +08:00
|
|
|
</el-form-item>
|
2022-07-21 23:22:21 +08:00
|
|
|
<el-form-item label="创建时间" prop="createTime">
|
|
|
|
<el-date-picker v-model="queryParams.createTime" style="width: 240px" value-format="yyyy-MM-dd HH:mm:ss" type="daterange"
|
|
|
|
range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" :default-time="['00:00:00', '23:59:59']" />
|
2021-11-03 17:49:08 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
2022-03-20 22:46:22 +08:00
|
|
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
2021-11-03 17:49:08 +08:00
|
|
|
</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="['pay:merchant:create']">新增</el-button>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="1.5">
|
2022-02-15 21:28:11 +08:00
|
|
|
<el-button type="warning" plain icon="el-icon-download" size="mini" :loading="exportLoading" @click="handleExport"
|
2021-11-03 17:49:08 +08:00
|
|
|
v-hasPermi="['pay:merchant:export']">导出</el-button>
|
|
|
|
</el-col>
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
<el-table v-loading="loading" :data="list">
|
|
|
|
<el-table-column label="商户编号" align="center" prop="id" />
|
|
|
|
<el-table-column label="商户号" align="center" prop="no" />
|
|
|
|
<el-table-column label="商户全称" align="center" prop="name" />
|
|
|
|
<el-table-column label="商户简称" align="center" prop="shortName" />
|
|
|
|
<el-table-column label="开启状态" align="center" prop="status" >
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-switch v-model="scope.row.status" :active-value="0" :inactive-value="1" @change="handleStatusChange(scope.row)" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
|
</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="['pay:merchant:update']">修改</el-button>
|
|
|
|
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
|
v-hasPermi="['pay:merchant:delete']">删除</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
<!-- 分页组件 -->
|
|
|
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :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="no">-->
|
|
|
|
<!-- <el-input v-model="form.no" placeholder="请输入商户号" />-->
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
<el-form-item label="商户全称" prop="name">
|
|
|
|
<el-input v-model="form.name" placeholder="请输入商户全称" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="商户简称" prop="shortName">
|
|
|
|
<el-input v-model="form.shortName" placeholder="请输入商户简称" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="开启状态" prop="status">
|
|
|
|
<el-radio-group v-model="form.status">
|
|
|
|
<el-radio v-for="dict in statusDictDatas" :key="parseInt(dict.value)" :label="parseInt(dict.value)">
|
|
|
|
{{dict.label}}</el-radio>
|
|
|
|
</el-radio-group>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
<el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
|
</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 {
|
|
|
|
createMerchant,
|
|
|
|
updateMerchant,
|
|
|
|
changeMerchantStatus,
|
|
|
|
deleteMerchant,
|
|
|
|
getMerchant,
|
|
|
|
getMerchantPage,
|
|
|
|
exportMerchantExcel
|
|
|
|
} from "@/api/pay/merchant";
|
|
|
|
import {DICT_TYPE, getDictDatas} from "@/utils/dict";
|
2022-02-02 01:27:04 +08:00
|
|
|
import {CommonStatusEnum} from "@/utils/constants";
|
2021-11-03 17:49:08 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "Merchant",
|
|
|
|
components: {
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
// 遮罩层
|
|
|
|
loading: true,
|
2022-02-15 21:28:11 +08:00
|
|
|
// 导出遮罩层
|
|
|
|
exportLoading: false,
|
2021-11-03 17:49:08 +08:00
|
|
|
// 显示搜索条件
|
|
|
|
showSearch: true,
|
|
|
|
// 总条数
|
|
|
|
total: 0,
|
|
|
|
// 支付商户信息列表
|
|
|
|
list: [],
|
|
|
|
// 弹出层标题
|
|
|
|
title: "",
|
|
|
|
// 是否显示弹出层
|
|
|
|
open: false,
|
|
|
|
// 查询参数
|
|
|
|
queryParams: {
|
|
|
|
pageNo: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
no: null,
|
|
|
|
name: null,
|
|
|
|
shortName: null,
|
|
|
|
status: null,
|
|
|
|
remark: null,
|
2022-07-21 23:22:21 +08:00
|
|
|
createTime: []
|
2021-11-03 17:49:08 +08:00
|
|
|
},
|
|
|
|
// 表单参数
|
|
|
|
form: {},
|
|
|
|
// 表单校验
|
|
|
|
rules: {
|
|
|
|
no: [{ required: true, message: "商户号不能为空", trigger: "blur" }],
|
|
|
|
name: [{ required: true, message: "商户全称不能为空", trigger: "blur" }],
|
|
|
|
shortName: [{ required: true, message: "商户简称不能为空", trigger: "blur" }],
|
|
|
|
status: [{ required: true, message: "开启状态不能为空", trigger: "blur" }],
|
|
|
|
},
|
2021-12-29 19:47:59 +08:00
|
|
|
// 商户状态数据字典
|
2022-02-02 01:27:04 +08:00
|
|
|
statusDictDatas: getDictDatas(DICT_TYPE.COMMON_STATUS)
|
2021-11-03 17:49:08 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
/** 查询列表 */
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
// 执行查询
|
2022-07-21 23:22:21 +08:00
|
|
|
getMerchantPage(this.queryParams).then(response => {
|
2021-12-08 19:21:24 +08:00
|
|
|
console.log(response.data);
|
2021-11-03 17:49:08 +08:00
|
|
|
this.list = response.data.list;
|
|
|
|
this.total = response.data.total;
|
|
|
|
this.loading = false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 取消按钮 */
|
|
|
|
cancel() {
|
|
|
|
this.open = false;
|
|
|
|
this.reset();
|
|
|
|
},
|
|
|
|
/** 表单重置 */
|
|
|
|
reset() {
|
|
|
|
this.form = {
|
|
|
|
id: undefined,
|
|
|
|
no: undefined,
|
|
|
|
name: undefined,
|
|
|
|
shortName: undefined,
|
|
|
|
status: undefined,
|
|
|
|
remark: undefined,
|
|
|
|
};
|
|
|
|
this.resetForm("form");
|
|
|
|
},
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
handleQuery() {
|
|
|
|
this.queryParams.pageNo = 1;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
resetQuery() {
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
this.handleQuery();
|
|
|
|
},
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
handleAdd() {
|
|
|
|
this.reset();
|
|
|
|
this.open = true;
|
|
|
|
this.title = "添加支付商户信息";
|
|
|
|
},
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
handleUpdate(row) {
|
|
|
|
this.reset();
|
2022-07-21 23:22:21 +08:00
|
|
|
getMerchant(row.id).then(response => {
|
2021-11-03 17:49:08 +08:00
|
|
|
this.form = response.data;
|
|
|
|
this.open = true;
|
|
|
|
this.title = "修改支付商户信息";
|
|
|
|
});
|
|
|
|
},
|
|
|
|
// 用户状态修改
|
|
|
|
handleStatusChange(row) {
|
2022-02-02 01:27:04 +08:00
|
|
|
let text = row.status === CommonStatusEnum.ENABLE ? "启用" : "停用";
|
2022-02-17 13:11:21 +08:00
|
|
|
this.$modal.confirm('确认要"' + text + '""' + row.name + '"商户吗?').then(function() {
|
2021-11-03 17:49:08 +08:00
|
|
|
return changeMerchantStatus(row.id, row.status);
|
|
|
|
}).then(() => {
|
2022-02-17 13:11:21 +08:00
|
|
|
this.$modal.msgSuccess(text + "成功");
|
2021-11-03 17:49:08 +08:00
|
|
|
}).catch(function() {
|
2022-02-02 01:27:04 +08:00
|
|
|
row.status = row.status === CommonStatusEnum.ENABLE ? CommonStatusEnum.DISABLE
|
|
|
|
: CommonStatusEnum.ENABLE;
|
2021-11-03 17:49:08 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 提交按钮 */
|
|
|
|
submitForm() {
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
if (!valid) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// 修改的提交
|
|
|
|
if (this.form.id != null) {
|
|
|
|
updateMerchant(this.form).then(response => {
|
2022-02-17 13:11:21 +08:00
|
|
|
this.$modal.msgSuccess("修改成功");
|
2021-11-03 17:49:08 +08:00
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// 添加的提交
|
|
|
|
createMerchant(this.form).then(response => {
|
2022-02-17 13:11:21 +08:00
|
|
|
this.$modal.msgSuccess("新增成功");
|
2021-11-03 17:49:08 +08:00
|
|
|
this.open = false;
|
|
|
|
this.getList();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
handleDelete(row) {
|
|
|
|
const id = row.id;
|
2022-02-17 13:11:21 +08:00
|
|
|
this.$modal.confirm('是否确认删除支付商户信息编号为"' + id + '"的数据项?').then(function() {
|
2021-11-03 17:49:08 +08:00
|
|
|
return deleteMerchant(id);
|
|
|
|
}).then(() => {
|
|
|
|
this.getList();
|
2022-02-17 13:11:21 +08:00
|
|
|
this.$modal.msgSuccess("删除成功");
|
2022-02-15 21:51:24 +08:00
|
|
|
}).catch(() => {});
|
2021-11-03 17:49:08 +08:00
|
|
|
},
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
handleExport() {
|
|
|
|
// 处理查询参数
|
|
|
|
let params = {...this.queryParams};
|
|
|
|
params.pageNo = undefined;
|
|
|
|
params.pageSize = undefined;
|
|
|
|
// 执行导出
|
2022-02-17 13:11:21 +08:00
|
|
|
this.$modal.confirm('是否确认导出所有支付商户信息数据项?').then(() => {
|
2022-02-15 21:28:11 +08:00
|
|
|
this.exportLoading = true;
|
2021-11-03 17:49:08 +08:00
|
|
|
return exportMerchantExcel(params);
|
|
|
|
}).then(response => {
|
2022-02-17 14:28:43 +08:00
|
|
|
this.$download.excel(response, '支付商户信息.xls');
|
2022-02-15 21:28:11 +08:00
|
|
|
this.exportLoading = false;
|
2022-02-15 21:51:24 +08:00
|
|
|
}).catch(() => {});
|
2021-11-03 17:49:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|