index.vue 14.9 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 101 102 103 104
          <el-select v-model="form.customerId" placeholder="请选择客户名称" :disabled="!!customerId">
            <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 115 116 117 118 119 120 121 122 123 124
                       :key="dict.value" :label="dict.label" :value="parseInt(dict.value)" />
          </el-select>
        </el-form-item>
        <el-form-item label="订单号" prop="orderId">
          <el-input v-model="form.orderId" placeholder="请输入订单号" />
        </el-form-item>
        <el-form-item label="提单号" prop="ladingbillId">
          <el-input v-model="form.ladingbillId" placeholder="请输入提单号" />
        </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">
          <el-select v-model="form.status" placeholder="请选择处理状态">
125
            <el-option v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_COMPLAINT_STATUS)"
yanghao's avatar
yanghao committed
126 127 128 129
                       :key="dict.value" :label="dict.label" :value="parseInt(dict.value)" />
          </el-select>
        </el-form-item>
      </el-form>
Marcus's avatar
Marcus committed
130

Marcus's avatar
Marcus committed
131
      <customer-follow v-show="!!this.form.id" :customer-id="form.id"></customer-follow>
Marcus's avatar
Marcus committed
132

yanghao's avatar
yanghao committed
133 134 135 136 137
      <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
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178

    <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>
          <el-date-picker type="datetime" v-model="form.handleAt"></el-date-picker>
        </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
179 180 181 182 183
  </div>
</template>

<script>
import { createCustomerComplaint, updateCustomerComplaint, deleteCustomerComplaint, getCustomerComplaint, getCustomerComplaintPage, exportCustomerComplaintExcel } from "@/api/ecw/customerComplaint";
184
import {getCustomerSelect} from '@/api/ecw/customer'
Marcus's avatar
Marcus committed
185
import CustomerFollow from "../../../components/CustomerFollow"
黄卓's avatar
黄卓 committed
186 187
import DictSelector from '@/components/DictSelector'
import { DICT_TYPE } from '@/utils/dict'
yanghao's avatar
yanghao committed
188 189 190

export default {
  name: "CustomerComplaint",
191 192 193 194 195
  /**
   * 可以单独作为页面,也可以作为组件被被客户详情页调用。
   * 作为组件时要传入 customerId,用于限制范围和隐藏搜索筛选
   */
  props: {
黄卓's avatar
黄卓 committed
196
    customerId: Number
197
  },
yanghao's avatar
yanghao committed
198
  components: {
黄卓's avatar
黄卓 committed
199 200
    CustomerFollow,
    DictSelector
yanghao's avatar
yanghao committed
201 202 203
  },
  data() {
    return {
黄卓's avatar
黄卓 committed
204
      DICT_TYPE,
yanghao's avatar
yanghao committed
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 客户投诉列表
      list: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      dateRangeCreateTime: [],
      // 查询参数
      queryParams: {
        pageNo: 1,
        pageSize: 10,
224
        customerId: this.customerId,
yanghao's avatar
yanghao committed
225 226 227 228 229 230 231 232 233 234 235 236 237 238
        type: null,
        orderId: null,
        ladingbillId: null,
        status: null,
        adminId: null,
        code: null,
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
        customerId: [{ required: true, message: "客户名称不能为空", trigger: "change" }],
      },

239 240
      myFollowCustomerList: [],

黄卓's avatar
黄卓 committed
241 242 243 244 245 246
      customerSelect: [],

      // 处理
      handle: {
        dialogVisible: false
      }
yanghao's avatar
yanghao committed
247 248 249 250
    };
  },
  created() {
    this.getList();
251 252 253

    getCustomerSelect().then(r => {
      this.customerSelect = r.data
yanghao's avatar
yanghao committed
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
    })
  },
  methods: {
    /** 查询列表 */
    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,
279
        customerId: this.customerId,
yanghao's avatar
yanghao committed
280 281 282 283 284
        type: undefined,
        orderId: undefined,
        ladingbillId: undefined,
        content: undefined,
        status: undefined,
黄卓's avatar
黄卓 committed
285 286 287 288 289 290 291
        ascertainReason: undefined,
        plan: undefined,
        result: undefined,
        indemnity: undefined,
        currencyUnit: undefined,
        handleAt: undefined,
        cancelReason: undefined,
yanghao's avatar
yanghao committed
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
      };
      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 = "添加客户投诉";
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const id = row.id;
      getCustomerComplaint(id).then(response => {
        this.form = response.data;
        this.open = true;
        this.title = "修改客户投诉";
      });
    },
黄卓's avatar
黄卓 committed
322 323 324 325 326 327 328 329
    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
330 331 332 333 334 335 336 337 338 339 340
    /** 提交按钮 */
    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
341
            this.handle.dialogVisible = false
yanghao's avatar
yanghao committed
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
            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) {
382
      for (const customer of this.customerSelect) {
yanghao's avatar
yanghao committed
383 384 385 386 387 388 389 390 391
        if (customer.id === customerId) {
          return customer.name;
        }
      }
      return '找不到客户:' + customerId;
    }
  }
};
</script>