|
@@ -0,0 +1,445 @@
|
|
|
+<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form-item label="公司名称" prop="corporateName">
|
|
|
+ <el-input
|
|
|
+ v-model="queryParams.corporateName"
|
|
|
+ placeholder="请输入公司名称"
|
|
|
+ clearable
|
|
|
+ size="small"
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="cyan" 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"
|
|
|
+ icon="el-icon-plus"
|
|
|
+ size="mini"
|
|
|
+ @click="handleAdd"
|
|
|
+ v-hasPermi="['customer:customer:add']"
|
|
|
+ >新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="success"
|
|
|
+ icon="el-icon-edit"
|
|
|
+ size="mini"
|
|
|
+ :disabled="single"
|
|
|
+ @click="handleUpdate"
|
|
|
+ v-hasPermi="['customer:customer:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ size="mini"
|
|
|
+ :disabled="multiple"
|
|
|
+ @click="handleDelete"
|
|
|
+ v-hasPermi="['customer:customer:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ @click="handleExport"
|
|
|
+ v-hasPermi="['customer: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 fixed='left' label="主键" align="center" prop="id" />
|
|
|
+ <el-table-column fixed='left' width="150" label="公司名称" align="center" prop="corporateName" />
|
|
|
+ <el-table-column label="业务类型" align="center" prop="businessType" />
|
|
|
+ <el-table-column label="公司LOGO图片" align="center" prop="corporateLogo" />
|
|
|
+ <el-table-column label="客户来源" align="center" prop="customerSource" />
|
|
|
+ <el-table-column label="所在城市编码" align="center" prop="cityCode" />
|
|
|
+ <el-table-column label="归属人员" align="center" prop="attributedPersonnel" />
|
|
|
+ <el-table-column label="详细地址" align="center" prop="detailedAddress" />
|
|
|
+ <el-table-column label="行业类型" align="center" prop="industryType" />
|
|
|
+ <el-table-column label="公司电话" align="center" prop="corporatePhone" />
|
|
|
+ <el-table-column label="公司联系人" align="center" prop="corporateContacts" />
|
|
|
+ <el-table-column label="手机号码" align="center" prop="phone" />
|
|
|
+ <el-table-column label="客户星级" align="center" prop="customerStar" />
|
|
|
+ <el-table-column label="企业税号" align="center" prop="enterpriseTaxNumber" />
|
|
|
+ <el-table-column label="发票抬头" align="center" prop="invoiceTitle" />
|
|
|
+ <el-table-column label="开户银行" align="center" prop="bankOfDeposit" />
|
|
|
+ <el-table-column label="银行帐户" align="center" prop="bankAccount" />
|
|
|
+ <el-table-column label="财务电话号码" align="center" prop="financePhone" />
|
|
|
+ <el-table-column label="传真号码" align="center" prop="faxNumber" />
|
|
|
+ <el-table-column label="小程序地址" align="center" prop="appletAddress" />
|
|
|
+ <el-table-column label="小程序图标" align="center" prop="appletLogo" />
|
|
|
+ <el-table-column label="小程序二维码" align="center" prop="appletQrCode" />
|
|
|
+ <el-table-column label="小程序介绍" align="center" prop="appletIntroduce" />
|
|
|
+ <el-table-column label="上架状态" align="center" prop="shelfStatus" />
|
|
|
+ <el-table-column label="状态" align="center" prop="status" />
|
|
|
+ <el-table-column fixed='right' width="150" 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="['customer:customer:edit']"
|
|
|
+ >修改</el-button>
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ icon="el-icon-delete"
|
|
|
+ @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['customer:customer:remove']"
|
|
|
+ >删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </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="500px" append-to-body>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="公司名称" prop="corporateName">
|
|
|
+ <el-input v-model="form.corporateName" placeholder="请输入公司名称" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="公司LOGO图片--" prop="corporateLogo">
|
|
|
+ <el-input v-model="form.corporateLogo" placeholder="请输入公司LOGO图片--" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="客户来源 0:电话营销、1:主动来电、2:客户介绍、3:朋友介绍、4:销售推广、5:网络搜索、6:广告杂志、7:展会促销、8:其他" prop="customerSource">
|
|
|
+ <el-input v-model="form.customerSource" placeholder="请输入客户来源 0:电话营销、1:主动来电、2:客户介绍、3:朋友介绍、4:销售推广、5:网络搜索、6:广告杂志、7:展会促销、8:其他" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="所在城市编码" prop="cityCode">
|
|
|
+ <el-input v-model="form.cityCode" placeholder="请输入所在城市编码" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="归属人员--关联用户表" prop="attributedPersonnel">
|
|
|
+ <el-input v-model="form.attributedPersonnel" placeholder="请输入归属人员--关联用户表" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="详细地址" prop="detailedAddress">
|
|
|
+ <el-input v-model="form.detailedAddress" placeholder="请输入详细地址" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="公司电话" prop="corporatePhone">
|
|
|
+ <el-input v-model="form.corporatePhone" placeholder="请输入公司电话" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="公司联系人" prop="corporateContacts">
|
|
|
+ <el-input v-model="form.corporateContacts" placeholder="请输入公司联系人" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="手机号码" prop="phone">
|
|
|
+ <el-input v-model="form.phone" placeholder="请输入手机号码" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="客户星级 1:一星、2:二星、3:三星、4:四星、5:五星" prop="customerStar">
|
|
|
+ <el-input v-model="form.customerStar" placeholder="请输入客户星级 1:一星、2:二星、3:三星、4:四星、5:五星" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="企业税号" prop="enterpriseTaxNumber">
|
|
|
+ <el-input v-model="form.enterpriseTaxNumber" placeholder="请输入企业税号" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="发票抬头" prop="invoiceTitle">
|
|
|
+ <el-input v-model="form.invoiceTitle" placeholder="请输入发票抬头" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="开户银行" prop="bankOfDeposit">
|
|
|
+ <el-input v-model="form.bankOfDeposit" placeholder="请输入开户银行" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="银行帐户" prop="bankAccount">
|
|
|
+ <el-input v-model="form.bankAccount" placeholder="请输入银行帐户" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="财务电话号码" prop="financePhone">
|
|
|
+ <el-input v-model="form.financePhone" placeholder="请输入财务电话号码" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="传真号码" prop="faxNumber">
|
|
|
+ <el-input v-model="form.faxNumber" placeholder="请输入传真号码" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="小程序地址" prop="appletAddress">
|
|
|
+ <el-input v-model="form.appletAddress" placeholder="请输入小程序地址" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="小程序图标---" prop="appletLogo">
|
|
|
+ <el-input v-model="form.appletLogo" placeholder="请输入小程序图标---" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="小程序二维码---" prop="appletQrCode">
|
|
|
+ <el-input v-model="form.appletQrCode" placeholder="请输入小程序二维码---" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="小程序介绍" prop="appletIntroduce">
|
|
|
+ <el-input v-model="form.appletIntroduce" 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 { listCustomer, getCustomer, delCustomer, addCustomer, updateCustomer, exportCustomer } from "@/api/customer/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,
|
|
|
+ corporateName: null,
|
|
|
+
|
|
|
+ businessType: null,
|
|
|
+
|
|
|
+ corporateLogo: null,
|
|
|
+
|
|
|
+ customerSource: null,
|
|
|
+
|
|
|
+ cityCode: null,
|
|
|
+
|
|
|
+ attributedPersonnel: null,
|
|
|
+
|
|
|
+ detailedAddress: null,
|
|
|
+
|
|
|
+ industryType: null,
|
|
|
+
|
|
|
+ corporatePhone: null,
|
|
|
+
|
|
|
+ corporateContacts: null,
|
|
|
+
|
|
|
+ phone: null,
|
|
|
+
|
|
|
+ customerStar: null,
|
|
|
+
|
|
|
+ enterpriseTaxNumber: null,
|
|
|
+
|
|
|
+ invoiceTitle: null,
|
|
|
+
|
|
|
+ bankOfDeposit: null,
|
|
|
+
|
|
|
+ bankAccount: null,
|
|
|
+
|
|
|
+ financePhone: null,
|
|
|
+
|
|
|
+ faxNumber: null,
|
|
|
+
|
|
|
+ appletAddress: null,
|
|
|
+
|
|
|
+ appletLogo: null,
|
|
|
+
|
|
|
+ appletQrCode: null,
|
|
|
+
|
|
|
+ appletIntroduce: null,
|
|
|
+
|
|
|
+ shelfStatus: null,
|
|
|
+
|
|
|
+ status: null,
|
|
|
+
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ businessType: [
|
|
|
+ { required: true, message: "业务类型 0:内部小程序、1:外部小程序不能为空", trigger: "change" }
|
|
|
+ ],
|
|
|
+
|
|
|
+ shelfStatus: [
|
|
|
+ { required: true, message: "上架状态 0:已上架、1:未上架不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+
|
|
|
+ status: [
|
|
|
+ { required: true, message: "状态 0:有效(默认)、1:失效 不能为空", trigger: "blur" }
|
|
|
+ ],
|
|
|
+
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 查询客户信息列表 */
|
|
|
+ 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 = {
|
|
|
+ id: null,
|
|
|
+
|
|
|
+ corporateName: null,
|
|
|
+
|
|
|
+ businessType: null,
|
|
|
+
|
|
|
+ corporateLogo: null,
|
|
|
+
|
|
|
+ customerSource: null,
|
|
|
+
|
|
|
+ cityCode: null,
|
|
|
+
|
|
|
+ attributedPersonnel: null,
|
|
|
+
|
|
|
+ detailedAddress: null,
|
|
|
+
|
|
|
+ industryType: null,
|
|
|
+
|
|
|
+ corporatePhone: null,
|
|
|
+
|
|
|
+ corporateContacts: null,
|
|
|
+
|
|
|
+ phone: null,
|
|
|
+
|
|
|
+ customerStar: null,
|
|
|
+
|
|
|
+ enterpriseTaxNumber: null,
|
|
|
+
|
|
|
+ invoiceTitle: null,
|
|
|
+
|
|
|
+ bankOfDeposit: null,
|
|
|
+
|
|
|
+ bankAccount: null,
|
|
|
+
|
|
|
+ financePhone: null,
|
|
|
+
|
|
|
+ faxNumber: null,
|
|
|
+
|
|
|
+ appletAddress: null,
|
|
|
+
|
|
|
+ appletLogo: null,
|
|
|
+
|
|
|
+ appletQrCode: null,
|
|
|
+
|
|
|
+ appletIntroduce: null,
|
|
|
+
|
|
|
+ shelfStatus: 0,
|
|
|
+
|
|
|
+ createTime: null,
|
|
|
+
|
|
|
+ updateTime: null,
|
|
|
+
|
|
|
+ status: 0,
|
|
|
+
|
|
|
+ };
|
|
|
+ this.resetForm("form");
|
|
|
+ },
|
|
|
+ /** 搜索按钮操作 */
|
|
|
+ handleQuery() {
|
|
|
+ this.queryParams.pageNum = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ resetQuery() {
|
|
|
+ this.resetForm("queryForm");
|
|
|
+ this.handleQuery();
|
|
|
+ },
|
|
|
+ // 多选框选中数据
|
|
|
+ handleSelectionChange(selection) {
|
|
|
+ this.ids = selection.map(item => item.id)
|
|
|
+ this.single = selection.length!==1
|
|
|
+ this.multiple = !selection.length
|
|
|
+ },
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ handleAdd() {
|
|
|
+ this.reset();
|
|
|
+ this.open = true;
|
|
|
+ this.title = "添加客户信息";
|
|
|
+ },
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.reset();
|
|
|
+ const id = row.id || this.ids
|
|
|
+ getCustomer(id).then(response => {
|
|
|
+ this.form = response.data;
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改客户信息";
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
+ if (valid) {
|
|
|
+ if (this.form.id != null) {
|
|
|
+ updateCustomer(this.form).then(response => {
|
|
|
+ this.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ addCustomer(this.form).then(response => {
|
|
|
+ this.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const ids = row.id || this.ids;
|
|
|
+ this.$confirm('是否确认删除客户信息编号为"' + ids + '"的数据项?', "警告", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function() {
|
|
|
+ return delCustomer(ids);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ const queryParams = this.queryParams;
|
|
|
+ this.$confirm('是否确认导出所有客户信息数据项?', "警告", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function() {
|
|
|
+ return exportCustomer(queryParams);
|
|
|
+ }).then(response => {
|
|
|
+ this.download(response.data);
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|