317 lines
10 KiB
Vue
317 lines
10 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form v-show="showSearch" ref="queryForm" :inline="true" :model="queryParams" label-width="68px" size="small">
|
|
<el-form-item label="客户名称">
|
|
<el-input
|
|
v-model="queryParams.appName"
|
|
clearable
|
|
placeholder="请输入客户名称"
|
|
style="width: 240px"
|
|
@keyup.enter.native="getList"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="客户编码">
|
|
<el-input
|
|
v-model="queryParams.appCode"
|
|
clearable
|
|
placeholder="请输入客户编码"
|
|
style="width: 240px"
|
|
@keyup.enter.native="getList"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="客户状态" prop="configType">
|
|
<el-select v-model="queryParams.status" clearable placeholder="客户状态">
|
|
<el-option
|
|
v-for="dict in dict.type.sys_yes_no"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button icon="el-icon-search" size="mini" type="primary" @click="getList">搜索</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
|
|
v-hasPermi="['system:config:add']"
|
|
icon="el-icon-plus"
|
|
plain
|
|
size="mini"
|
|
type="primary"
|
|
@click="handleAdd"
|
|
>新增
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
v-hasPermi="['system:config:export']"
|
|
icon="el-icon-download"
|
|
plain
|
|
size="mini"
|
|
type="warning"
|
|
@click="handleExport"
|
|
>导出
|
|
</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
<el-row :gutter="10">
|
|
<el-empty description="暂无支付客户" v-if="customerList.length === 0"></el-empty>
|
|
<el-col :span="8" v-for="customer in customerList" v-if="customerList.length !== 0">
|
|
<el-card class="box-card">
|
|
<div slot="header" class="clearfix">
|
|
<span style="font-size: 18px; font-weight: 900;">{{customer.appName}}</span>
|
|
<el-switch
|
|
style="float: right; margin: 4px 5px 0;"
|
|
v-model="customer.status"
|
|
active-value="Y"
|
|
inactive-value="N"
|
|
active-color="#13ce66"
|
|
inactive-color="#ff4949"
|
|
@change="handleStatusChange(customer)"
|
|
>
|
|
</el-switch>
|
|
<el-popconfirm
|
|
confirm-button-text='好的'
|
|
cancel-button-text='不用了'
|
|
icon="el-icon-info"
|
|
icon-color="red"
|
|
title="你确定要删除此支付客户吗?"
|
|
@confirm="handleDelete(customer.id)"
|
|
>
|
|
<el-button style="float: right; padding: 5px; margin: 0 5px" type="danger" slot="reference" icon="el-icon-delete"
|
|
circle></el-button>
|
|
</el-popconfirm>
|
|
<el-button style="float: right; padding: 5px; margin: 0 5px" type="primary" icon="el-icon-edit"
|
|
@click="handleUpdate(customer.id)"
|
|
circle></el-button>
|
|
</div>
|
|
<div>
|
|
<el-descriptions class="margin-top" :column="1" :size="size" border>
|
|
<el-descriptions-item>
|
|
<template slot="label"> <i class="el-icon-user"></i> 客户名称 </template>
|
|
{{customer.appName}}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label"> <i class="el-icon-user"></i> 客户编码 </template>
|
|
{{customer.appCode}}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label"> <i class="el-icon-user"></i> 创建人 </template>
|
|
{{customer.createBy}}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item>
|
|
<template slot="label"> <i class="el-icon-user"></i> 创建日期 </template>
|
|
{{customer.createTime}}
|
|
</el-descriptions-item>
|
|
</el-descriptions>
|
|
<el-divider content-position="center">近五笔交易记录</el-divider>
|
|
<el-table
|
|
:data="customer.orderPaySimpleRespList"
|
|
style="width: 100%">
|
|
<el-table-column prop="cusOrderNumber" label="客户单号"/>
|
|
<el-table-column prop="price" label="支付金额"/>
|
|
<el-table-column prop="channelTypeName" label="渠道商"/>
|
|
</el-table>
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<el-dialog
|
|
:title="title"
|
|
:visible.sync="open"
|
|
width="50%">
|
|
<el-form ref="form" :model="form" label-width="120px" :rules="rules">
|
|
<el-form-item label="客户编码" prop="appCode">
|
|
<span v-if="this.form.id != null" style="font-size: 16px">{{ form.appCode }}</span>
|
|
<el-select v-if="this.form.id == null" v-model="form.appCode" placeholder="请选择未入住的客户" style="width: 100%">
|
|
<el-option
|
|
v-for="item in appCodeList"
|
|
:key="item"
|
|
:label="item"
|
|
:value="item">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="客户名称" prop="appName">
|
|
<el-input v-model="form.appName"></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="激活开通" prop="status">
|
|
<el-radio-group v-model="form.status">
|
|
<el-radio
|
|
v-for="dict in dict.type.sys_yes_no"
|
|
:key="dict.value"
|
|
:label="dict.value"
|
|
>{{ dict.label }}
|
|
</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
<el-form-item label="客户备注">
|
|
<el-input v-model="form.remark" type="textarea" rows="6"></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="详细描述">
|
|
<!-- <el-input v-model="form.appDesc"></el-input>-->
|
|
<editor v-model="form.appDesc" :min-height="192"/>
|
|
</el-form-item>
|
|
</el-form>
|
|
<span slot="footer" class="dialog-footer">
|
|
<el-button @click="open = false">取 消</el-button>
|
|
<el-button type="primary" @click="submitForm">提 交</el-button>
|
|
</span>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {customerAll, del, disable, enable, get, save, selectList, update} from "@/api/pay/customer";
|
|
|
|
export default {
|
|
name: "Customer",
|
|
dicts: ['sys_yes_no'],
|
|
data() {
|
|
return {
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 查询条件
|
|
queryParams: {
|
|
"appName": "",
|
|
"appCode": "",
|
|
"status": "Y"
|
|
},
|
|
// 客户列表
|
|
customerList: [],
|
|
switchValue: true,
|
|
// 修改/添加弹框
|
|
open: false,
|
|
// 模态框标题
|
|
title: "",
|
|
// 表单内容
|
|
form: {
|
|
"appName": "",
|
|
"appCode": "",
|
|
"appDesc": "",
|
|
"status": "Y",
|
|
"remark": ""
|
|
},
|
|
// 未入住的客户
|
|
appCodeList: ["cloud-1","cloud-2","cloud-3"],
|
|
// 表单校验
|
|
rules: {
|
|
appCode: [
|
|
{required: true, message: "请选择客户编码", trigger: "change"}
|
|
],
|
|
appName: [
|
|
{required: true, message: "客户名称不能为空", trigger: "blur"}
|
|
],
|
|
status: [
|
|
{required: true, message: "请选择客户是否开通", trigger: "blur"}
|
|
]
|
|
}
|
|
}
|
|
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.queryParams = {
|
|
"appName": "",
|
|
"appCode": "",
|
|
"status": "Y"
|
|
}
|
|
this.getList();
|
|
},
|
|
// 搜索
|
|
getList(){
|
|
selectList(this.queryParams).then(response => {
|
|
this.customerList = response.data;
|
|
})
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
"appName": "",
|
|
"appCode": "",
|
|
"appDesc": "",
|
|
"status": "Y",
|
|
"remark": ""
|
|
};
|
|
this.resetForm("form");
|
|
this.appCodeList = [];
|
|
customerAll().then(response => {
|
|
this.appCodeList = response.data;
|
|
})
|
|
},
|
|
/** 客户状态更改触发 */
|
|
handleStatusChange(row){
|
|
if (row.status === "Y"){
|
|
enable(row.id).then(response => {
|
|
this.$modal.msgSuccess("启用成功");
|
|
this.getList();
|
|
})
|
|
}else {
|
|
disable(row.id).then(response => {
|
|
this.$modal.msgSuccess("禁用成功");
|
|
this.getList();
|
|
})
|
|
}
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加支付单客户信息";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(orderCustomerId) {
|
|
this.reset();
|
|
get(orderCustomerId).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改支付单客户信息";
|
|
})
|
|
},
|
|
/** 删除按钮操作*/
|
|
handleDelete(orderCustomerId) {
|
|
del(orderCustomerId).then(response => {
|
|
this.$modal.msgSuccess("删除成功");
|
|
this.getList();
|
|
})
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm: function () {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.id !== undefined) {
|
|
update(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
save(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.el-card{
|
|
margin: 10px 0;
|
|
}
|
|
</style>
|