customer.vue 4.9 KB
Newer Older
K
klausY 已提交
1 2
<template>
  <div>
3
    <div class="search-term">
K
klausY 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
      <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>
J
jinlan.du 已提交
25
      <el-table-column label="按钮组" min-width="160">
K
klausY 已提交
26
        <template slot-scope="scope">
R
rainyan 已提交
27
          <el-button @click="updateCustomer(scope.row)" size="small" type="text">变更</el-button>
28 29 30 31 32 33
          <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>
LoeYueng's avatar
LoeYueng 已提交
34
            <el-button type="danger" icon="el-icon-delete" size="mini" slot="reference">删除</el-button>
35
          </el-popover>
K
klausY 已提交
36 37 38 39
        </template>
      </el-table-column>
    </el-table>

40
    <el-pagination
K
klausY 已提交
41 42 43 44 45 46 47 48 49 50
      :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>

51
    <el-dialog :before-close="closeDialog" :visible.sync="dialogFormVisible" title="客户">
K
klausY 已提交
52 53 54 55 56 57 58 59 60 61 62 63
      <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>
1
1319612909 已提交
64 65
    </el-dialog>
    <div class="tips"> 在资源权限中将此角色的资源权限清空 或者不包含创建者的角色 即可屏蔽此客户资源的显示</div>
K
klausY 已提交
66 67 68 69 70 71
  </div>
</template>

<script>
import {
  createExaCustomer,
R
rainyan 已提交
72
  updateExaCustomer,
K
klausY 已提交
73 74 75
  deleteExaCustomer,
  getExaCustomer,
  getExaCustomerList
76 77 78
} from "@/api/customer";
import { formatTimeToStr } from "@/utils/data";
import infoList from "@/components/mixins/infoList";
K
klausY 已提交
79 80

export default {
81 82 83 84
  name: "Customer",
  mixins: [infoList],
  data() {
    return {
K
klausY 已提交
85
      listApi: getExaCustomerList,
86 87 88 89 90 91
      dialogFormVisible: false,
      visible: false,
      type: "",
      form: {
        customerName: "",
        customerPhoneData: ""
K
klausY 已提交
92
      }
93
    };
K
klausY 已提交
94
  },
95
  filters: {
K
klausY 已提交
96
    formatDate: function(time) {
97 98 99
      if (time != null && time != "") {
        var date = new Date(time);
        return formatTimeToStr(date, "yyyy-MM-dd hh:mm:ss");
K
klausY 已提交
100
      } else {
101
        return "";
K
klausY 已提交
102 103 104
      }
    }
  },
105 106 107 108 109 110 111
  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;
K
klausY 已提交
112 113
      }
    },
114 115
    closeDialog() {
      this.dialogFormVisible = false;
Mr.奇淼('s avatar
Mr.奇淼( 已提交
116
      this.form = {
117 118 119
        customerName: "",
        customerPhoneData: ""
      };
K
klausY 已提交
120
    },
121 122 123 124
    async deleteCustomer(row) {
      this.visible = false;
      const res = await deleteExaCustomer({ ID: row.ID });
      if (res.code == 0) {
125
        this.$message({
126 127 128 129
          type: "success",
          message: "删除成功"
        });
        this.getTableData();
K
klausY 已提交
130 131
      }
    },
132 133
    async enterDialog() {
      let res;
K
klausY 已提交
134 135
      switch (this.type) {
        case "create":
136 137
          res = await createExaCustomer(this.form);
          break;
K
klausY 已提交
138
        case "update":
139 140
          res = await updateExaCustomer(this.form);
          break;
K
klausY 已提交
141
        default:
142 143
          res = await createExaCustomer(this.form);
          break;
K
klausY 已提交
144
      }
145 146 147 148

      if (res.code == 0) {
        this.closeDialog();
        this.getTableData();
K
klausY 已提交
149 150
      }
    },
151 152 153
    openDialog() {
      this.type = "create";
      this.dialogFormVisible = true;
K
klausY 已提交
154
    }
155
  },
156 157
  created() {
    this.getTableData();
K
klausY 已提交
158
  }
159
};
K
klausY 已提交
160 161 162 163
</script>

<style>
</style>