2020-02-25 18:15:00 +08:00
|
|
|
|
<template>
|
|
|
|
|
<div>
|
2020-04-30 19:05:11 +08:00
|
|
|
|
<div class="search-term">
|
2020-02-25 18:15:00 +08:00
|
|
|
|
<el-form :inline="true" :model="searchInfo" class="demo-form-inline">
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button @click="openDialog" type="primary">新增客户</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
</div>
|
|
|
|
|
<el-table
|
|
|
|
|
:data="tableData"
|
|
|
|
|
border
|
|
|
|
|
ref="multipleTable"
|
|
|
|
|
stripe
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
tooltip-effect="dark"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
<el-table-column label="接入日期" width="180">
|
|
|
|
|
<template slot-scope="scope">{{ scope.row.CreatedAt|formatDate }}</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="姓名" prop="customerName" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="电话" prop="customerPhoneData" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="接入人ID" prop="sysUserId" width="120"></el-table-column>
|
2020-05-18 13:29:48 +08:00
|
|
|
|
<el-table-column label="按钮组" min-width="160">
|
2020-02-25 18:15:00 +08:00
|
|
|
|
<template slot-scope="scope">
|
2020-04-02 20:35:19 +08:00
|
|
|
|
<el-button @click="updateCustomer(scope.row)" size="small" type="text">变更</el-button>
|
2020-04-30 19:05:11 +08:00
|
|
|
|
<el-popover placement="top" width="160" v-model="scope.row.visible">
|
|
|
|
|
<p>确定要删除吗?</p>
|
|
|
|
|
<div style="text-align: right; margin: 0">
|
|
|
|
|
<el-button size="mini" type="text" @click="scope.row.visible = false">取消</el-button>
|
|
|
|
|
<el-button type="primary" size="mini" @click="deleteCustomer(scope.row)">确定</el-button>
|
|
|
|
|
</div>
|
2020-06-07 07:46:16 +08:00
|
|
|
|
<el-button type="danger" icon="el-icon-delete" size="mini" slot="reference">删除</el-button>
|
2020-04-30 19:05:11 +08:00
|
|
|
|
</el-popover>
|
2020-02-25 18:15:00 +08:00
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
2020-04-30 19:05:11 +08:00
|
|
|
|
<el-pagination
|
2020-02-25 18:15:00 +08:00
|
|
|
|
:current-page="page"
|
|
|
|
|
:page-size="pageSize"
|
|
|
|
|
:page-sizes="[10, 30, 50, 100]"
|
|
|
|
|
:style="{float:'right',padding:'20px'}"
|
|
|
|
|
:total="total"
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
@size-change="handleSizeChange"
|
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
></el-pagination>
|
|
|
|
|
|
2020-05-09 17:48:31 +08:00
|
|
|
|
<el-dialog :before-close="closeDialog" :visible.sync="dialogFormVisible" title="客户">
|
2020-02-25 18:15:00 +08:00
|
|
|
|
<el-form :inline="true" :model="form" label-width="80px">
|
|
|
|
|
<el-form-item label="客户名">
|
|
|
|
|
<el-input autocomplete="off" v-model="form.customerName"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="客户电话">
|
|
|
|
|
<el-input autocomplete="off" v-model="form.customerPhoneData"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="dialog-footer" slot="footer">
|
|
|
|
|
<el-button @click="closeDialog">取 消</el-button>
|
|
|
|
|
<el-button @click="enterDialog" type="primary">确 定</el-button>
|
|
|
|
|
</div>
|
2020-05-14 21:54:00 +08:00
|
|
|
|
</el-dialog>
|
2020-12-27 17:20:54 +08:00
|
|
|
|
<div class="tips">在资源权限中将此角色的资源权限清空 或者不包含创建者的角色 即可屏蔽此客户资源的显示</div>
|
2020-02-25 18:15:00 +08:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import {
|
|
|
|
|
createExaCustomer,
|
2020-04-02 20:35:19 +08:00
|
|
|
|
updateExaCustomer,
|
2020-02-25 18:15:00 +08:00
|
|
|
|
deleteExaCustomer,
|
|
|
|
|
getExaCustomer,
|
|
|
|
|
getExaCustomerList
|
2020-04-30 19:05:11 +08:00
|
|
|
|
} from "@/api/customer";
|
2020-10-29 22:12:42 +08:00
|
|
|
|
import { formatTimeToStr } from "@/utils/date";
|
2020-10-29 22:06:09 +08:00
|
|
|
|
import infoList from "@/mixins/infoList";
|
2020-02-25 18:15:00 +08:00
|
|
|
|
|
|
|
|
|
export default {
|
2020-04-30 19:05:11 +08:00
|
|
|
|
name: "Customer",
|
|
|
|
|
mixins: [infoList],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2020-02-25 18:15:00 +08:00
|
|
|
|
listApi: getExaCustomerList,
|
2020-04-30 19:05:11 +08:00
|
|
|
|
dialogFormVisible: false,
|
|
|
|
|
visible: false,
|
|
|
|
|
type: "",
|
|
|
|
|
form: {
|
|
|
|
|
customerName: "",
|
|
|
|
|
customerPhoneData: ""
|
2020-02-25 18:15:00 +08:00
|
|
|
|
}
|
2020-04-30 19:05:11 +08:00
|
|
|
|
};
|
2020-02-25 18:15:00 +08:00
|
|
|
|
},
|
2020-04-30 19:05:11 +08:00
|
|
|
|
filters: {
|
2020-02-25 18:15:00 +08:00
|
|
|
|
formatDate: function(time) {
|
2020-04-30 19:05:11 +08:00
|
|
|
|
if (time != null && time != "") {
|
|
|
|
|
var date = new Date(time);
|
|
|
|
|
return formatTimeToStr(date, "yyyy-MM-dd hh:mm:ss");
|
2020-02-25 18:15:00 +08:00
|
|
|
|
} else {
|
2020-04-30 19:05:11 +08:00
|
|
|
|
return "";
|
2020-02-25 18:15:00 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2020-04-30 19:05:11 +08:00
|
|
|
|
methods: {
|
|
|
|
|
async updateCustomer(row) {
|
|
|
|
|
const res = await getExaCustomer({ ID: row.ID });
|
|
|
|
|
this.type = "update";
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
this.form = res.data.customer;
|
|
|
|
|
this.dialogFormVisible = true;
|
2020-02-25 18:15:00 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2020-04-30 19:05:11 +08:00
|
|
|
|
closeDialog() {
|
|
|
|
|
this.dialogFormVisible = false;
|
2020-04-16 09:48:18 +08:00
|
|
|
|
this.form = {
|
2020-04-30 19:05:11 +08:00
|
|
|
|
customerName: "",
|
|
|
|
|
customerPhoneData: ""
|
|
|
|
|
};
|
2020-02-25 18:15:00 +08:00
|
|
|
|
},
|
2020-04-30 19:05:11 +08:00
|
|
|
|
async deleteCustomer(row) {
|
|
|
|
|
this.visible = false;
|
|
|
|
|
const res = await deleteExaCustomer({ ID: row.ID });
|
|
|
|
|
if (res.code == 0) {
|
2020-04-10 13:47:52 +08:00
|
|
|
|
this.$message({
|
2020-04-30 19:05:11 +08:00
|
|
|
|
type: "success",
|
2020-12-27 17:20:54 +08:00
|
|
|
|
message: ""
|
2020-04-30 19:05:11 +08:00
|
|
|
|
});
|
2020-12-27 17:20:54 +08:00
|
|
|
|
if (this.tableData.length == 1) {
|
|
|
|
|
this.page--;
|
|
|
|
|
}
|
2020-04-30 19:05:11 +08:00
|
|
|
|
this.getTableData();
|
2020-02-25 18:15:00 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2020-04-30 19:05:11 +08:00
|
|
|
|
async enterDialog() {
|
|
|
|
|
let res;
|
2020-02-25 18:15:00 +08:00
|
|
|
|
switch (this.type) {
|
|
|
|
|
case "create":
|
2020-04-30 19:05:11 +08:00
|
|
|
|
res = await createExaCustomer(this.form);
|
|
|
|
|
break;
|
2020-02-25 18:15:00 +08:00
|
|
|
|
case "update":
|
2020-04-30 19:05:11 +08:00
|
|
|
|
res = await updateExaCustomer(this.form);
|
|
|
|
|
break;
|
2020-02-25 18:15:00 +08:00
|
|
|
|
default:
|
2020-04-30 19:05:11 +08:00
|
|
|
|
res = await createExaCustomer(this.form);
|
|
|
|
|
break;
|
2020-02-25 18:15:00 +08:00
|
|
|
|
}
|
2020-04-30 19:05:11 +08:00
|
|
|
|
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
this.getTableData();
|
2020-02-25 18:15:00 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2020-04-30 19:05:11 +08:00
|
|
|
|
openDialog() {
|
|
|
|
|
this.type = "create";
|
|
|
|
|
this.dialogFormVisible = true;
|
2020-02-25 18:15:00 +08:00
|
|
|
|
}
|
2020-04-15 16:37:53 +08:00
|
|
|
|
},
|
2020-04-30 19:05:11 +08:00
|
|
|
|
created() {
|
|
|
|
|
this.getTableData();
|
2020-02-25 18:15:00 +08:00
|
|
|
|
}
|
2020-04-30 19:05:11 +08:00
|
|
|
|
};
|
2020-02-25 18:15:00 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
</style>
|