You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
460 lines
15 KiB
Vue
460 lines
15 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="clientCode">
|
|
<el-input
|
|
v-model="queryParams.clientCode"
|
|
placeholder="请输入客户编码"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="客户名称" prop="clientName">
|
|
<el-input
|
|
v-model="queryParams.clientName"
|
|
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="primary"
|
|
plain
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
v-hasPermi="['wms:customer: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="['wms:customer: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="['wms:customer: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="['wms:customer:export']"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="customerList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<!-- 序号 -->
|
|
<el-table-column type="index" width="90" align="center" :index="indexMethod" label="序号"></el-table-column>
|
|
<el-table-column label="客户编码" align="center" prop="clientCode" />
|
|
<el-table-column label="客户名称" align="center" prop="clientName" />
|
|
<el-table-column label="客户简介" align="center" prop="clientDes" />
|
|
<el-table-column label="客户类型" align="center" prop="clientType" />
|
|
<el-table-column label="客户地址" align="center" prop="address" width="200"/>
|
|
<el-table-column label="客户官网地址" align="center" prop="website" width="200"/>
|
|
<el-table-column label="客户邮箱地址" align="center" prop="email" width="200"/>
|
|
<el-table-column label="客户电话" align="center" prop="tel" width="150"/>
|
|
<el-table-column label="联系人1" align="center" prop="contact1" />
|
|
<el-table-column label="联系人1-电话" align="center" prop="contact1Tel" width="150"/>
|
|
<el-table-column label="联系人1-邮箱" align="center" prop="contact1Email" width="150"/>
|
|
<el-table-column label="联系人2" align="center" prop="contact2" />
|
|
<el-table-column label="联系人2-电话" align="center" prop="contact2Tel" width="150"/>
|
|
<el-table-column label="联系人2-邮箱" align="center" prop="contact2Email" width="150"/>
|
|
<el-table-column label="统一社会信用代码" align="center" prop="creditCode" width="200" />
|
|
<el-table-column label="是否启用" align="center" prop="enableFlag">
|
|
<template slot-scope="scope">
|
|
{{ scope.row.activeFlag == 1 ? "是" : "否" }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
</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="1000px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="130px">
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="客户编码" prop="clientCode">
|
|
<el-input v-model="form.clientCode" placeholder="请输入客户编码" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="客户名称" prop="clientName">
|
|
<el-input v-model="form.clientName" placeholder="请输入客户名称" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="客户简称" prop="clientNick">
|
|
<el-input v-model="form.clientNick" placeholder="请输入客户简称" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="客户英文名称" prop="clientEn">
|
|
<el-input v-model="form.clientEn" placeholder="请输入客户英文名称" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="客户简介" prop="clientDes">
|
|
<el-input v-model="form.clientDes" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="客户LOGO地址" prop="clientLogo">
|
|
<el-input v-model="form.clientLogo" placeholder="请输入客户LOGO地址" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="客户地址" prop="address">
|
|
<el-input v-model="form.address" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="客户官网地址" prop="website">
|
|
<el-input v-model="form.website" placeholder="请输入客户官网地址" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="客户邮箱地址" prop="email">
|
|
<el-input v-model="form.email" placeholder="请输入客户邮箱地址" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="客户电话" prop="tel">
|
|
<el-input v-model="form.tel" placeholder="请输入客户电话" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="联系人1" prop="contact1">
|
|
<el-input v-model="form.contact1" placeholder="请输入联系人1" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="联系人2" prop="contact2">
|
|
<el-input v-model="form.contact2" placeholder="请输入联系人2" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="联系人1-电话" prop="contact1Tel">
|
|
<el-input v-model="form.contact1Tel" placeholder="请输入联系人1-电话" maxlength="11"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="联系人2-电话" prop="contact2Tel">
|
|
<el-input v-model="form.contact2Tel" placeholder="请输入联系人2-电话" maxlength="11"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="联系人1-邮箱" prop="contact1Email">
|
|
<el-input v-model="form.contact1Email" placeholder="请输入联系人1-邮箱" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="联系人2-邮箱" prop="contact2Email">
|
|
<el-input v-model="form.contact2Email" placeholder="请输入联系人2-邮箱" maxlength="50"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="统一社会信用代码" prop="creditCode">
|
|
<el-input v-model="form.creditCode" placeholder="请输入统一社会信用代码" maxlength="50"/>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="是否启用" prop="enableFlag">
|
|
<el-select v-model="form.enableFlag" placeholder="请选择是否启用" @change="$forceUpdate()" clearable style="width:350px">
|
|
<el-option v-for="item in options" :key="item.enableFlag" :label="item.label" :value="item.enableFlag"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<el-row :gutter="10" class="mb8">
|
|
<el-col :span="12">
|
|
<el-form-item label="客户类型" prop="clientType">
|
|
<el-input v-model="form.clientType" placeholder="请输入客户类型" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</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 { listCustomer, getCustomer, delCustomer, addCustomer, updateCustomer } from "@/api/wms/customer";
|
|
|
|
export default {
|
|
name: "Customer",
|
|
data() {
|
|
return {
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 客户管理表格数据
|
|
customerList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
clientCode: null,
|
|
clientName: null,
|
|
clientNick: null,
|
|
clientEn: null,
|
|
clientDes: null,
|
|
clientLogo: null,
|
|
clientType: null,
|
|
address: null,
|
|
website: null,
|
|
email: null,
|
|
tel: null,
|
|
contact1: null,
|
|
contact1Tel: null,
|
|
contact1Email: null,
|
|
contact2: null,
|
|
contact2Tel: null,
|
|
contact2Email: null,
|
|
creditCode: null,
|
|
enableFlag: null,
|
|
attr1: null,
|
|
attr2: null,
|
|
attr3: null,
|
|
attr4: null,
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
options: [{
|
|
enableFlag: "1",
|
|
label: '是'
|
|
}, {
|
|
enableFlag: "0",
|
|
label: '否'
|
|
}],
|
|
// 表单校验
|
|
rules: {
|
|
clientCode: [
|
|
{ required: true, message: "客户编码不能为空", trigger: "blur" }
|
|
],
|
|
clientName: [
|
|
{ required: true, message: "客户名称不能为空", trigger: "blur" }
|
|
],
|
|
enableFlag: [
|
|
{ required: true, message: "是否启用不能为空", trigger: "blur" }
|
|
],
|
|
contact2Tel: [
|
|
{
|
|
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
|
message: "请输入正确的手机号码",
|
|
trigger: "blur"
|
|
}
|
|
],
|
|
contact1Tel: [
|
|
{
|
|
pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/,
|
|
message: "请输入正确的手机号码",
|
|
trigger: "blur"
|
|
}
|
|
],
|
|
}
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
// 生成表头序号
|
|
indexMethod(index) {
|
|
return index + 1;
|
|
},
|
|
/** 查询客户管理列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listCustomer(this.queryParams).then(response => {
|
|
this.customerList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
clientId: null,
|
|
clientCode: null,
|
|
clientName: null,
|
|
clientNick: null,
|
|
clientEn: null,
|
|
clientDes: null,
|
|
clientLogo: null,
|
|
clientType: null,
|
|
address: null,
|
|
website: null,
|
|
email: null,
|
|
tel: null,
|
|
contact1: null,
|
|
contact1Tel: null,
|
|
contact1Email: null,
|
|
contact2: null,
|
|
contact2Tel: null,
|
|
contact2Email: null,
|
|
creditCode: null,
|
|
enableFlag: null,
|
|
remark: null,
|
|
attr1: null,
|
|
attr2: null,
|
|
attr3: null,
|
|
attr4: null,
|
|
createBy: null,
|
|
createTime: null,
|
|
updateBy: null,
|
|
updateTime: 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.clientId)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加客户管理";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const clientId = this.ids;
|
|
console.log('客户ID',this.ids);
|
|
getCustomer(clientId).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改客户管理";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.clientId != null) {
|
|
updateCustomer(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addCustomer(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const clientIds = row.clientId || this.ids;
|
|
this.$modal.confirm('是否确认删除客户管理编号为"' + clientIds + '"的数据项?').then(function() {
|
|
return delCustomer(clientIds);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('wms/customer/export', {
|
|
...this.queryParams
|
|
}, `customer_${new Date().getTime()}.xlsx`)
|
|
}
|
|
}
|
|
};
|
|
</script>
|