|
@@ -3,15 +3,15 @@
|
|
|
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
<el-form-item label="名称" prop="customerName">
|
|
|
<el-input
|
|
|
- v-model="queryParams.customerName"
|
|
|
+ v-model="queryParams.orgName"
|
|
|
placeholder="请输入名称"
|
|
|
clearable
|
|
|
size="small"
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="状态" prop="status">
|
|
|
- <el-select v-model="queryParams.status" placeholder="请选择状态" clearable size="small">
|
|
|
+ <el-form-item label="状态" prop="orgStatus">
|
|
|
+ <el-select v-model="queryParams.orgStatus" placeholder="请选择状态" clearable size="small">
|
|
|
<el-option
|
|
|
v-for="dict in dict.type.sys_normal_disable"
|
|
|
:key="dict.value"
|
|
@@ -74,11 +74,11 @@
|
|
|
|
|
|
<el-table v-loading="loading" :data="customerList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="主键" align="center" prop="customerId" />
|
|
|
- <el-table-column label="名称" align="center" prop="customerName" />
|
|
|
- <el-table-column label="状态" align="center" prop="status">
|
|
|
+ <el-table-column label="主键" align="center" prop="id" />
|
|
|
+ <el-table-column label="名称" align="center" prop="orgName" />
|
|
|
+ <el-table-column label="状态" align="center" prop="orgStatus">
|
|
|
<template slot-scope="scope">
|
|
|
- <dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/>
|
|
|
+ <dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.orgStatus"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
@@ -106,7 +106,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
-
|
|
|
+
|
|
|
<pagination
|
|
|
v-show="total>0"
|
|
|
:total="total"
|
|
@@ -119,10 +119,10 @@
|
|
|
<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="customerName">
|
|
|
- <el-input v-model="form.customerName" placeholder="请输入名称" />
|
|
|
+ <el-input v-model="form.orgName" placeholder="请输入名称" />
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="状态" prop="status">
|
|
|
- <el-select v-model="form.status" placeholder="请选择状态">
|
|
|
+ <el-form-item label="状态" prop="orgStatus">
|
|
|
+ <el-select v-model="form.orgStatus" placeholder="请选择状态">
|
|
|
<el-option
|
|
|
v-for="dict in dict.type.sys_normal_disable"
|
|
|
:key="dict.value"
|
|
@@ -188,8 +188,9 @@ export default {
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
|
- customerName: null,
|
|
|
- status: null,
|
|
|
+ orgName: null,
|
|
|
+ orgStatus: null,
|
|
|
+ orgType: "10"// 客户
|
|
|
},
|
|
|
// 表单参数
|
|
|
form: {},
|
|
@@ -219,9 +220,9 @@ export default {
|
|
|
// 表单重置
|
|
|
reset() {
|
|
|
this.form = {
|
|
|
- customerId: null,
|
|
|
- customerName: null,
|
|
|
- status: null,
|
|
|
+ id: null,
|
|
|
+ orgName: null,
|
|
|
+ orgStatus: null,
|
|
|
createBy: null,
|
|
|
createTime: null,
|
|
|
updateBy: null,
|
|
@@ -231,7 +232,8 @@ export default {
|
|
|
userdefine2: null,
|
|
|
userdefine3: null,
|
|
|
userdefine4: null,
|
|
|
- userdefine5: null
|
|
|
+ userdefine5: null,
|
|
|
+ orgType: "10"//客户
|
|
|
};
|
|
|
this.resetForm("form");
|
|
|
},
|
|
@@ -247,7 +249,7 @@ export default {
|
|
|
},
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
- this.ids = selection.map(item => item.customerId)
|
|
|
+ this.ids = selection.map(item => item.id)
|
|
|
this.single = selection.length!==1
|
|
|
this.multiple = !selection.length
|
|
|
},
|
|
@@ -260,8 +262,9 @@ export default {
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
this.reset();
|
|
|
- const customerId = row.customerId || this.ids
|
|
|
- getCustomer(customerId).then(response => {
|
|
|
+ const id = row.id || this.ids
|
|
|
+ console.log(id)
|
|
|
+ getCustomer(id).then(response => {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
this.title = "修改客户";
|
|
@@ -271,7 +274,7 @@ export default {
|
|
|
submitForm() {
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
if (valid) {
|
|
|
- if (this.form.customerId != null) {
|
|
|
+ if (this.form.id != null) {
|
|
|
updateCustomer(this.form).then(response => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
this.open = false;
|
|
@@ -289,9 +292,9 @@ export default {
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
- const customerIds = row.customerId || this.ids;
|
|
|
- this.$modal.confirm('是否确认删除客户编号为"' + customerIds + '"的数据项?').then(function() {
|
|
|
- return delCustomer(customerIds);
|
|
|
+ const ids = row.id || this.ids;
|
|
|
+ this.$modal.confirm('是否确认删除客户编号为"' + ids + '"的数据项?').then(function() {
|
|
|
+ return delCustomer(ids);
|
|
|
}).then(() => {
|
|
|
this.getList();
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
@@ -299,7 +302,7 @@ export default {
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
- this.download('base/customer/export', {
|
|
|
+ this.download('base/org/export', {
|
|
|
...this.queryParams
|
|
|
}, `customer_${new Date().getTime()}.xlsx`)
|
|
|
}
|