index.vue 16.6 KB
Newer Older
yanghao's avatar
yanghao committed
1 2 3 4
<template>
  <div class="app-container">

    <!-- 搜索工作栏 -->
5
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch && !!!customerId" label-width="68px">
yanghao's avatar
yanghao committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
      <el-form-item label="客户名称" prop="customerId">
        <el-select v-model="queryParams.customerId" placeholder="请选择客户名称" clearable size="small">
          <el-option v-for="customer in myFollowCustomerList" :key="customer.id" :value="customer.id"
                     :label="customer.name.join('|').join(customer.name)"/>
        </el-select>
      </el-form-item>
      <el-form-item label="投诉类型" prop="type">
        <el-select v-model="queryParams.type" placeholder="请选择投诉类型" clearable size="small">
          <el-option v-for="dict in this.getDictDatas(DICT_TYPE.CUSTOMER_COMPLAINT_TYPE)"
                       :key="dict.value" :label="dict.label" :value="dict.value"/>
        </el-select>
      </el-form-item>
      <el-form-item label="订单号" prop="orderId">
        <el-input v-model="queryParams.orderId" placeholder="请输入订单号" clearable @keyup.enter.native="handleQuery"/>
      </el-form-item>
      <el-form-item label="提单号" prop="ladingbillId">
        <el-input v-model="queryParams.ladingbillId" placeholder="请输入提单号" clearable @keyup.enter.native="handleQuery"/>
      </el-form-item>
      <el-form-item label="处理状态" prop="status">
        <el-select v-model="queryParams.status" placeholder="请选择处理状态" clearable size="small">
          <el-option v-for="dict in this.getDictDatas(DICT_TYPE.CUSTOMER_COMPLAINT_STATUS)"
                       :key="dict.value" :label="dict.label" :value="dict.value"/>
        </el-select>
      </el-form-item>
      <el-form-item label="投诉编号" prop="code">
        <el-input v-model="queryParams.code" placeholder="请输入投诉编号" clearable @keyup.enter.native="handleQuery"/>
      </el-form-item>
      <el-form-item label="创建时间">
        <el-date-picker v-model="dateRangeCreateTime" style="width: 240px" value-format="yyyy-MM-dd"
                        type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" />
      </el-form-item>
      <el-form-item>
        <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
      </el-form-item>
    </el-form>

    <!-- 操作工具栏 -->
44
    <el-row :gutter="10" v-show="!!!customerId" class="mb8">
yanghao's avatar
yanghao committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
      <el-col :span="1.5">
        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
                   v-hasPermi="['ecw:customer-complaint:create']">新增</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
                   v-hasPermi="['ecw:customer-complaint:export']">导出</el-button>
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <!-- 列表 -->
    <el-table v-loading="loading" :data="list">
      <el-table-column label="客户名称" align="center" >
        <template slot-scope="scope">
          <div>{{ formatCustomerName(scope.row.customerId) }}</div>
        </template>
      </el-table-column>
      <el-table-column label="投诉类型" align="center" prop="type">
        <template slot-scope="scope">
          <dict-tag :type="DICT_TYPE.CUSTOMER_COMPLAINT_TYPE" :value="scope.row.type" />
        </template>
      </el-table-column>
      <el-table-column label="订单号" align="center" prop="orderId" />
      <el-table-column label="提单号" align="center" prop="ladingbillId" />
      <el-table-column label="投诉内容" align="center" prop="content" />
      <el-table-column label="处理状态" align="center" prop="status">
        <template slot-scope="scope">
          <dict-tag :type="DICT_TYPE.CUSTOMER_COMPLAINT_STATUS" :value="scope.row.status" />
        </template>
      </el-table-column>
      <el-table-column label="创建时间" align="center" prop="createTime" width="180">
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.createTime) }}</span>
        </template>
      </el-table-column>
      <el-table-column 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="['ecw:customer-complaint:update']">修改</el-button>
黄卓's avatar
黄卓 committed
85 86
          <el-button size="mini" type="text" icon="el-icon-edit" @click="handleHandle(scope.row)"
                     v-hasPermi="['ecw:customer-complaint:update']" v-show="scope.row.status != 3">处理</el-button>
yanghao's avatar
yanghao committed
87 88 89 90 91 92 93 94 95 96
          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
                     v-hasPermi="['ecw:customer-complaint:delete']">删除</el-button>
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
                @pagination="getList"/>

    <!-- 对话框(添加 / 修改) -->
Marcus's avatar
Marcus committed
97
    <el-dialog :title="title" :visible.sync="open" width="900px" append-to-body>
yanghao's avatar
yanghao committed
98 99
      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
        <el-form-item label="客户名称" prop="customerId">
100
          <el-select v-model="form.customerId" placeholder="请选择客户名称" :disabled="!!customerId" filterable>
101 102 103 104
            <el-option
              v-for="item in customerSelect"
              :key="item.id"
              :label="item.name"
黄卓's avatar
黄卓 committed
105
              :value="item.id"></el-option>
yanghao's avatar
yanghao committed
106 107 108 109
          </el-select>
        </el-form-item>
        <el-form-item label="投诉类型" prop="type">
          <el-select v-model="form.type" placeholder="请选择投诉类型">
110
            <el-option v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_COMPLAINT_TYPE)"
yanghao's avatar
yanghao committed
111 112 113 114
                       :key="dict.value" :label="dict.label" :value="parseInt(dict.value)" />
          </el-select>
        </el-form-item>
        <el-form-item label="订单号" prop="orderId">
黄卓's avatar
黄卓 committed
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
          <el-select
            v-model="form.orderId"
            filterable
            remote
            reserve-keyword
            placeholder="请输入订单号"
            :remote-method="getOrderList"
            :loading="loading">
            <el-option
              v-for="item in orderList"
              :key="item.value"
              :label="item.value"
              :value="item.value">
            </el-option>
          </el-select>
yanghao's avatar
yanghao committed
130 131
        </el-form-item>
        <el-form-item label="提单号" prop="ladingbillId">
黄卓's avatar
黄卓 committed
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
          <el-select
            v-model="form.ladingbillId"
            filterable
            remote
            reserve-keyword
            placeholder="请输入提单号"
            :remote-method="getBillList"
            :loading="loading">
            <el-option
              v-for="item in billList"
              :key="item.value"
              :label="item.value"
              :value="item.value">
            </el-option>
          </el-select>
yanghao's avatar
yanghao committed
147 148 149 150 151
        </el-form-item>
        <el-form-item label="投诉内容" prop="content">
          <el-input v-model="form.content" type="textarea" placeholder="请输入内容" />
        </el-form-item>
        <el-form-item label="处理状态" prop="status">
152 153
          <span v-if="!form.id">{{ getDictDataLabel(DICT_TYPE.CUSTOMER_COMPLAINT_STATUS, 1) }}</span>
          <el-select v-else v-model="form.status" placeholder="请选择处理状态">
154
            <el-option v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_COMPLAINT_STATUS)"
yanghao's avatar
yanghao committed
155 156 157 158
                       :key="dict.value" :label="dict.label" :value="parseInt(dict.value)" />
          </el-select>
        </el-form-item>
      </el-form>
Marcus's avatar
Marcus committed
159

160
      <customer-follow v-if="!!this.form.id" :id="form.id" :customer-id="form.customerId"></customer-follow>
Marcus's avatar
Marcus committed
161

yanghao's avatar
yanghao committed
162 163 164 165 166
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitForm">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
黄卓's avatar
黄卓 committed
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199

    <el-dialog
      title="提示"
      :visible.sync="handle.dialogVisible"
      width="30%"
    >
      <el-form ref="form" :model="form" label-width="80px">
        <el-form-item label="投诉类型">
          <dict-selector :type="DICT_TYPE.CUSTOMER_COMPLAINT_STATUS" form-type="radio" v-model="form.status"
                         :filter="(e) => e.value == '2' || e.value == '3'" :formatter="Number"></dict-selector>
        </el-form-item>
        <el-form-item v-show="form.status == '2'" label="查明原因" required>
          <el-input type="textarea" placeholder="请输入查明原因" v-model="form.ascertainReason"></el-input>
        </el-form-item>
        <el-form-item v-show="form.status == '2'" label="处理方案">
          <el-input v-model="form.plan" placeholder="请输入处理方案"></el-input>
        </el-form-item>

        <el-form-item v-show="form.status == '3'" label="处理结果" required>
          <el-input type="textarea" placeholder="请输入处理结果" v-model="form.result"></el-input>
        </el-form-item>
        <el-form-item v-show="form.status == '3'" label="赔付金额">
          <el-input v-model="form.indemnity" placeholder="请输入赔付金额">
            <dict-selector
              defaultable
              style="width: 110px"
              placeholder="请选择货币单位"
              slot="append"
              v-model="form.currencyUnit"
              :type="DICT_TYPE.COMMISSION_CURRENCY_TYPE"></dict-selector>
          </el-input>
        </el-form-item>
        <el-form-item v-show="form.status == '3'" label="处理时间" required>
200
          <el-date-picker type="datetime" v-model="form.handleAt" value-format="yyyy-MM-dd HH:mm:ss"></el-date-picker>
黄卓's avatar
黄卓 committed
201 202 203 204 205 206 207
        </el-form-item>
      </el-form>
      <span slot="footer" class="dialog-footer">
        <el-button @click="handle.dialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="submitForm">确 定</el-button>
      </span>
    </el-dialog>
yanghao's avatar
yanghao committed
208 209 210 211 212
  </div>
</template>

<script>
import { createCustomerComplaint, updateCustomerComplaint, deleteCustomerComplaint, getCustomerComplaint, getCustomerComplaintPage, exportCustomerComplaintExcel } from "@/api/ecw/customerComplaint";
213
import {getCustomerSelect} from '@/api/ecw/customer'
Marcus's avatar
Marcus committed
214
import CustomerFollow from "../../../components/CustomerFollow"
黄卓's avatar
黄卓 committed
215
import DictSelector from '@/components/DictSelector'
216
import { DICT_TYPE, getDictDataLabel, getDictDatas } from '@/utils/dict'
黄卓's avatar
黄卓 committed
217
import { getBillNoSearch, getOrderNoSearch } from '@/api/ecw/order'
yanghao's avatar
yanghao committed
218 219 220

export default {
  name: "CustomerComplaint",
221 222 223 224 225
  /**
   * 可以单独作为页面,也可以作为组件被被客户详情页调用。
   * 作为组件时要传入 customerId,用于限制范围和隐藏搜索筛选
   */
  props: {
黄卓's avatar
黄卓 committed
226
    customerId: Number
227
  },
yanghao's avatar
yanghao committed
228
  components: {
黄卓's avatar
黄卓 committed
229 230
    CustomerFollow,
    DictSelector
yanghao's avatar
yanghao committed
231 232 233
  },
  data() {
    return {
黄卓's avatar
黄卓 committed
234
      DICT_TYPE,
235 236
      getDictDatas,
      getDictDataLabel,
yanghao's avatar
yanghao committed
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 客户投诉列表
      list: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      dateRangeCreateTime: [],
      // 查询参数
      queryParams: {
        pageNo: 1,
        pageSize: 10,
256
        customerId: this.customerId,
yanghao's avatar
yanghao committed
257 258 259 260 261 262 263 264 265 266 267 268
        type: null,
        orderId: null,
        ladingbillId: null,
        status: null,
        adminId: null,
        code: null,
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
        customerId: [{ required: true, message: "客户名称不能为空", trigger: "change" }],
269 270
        type: [{ required: true, message: "投诉类型不能为空", trigger: "change" }],
        content: [{ required: true, message: "投诉内容不能为空", trigger: "blur" }],
yanghao's avatar
yanghao committed
271 272
      },

273 274
      myFollowCustomerList: [],

黄卓's avatar
黄卓 committed
275 276 277 278 279
      customerSelect: [],

      // 处理
      handle: {
        dialogVisible: false
黄卓's avatar
黄卓 committed
280 281 282 283
      },

      billList: [],
      orderList: []
yanghao's avatar
yanghao committed
284 285 286 287
    };
  },
  created() {
    this.getList();
288 289 290

    getCustomerSelect().then(r => {
      this.customerSelect = r.data
yanghao's avatar
yanghao committed
291 292 293
    })
  },
  methods: {
黄卓's avatar
黄卓 committed
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309

    getBillList(key){
      getBillNoSearch({key, pageNo: 1, pageSize: 20}).then(r => {
        if (r.code === 0){
          this.billList = r.data.list
        }
      })
    },

    getOrderList(key){
      getOrderNoSearch({key, pageNo: 1, pageSize: 20}).then(r => {
        if (r.code === 0){
          this.orderList = r.data.list
        }
      })
    },
yanghao's avatar
yanghao committed
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 处理查询参数
      let params = {...this.queryParams};
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // 执行查询
      getCustomerComplaintPage(params).then(response => {
        this.list = response.data.list;
        this.total = response.data.total;
        this.loading = false;
      });
    },
    /** 取消按钮 */
    cancel() {
      this.open = false;
      this.reset();
    },
    /** 表单重置 */
    reset() {
      this.form = {
        id: undefined,
332
        customerId: this.customerId,
yanghao's avatar
yanghao committed
333 334 335 336 337
        type: undefined,
        orderId: undefined,
        ladingbillId: undefined,
        content: undefined,
        status: undefined,
黄卓's avatar
黄卓 committed
338 339 340 341 342 343 344
        ascertainReason: undefined,
        plan: undefined,
        result: undefined,
        indemnity: undefined,
        currencyUnit: undefined,
        handleAt: undefined,
        cancelReason: undefined,
yanghao's avatar
yanghao committed
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNo = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.dateRangeCreateTime = [];
      this.resetForm("queryForm");
      this.handleQuery();
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.open = true;
      this.title = "添加客户投诉";
364 365
      // 新增客诉默认状态为待处理
      this.form.status = 1;
yanghao's avatar
yanghao committed
366 367 368 369 370 371 372 373 374 375 376
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const id = row.id;
      getCustomerComplaint(id).then(response => {
        this.form = response.data;
        this.open = true;
        this.title = "修改客户投诉";
      });
    },
黄卓's avatar
黄卓 committed
377 378 379 380 381 382 383 384
    handleHandle(row){
      this.reset();
      const id = row.id;
      getCustomerComplaint(id).then(response => {
        this.form = response.data;
        this.handle.dialogVisible = true;
      });
    },
yanghao's avatar
yanghao committed
385 386 387 388 389 390 391 392 393 394 395
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (!valid) {
          return;
        }
        // 修改的提交
        if (this.form.id != null) {
          updateCustomerComplaint(this.form).then(response => {
            this.$modal.msgSuccess("修改成功");
            this.open = false;
黄卓's avatar
黄卓 committed
396
            this.handle.dialogVisible = false
yanghao's avatar
yanghao committed
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
            this.getList();
          });
          return;
        }
        // 添加的提交
        createCustomerComplaint(this.form).then(response => {
          this.$modal.msgSuccess("新增成功");
          this.open = false;
          this.getList();
        });
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const id = row.id;
      this.$modal.confirm('是否确认删除客户投诉编号为"' + id + '"的数据项?').then(function() {
          return deleteCustomerComplaint(id);
        }).then(() => {
          this.getList();
          this.$modal.msgSuccess("删除成功");
        }).catch(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      // 处理查询参数
      let params = {...this.queryParams};
      params.pageNo = undefined;
      params.pageSize = undefined;
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // 执行导出
      this.$modal.confirm('是否确认导出所有客户投诉数据项?').then(() => {
          this.exportLoading = true;
          return exportCustomerComplaintExcel(params);
        }).then(response => {
          this.$download.excel(response, '${table.classComment}.xls');
          this.exportLoading = false;
        }).catch(() => {});
    },
    /** 格式化邮件账号 */
    formatCustomerName(customerId) {
437
      for (const customer of this.customerSelect) {
yanghao's avatar
yanghao committed
438 439 440 441 442 443 444 445 446
        if (customer.id === customerId) {
          return customer.name;
        }
      }
      return '找不到客户:' + customerId;
    }
  }
};
</script>