index.vue 38.7 KB
Newer Older
lanbaoming's avatar
lanbaoming committed
1 2 3 4

<template>
  <div class="app-container">
    <!-- 搜索工作栏 -->
yujinyao's avatar
yujinyao committed
5
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="130px">
lanbaoming's avatar
lanbaoming committed
6
      <el-form-item :label="$t('客户编号')" prop="number">
yujinyao's avatar
yujinyao committed
7 8 9 10 11 12 13
        <el-input
          v-model.trim="queryParams.number"
          :placeholder="$t('请输入客户编号')"
          clearable
          @keyup.enter.native="handleQuery"
          @input="queryParams.number=queryParams.number.replace(/\s+/g, '')"
        />
lanbaoming's avatar
lanbaoming committed
14 15
      </el-form-item>
      <el-form-item :label="$t('客户名称')" prop="name">
yujinyao's avatar
yujinyao committed
16 17 18 19 20 21 22
        <el-input
          v-model.trim="queryParams.name"
          :placeholder="$t('请输入客户名称')"
          clearable
          @keyup.enter.native="handleQuery"
          @input="queryParams.name=queryParams.name.replace(/\s+/g, '')"
        />
lanbaoming's avatar
lanbaoming committed
23
      </el-form-item>
yujinyao's avatar
yujinyao committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
      <el-form-item :label="$t('区号')">
        <el-select
          v-model="queryParams.areaCode"
          :placeholder="$t('请选择区号')"
        >
          <el-option
            v-for="(item, index) in countryList"
            :key="index"
            :label="
              item.nameShort +
              (isChinese ? item.nameZh : item.nameEn) +
              ' +' +
              item.tel
            "
            :value="item.tel"
          />
        </el-select>
      </el-form-item>
lanbaoming's avatar
lanbaoming committed
42
      <el-form-item :label="$t('联系方式')">
yujinyao's avatar
yujinyao committed
43 44 45 46 47
        <el-input
          :placeholder="$t('请输入联系方式')"
          v-model.trim="queryParams.defaultContactPhone"
          @input="queryParams.defaultContactPhone=queryParams.defaultContactPhone.replace(/\s+/g, '')"
        ></el-input>
lanbaoming's avatar
lanbaoming committed
48
      </el-form-item>
yujinyao's avatar
yujinyao committed
49 50 51 52 53
      <el-form-item :label="$t('部门')">
        <el-select v-model="queryParams.deptIds" :placeholder="$t('请选择部门')">
          <el-option v-for="item in deptList" :key="item.id" :label="item.name" :value="item.id"/>
        </el-select>
      </el-form-item>
lanbaoming's avatar
lanbaoming committed
54
      <el-form-item :label="$t('客户经理')" prop="customerService">
yujinyao's avatar
yujinyao committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68
        <el-select
          multiple
          clearable
          v-model="queryParams.customerService"
          :placeholder="$t('请选择客户经理')"
          size="small"
          @change="handleQuery"
        >
          <el-option
            v-for="dict in customerServiceList"
            :key="dict.id"
            :label="dict.nickname"
            :value="dict.id"
          />
lanbaoming's avatar
lanbaoming committed
69 70 71
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('客户来源')" prop="source">
yujinyao's avatar
yujinyao committed
72 73 74 75 76 77 78 79
        <el-select
          multiple
          clearable
          v-model="queryParams.source"
          :placeholder="$t('请选择客户来源')"
          size="small"
          @change="handleQuery"
        >
yujinyao's avatar
yujinyao committed
80
          <el-option
yujinyao's avatar
yujinyao committed
81 82 83 84 85
            v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_SOURCE)"
            :key="dict.value"
            :label="isChinese ? dict.label : dict.labelEn"
            :value="dict.value"
          />
lanbaoming's avatar
lanbaoming committed
86 87
        </el-select>
      </el-form-item>
yujinyao's avatar
yujinyao committed
88 89 90
      <el-form-item :label="$t('客户类别')" prop="level">
        <dict-selector
          multiple
91
          clearable
yujinyao's avatar
yujinyao committed
92 93 94 95
          :type="DICT_TYPE.CUSTOMER_TYPE"
          v-model="queryParams.type"
          @change="handleQuery"
        ></dict-selector>
96
      </el-form-item>
yujinyao's avatar
yujinyao committed
97 98 99 100 101 102 103 104 105 106 107
      <el-form-item :label="$t('角色')">
        <dict-selector
          multiple
          clearable
          :type="DICT_TYPE.CUSTOMER_ROLE"
          v-model="queryParams.role"
          formatter="number"
          @change="handleQuery"
          :placeholder="$t('请选择')"
        ></dict-selector>
      </el-form-item>
yujinyao's avatar
yujinyao committed
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
      <el-form-item :label="$t('客户状态')" prop="status">
        <el-select
        multiple
          clearable
          v-model="queryParams.status"
          :placeholder="$t('请选择客户状态')"
          size="small"
          @change="handleQuery"
        >
          <el-option
            v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_STATUS)"
            :key="dict.value"
            :label="isChinese ? dict.label : dict.labelEn"
            :value="dict.value"
          />
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('国籍')" prop="country">
        <el-select
          multiple
          clearable
          v-model="queryParams.country"
          :placeholder="$t('请选择')"
          @change="handleQuery"
        >
          <el-option
            v-for="dict in countryList"
            :key="dict.id"
            :label="isChinese ? dict.nameZh : dict.nameEn"
            :value="parseInt(dict.id)"
          />
        </el-select>
      </el-form-item>
yujinyao's avatar
yujinyao committed
141 142 143 144 145 146 147 148 149 150
      <el-form-item :label="$t('出货渠道')">
        <dict-selector
          multiple
          clearable
          :type="DICT_TYPE.ECW_CUSTOMER_TRANSPORT_TYPE"
          v-model="queryParams.transportType"
          formatter="number"
          @change="handleQuery"
        ></dict-selector>
      </el-form-item>
yujinyao's avatar
yujinyao committed
151

yujinyao's avatar
yujinyao committed
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
      <el-form-item :label="$t('业务国家')" v-show="showSearch">
        <el-select
          multiple
          clearable
          v-model="queryParams.busiCountryIds"
          :placeholder="$t('请选择')"
          @change="handleQuery"
        >
          <el-option
            v-for="dict in countryList"
            :key="dict.id"
            :label="isChinese ? dict.nameZh : dict.nameEn"
            :value="parseInt(dict.id)"
          />
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('常用提货网点')" v-show="showSearch">
        <el-select multiple v-model="queryParams.pickupPoints">
          <el-option
            v-for="item in getNodeLists"
            :key="item.id"
            :value="item.id"
            :label="isChinese ? item.titleZh : item.titleEn"
          ></el-option>
        </el-select>
      </el-form-item>
yujinyao's avatar
yujinyao committed
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
      <el-form-item :label="$t('创建人')" v-show="showSearch">
        <el-select v-model="queryParams.founder">
          <el-option
            v-for="item in allSimplList"
            :key="item.id"
            :label="item.nickname"
            :value="item.id"
          >
          </el-option>
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('创建时间')" v-show="showSearch">
        <el-date-picker
          type="datetimerange"
          clearable
          v-model="dateRangeCreateTime"
          style="width: 240px"
          value-format="yyyy-MM-dd HH:mm:ss"
          range-separator="-"
          :start-placeholder="$t('开始日期')"
          :end-placeholder="$t('结束日期')"
        />
      </el-form-item>
yujinyao's avatar
yujinyao committed
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
      <el-form-item :label="$t('入公海时间')" v-show="showSearch">
        <el-date-picker
          type="datetimerange"
          clearable
          v-model="enterOpenSeaTime"
          style="width: 240px"
          value-format="yyyy-MM-dd HH:mm:ss"
          range-separator="-"
          :start-placeholder="$t('开始日期')"
          :end-placeholder="$t('结束日期')"
        />
      </el-form-item>
      <el-form-item :label="$t('业绩类型')" v-show="showSearch">
        <el-select clearable v-model="queryParams.isNew">
          <el-option :label="$t('新客户')" :value="true" />
          <el-option :label="$t('老客户')" :value="false" />
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('年度发货量')" v-show="showSearch">
        <el-input
          v-model.trim="weightYearly.value"
          :placeholder="$t('请输入数字')"
          clearable
          @keyup.enter.native="handleQuery"
225
          @input="weightYearly.value=weightYearly.value.replace(/\s+/g, '')"
yujinyao's avatar
yujinyao committed
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
        >
          <template slot="prepend">
            <dict-selector
              :type="DICT_TYPE.CUSTOMER_QUERY_NUMBER_FIELD"
              defaultable
              v-model="weightYearly.key"
              class="w-50"
            />
          </template>
        </el-input>
      </el-form-item>
      <el-form-item :label="$t('商品类别')" v-show="showSearch">
        <el-select
          @change="handleSelectProductType"
          multiple
          v-model="queryParams.productTypes"
yujinyao's avatar
yujinyao committed
242
          :placeholder="$t('请选择')"
yujinyao's avatar
yujinyao committed
243 244 245 246 247 248 249 250 251 252 253 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 279 280 281 282 283 284 285 286 287 288 289
        >
          <el-option
            :label="item.titleZh"
            :value="item.id"
            v-for="item in productTypeList"
            :key="item.id"
          />
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('商品名称')" v-show="showSearch">
        <el-select
          multiple
          filterable
          clearable
          v-model="queryParams.productIds"
          :placeholder="$t('请选择商品名称')"
        >
          <el-option
            :label="item.titleZh"
            :value="parseInt(item.id)"
            v-for="item in productList"
            :key="item.id"
          />
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('主要竞争对手')" v-show="showSearch">
        <el-select
          clearable
          multiple
          v-model="queryParams.competitorIds"
          :placeholder="$t('请选择')"
          @change="handleQuery"
        >
          <el-option
            v-for="item in competitorList"
            :key="item.id"
            :label="item.name"
            :value="item.id"
          />
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('年度发货次数')" v-show="showSearch">
        <el-input
          v-model.trim="numYearly.value"
          :placeholder="$t('请输入数字')"
          clearable
          @keyup.enter.native="handleQuery"
290
          @input="numYearly.value=numYearly.value.replace(/\s+/g, '')"
yujinyao's avatar
yujinyao committed
291 292 293 294 295 296 297 298 299 300 301
        >
          <template slot="prepend">
            <dict-selector
              :type="DICT_TYPE.CUSTOMER_QUERY_NUMBER_FIELD"
              defaultable
              v-model="numYearly.key"
              class="w-50"
            />
          </template>
        </el-input>
      </el-form-item>
yujinyao's avatar
yujinyao committed
302
      <el-form-item :label="$t('推介人')" v-show="showSearch">
yujinyao's avatar
yujinyao committed
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
        <el-select
          clearable
          remote
          :remote-method="remoteMethod"
          v-model="queryParams.promoter"
          :placeholder="$t('请输入推介人')"
          filterable
        >
          <el-option
            v-for="item in customerSelectFn"
            :key="item.id"
            :label="item.name"
            :value="item.id"
          >
          </el-option>
        </el-select>
      </el-form-item>
余金瑶's avatar
余金瑶 committed
320 321 322 323 324 325
      <el-form-item :label="$t('入仓确认')" v-show="showSearch">
        <el-select clearable v-model="queryParams.arrivalConfirm">
          <el-option :label="$t('是')" :value="1" />
          <el-option :label="$t('否')" :value="0" />
        </el-select>
      </el-form-item>
yujinyao's avatar
yujinyao committed
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
      <el-form-item :label="$t('控货无收货人')" v-show="showSearch">
        <el-switch v-model="queryParams.noConsignee" />
      </el-form-item>
      <el-form-item :label="$t('默认付款')" v-show="showSearch">
        <el-switch v-model="queryParams.defaultPay" />
      </el-form-item>
      <el-form-item :label="$t('是否显示提单价格')" v-show="showSearch">
        <el-switch v-model="queryParams.isShowTidanPrice" />
      </el-form-item>
      <el-form-item :label="$t('归属时间')" v-show="showSearch">
        <el-date-picker
          type="datetimerange"
          clearable
          v-model="customerServiceConfirmedTime"
          style="width: 240px"
          value-format="yyyy-MM-dd HH:mm:ss"
          range-separator="-"
          :start-placeholder="$t('开始日期')"
          :end-placeholder="$t('结束日期')"
        />
      </el-form-item>
      <el-form-item :label="$t('首次成交时间')" v-show="showSearch">
        <el-date-picker
          type="datetimerange"
          clearable
          v-model="firstDealTime"
          style="width: 240px"
          value-format="yyyy-MM-dd HH:mm:ss"
          range-separator="-"
          :start-placeholder="$t('开始日期')"
          :end-placeholder="$t('结束日期')"
        />
      </el-form-item>
      <el-form-item :label="$t('获取方式')" v-show="showSearch">
        <el-select
zhengyi's avatar
zhengyi committed
361
          v-model="queryParams.getMethod"
yujinyao's avatar
yujinyao committed
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
          multiple
          :placeholder="$t('请选择')"
        >
          <el-option
            v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_GET_METHOD)"
            :key="dict.value"
            :label="isChinese ? dict.label : dict.labelEn"
            :value="parseInt(dict.value)"
          />
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('创建入口')" v-show="showSearch">
        <el-select
          v-model="queryParams.createFroms"
          multiple
          :placeholder="$t('请选择')"
        >
          <el-option
            v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_FROM)"
            :key="dict.value"
            :label="isChinese ? dict.label : dict.labelEn"
            :value="parseInt(dict.value)"
          />
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('结算方式')" v-show="showSearch">
        <el-select
          v-model="queryParams.balances"
          multiple
          :placeholder="$t('请选择结算方式')"
        >
          <el-option
            v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_BALANCE)"
            :key="dict.value"
            :label="isChinese ? dict.label : dict.labelEn"
            :value="parseInt(dict.value)"
          />
        </el-select>
      </el-form-item>
lanbaoming's avatar
lanbaoming committed
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
      <el-form-item>
        <el-button type="primary" icon="el-icon-search" @click="handleQuery">{{$t('搜索')}}</el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">{{$t('重置')}}</el-button>
      </el-form-item>
    </el-form>

    <!-- 操作工具栏 -->
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
                   v-hasPermi="['ecw:customer:distribution-create']">{{$t('新增')}}</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:distribution-export']">{{$t('导出')}}</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-col :span="1.5" >
          <el-button :disabled="selectCustomerList.length === 0"  type="primary" size="mini" @click="batchTransferShow = true;"
                     v-hasPermi="['ecw:customer:distribution-transfer']">{{$t('批量移交')}}</el-button>
        </el-col>
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <!-- 列表 -->
    <el-table ref="multipleTable" v-loading="loading" :data="list" @selection-change="handleSelectionChange">
yujinyao's avatar
yujinyao committed
428 429
      <el-table-column type="selection" width="55" fixed></el-table-column>
      <el-table-column :label="$t('客户编号')" align="center" prop="number">
lanbaoming's avatar
lanbaoming committed
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
        <template v-slot="{row}">
            {{row.number}}
        </template>
      </el-table-column>
      <el-table-column :label="$t('客户名称')" align="center" prop="name" >
        <template v-slot="{row}">
          <p style="display:inline-block;white-space: pre-wrap;">{{$l(row, 'name')}}</p>
        </template>
      </el-table-column>
      <el-table-column :label="$t('客户状态')" align="center" prop="status">
        <template slot-scope="scope">
          <dict-tag :type="DICT_TYPE.CUSTOMER_STATUS" :value="scope.row.status" />
        </template>
      </el-table-column>
      <el-table-column :label="$t('主联系人')" prop="defaultContactName"></el-table-column>
      <el-table-column :label="$t('主联系方式')" prop="defaultContactPhone">
        <template v-slot="{row}">
          +{{row.defaultContactPhone}} <br/>
          <contacts :id="row.id" >
            <el-button  type="text">更多</el-button>
          </contacts>
        </template>
      </el-table-column>
余金瑶's avatar
余金瑶 committed
453
      <el-table-column :label="$t('客户类别')" align="center" prop="status">
454 455 456 457 458 459
        <template slot-scope="{ row }">
          {{ getDictDatas2(DICT_TYPE.CUSTOMER_TYPE, (row.type||'').split(',')).map(e => isChinese ? e.label : e.labelEn).join(', ')}}
<!--          <dict-tag-->
<!--            :type="DICT_TYPE.CUSTOMER_TYPE"-->
<!--            :value="scope.row.type"-->
<!--          />-->
余金瑶's avatar
余金瑶 committed
460 461 462
        </template>
      </el-table-column>
      <el-table-column :label="$t('角色')" align="center" prop="status">
zhengyi's avatar
zhengyi committed
463 464 465 466 467 468
        <template slot-scope="{ row }">
          {{ getDictDatas2(DICT_TYPE.CUSTOMER_ROLE, (row.roles||'').split(',')).map(e => isChinese ? e.label : e.labelEn).join(', ')}}
<!--          <dict-tag-->
<!--            :type="DICT_TYPE.CUSTOMER_ROLE"-->
<!--            :value="scope.row.roles"-->
<!--          />-->
余金瑶's avatar
余金瑶 committed
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
        </template>
      </el-table-column>
      <el-table-column :label="$t('客户经理')" align="center" prop="customerServiceName"></el-table-column>
      <el-table-column :label="$t('国籍')" align="center" prop="country" :formatter="countryFormatter"></el-table-column>
      <el-table-column :label="$t('出货渠道')" align="center">
        <template slot-scope="{ row }">
          {{ channel(row.transportType) }}
        </template>
      </el-table-column>
      <el-table-column :label="$t('客户来源')">
        <template slot-scope="scope">
          <dict-tag
            :type="DICT_TYPE.CUSTOMER_SOURCE"
            :value="scope.row.source"
          />
        </template>
      </el-table-column>
      <el-table-column :label="$t('业务国家')">
        <template slot-scope="{ row }">
          {{ getBusiCountryNames(row.busiCountryIds) }}
        </template>
      </el-table-column>
      <el-table-column :label="$t('常用提货网点')">
        <template slot-scope="{ row }">
          {{ getPickupPointNames(row.pickupPoints) }}
        </template>
      </el-table-column>
      <el-table-column :label="$t('年度发货量')" align="center">
        <template slot-scope="{ row }">
          {{ row.weightYearly }}
        </template>
      </el-table-column>
      <el-table-column :label="$t('主营类别')">
        <template slot-scope="{ row }">
          {{ getProductTypeNames(row.productType) }}
        </template>
      </el-table-column>
      <el-table-column :label="$t('主要竞争对手')" prop="competitorNames">
      </el-table-column>
      <el-table-column :label="$t('年度发货次数')" align="center">
        <template slot-scope="{ row }">
          {{ row.numYearly }}
        </template>
      </el-table-column>
      <el-table-column :label="$t('推介人')">
        <template slot-scope="{ row }">
          {{ getPromoterName(row.promoter) }}
        </template>
      </el-table-column>
      <el-table-column :label="$t('入公海时间')" align="center" width="160">
        <template v-slot="{ row }">
          {{ parseTime( row.enterOpenSeaTime ? row.enterOpenSeaTime : row.estimateEnterOpenSeaTime)}}
        </template>
      </el-table-column>
      <el-table-column :label="$t('入仓确认')" align="center">
        <template slot-scope="scope">
          <el-tag type="success" v-if="scope.row.arrivalConfirm == 1">{{ $t('') }}</el-tag>
526
          <el-tag type="info" v-else>{{ $t('') }}</el-tag>
余金瑶's avatar
余金瑶 committed
527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
        </template>
      </el-table-column>
      <el-table-column :label="$t('控货无收货人')" align="center">
        <template slot-scope="scope">
          <el-switch v-model="scope.row.noConsignee" disabled />
        </template>
      </el-table-column>
      <el-table-column :label="$t('默认付款')" align="center">
        <template slot-scope="scope">
          <el-switch v-model="scope.row.defaultPay" disabled />
        </template>
      </el-table-column>
      <el-table-column :label="$t('归属时间')" width="160" align="center">
        <template slot-scope="scope">
          {{ parseTime(scope.row.customerServiceConfirmedTime) }}
        </template>
      </el-table-column>
      <el-table-column :label="$t('首次成交时间')" width="160" align="center">
        <template slot-scope="scope">
          {{ parseTime(scope.row.firstDealTime) }}
        </template>
      </el-table-column>
      <el-table-column :label="$t('获取方式')" align="center">
        <template slot-scope="scope">
          <dict-tag
            :type="DICT_TYPE.CUSTOMER_GET_METHOD"
zhengyi's avatar
zhengyi committed
553
            :value="scope.row.getMethod"
余金瑶's avatar
余金瑶 committed
554 555 556 557 558 559
          />
        </template>
      </el-table-column>
      <el-table-column :label="$t('创建人')"  prop="createUsername" align="center">
      </el-table-column>
      <el-table-column :label="$t('创建时间')" align="center" width="160">
lanbaoming's avatar
lanbaoming committed
560 561 562 563
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.createTime) }}</span>
        </template>
      </el-table-column>
余金瑶's avatar
余金瑶 committed
564 565 566 567
      <el-table-column :label="$t('最后更新时间')" align="center" width="160">
        <template slot-scope="scope">
          <span >{{ parseTime(scope.row.updateTime) }}</span>
        </template>
lanbaoming's avatar
lanbaoming committed
568
      </el-table-column>
余金瑶's avatar
余金瑶 committed
569
      <el-table-column width="200px" :label="$t('操作')" align="center" fixed="right">
lanbaoming's avatar
lanbaoming committed
570 571 572 573 574 575 576 577 578 579
        <template slot-scope="scope">
          <router-link :to="'/customer/query/' + scope.row.id">
            <el-button v-has-permi="['ecw:customer:distribution-view']" size="mini" style="margin-right: 10px" type="text" >查看</el-button>
          </router-link>
          <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
                     v-hasPermi="['ecw:customer:distribution-update']">{{$t('编辑')}}</el-button>
          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
                     v-hasPermi="['ecw:customer:distribution-delete']">{{$t('删除')}}</el-button>
          <el-button size="mini" type="text" icon="el-icon-delete" @click="distribution(scope.row)"
                     v-hasPermi="['ecw:customer:distribution-customer-service']">{{$t('分配客服')}}</el-button>
yujinyao's avatar
yujinyao committed
580 581 582 583 584 585 586 587
          <el-button
            v-has-permi="['ecw:customer:setting']"
            size="mini"
            type="text"
            icon="el-icon-user"
            @click="handleSetting(scope.row)"
            >{{ $t("设置") }}</el-button
          >
lanbaoming's avatar
lanbaoming committed
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
        </template>
      </el-table-column>
    </el-table>
    <!--   移交 -->
    <el-dialog
      center
      :title="$t('客服')"
      :visible.sync="transferShow"
      width="30%">
      <div style="width: 100%;min-height: 200px;text-align: center;">
<!--        <el-radio-group v-model="service">-->
<!--          <el-radio style="margin: 5px;" v-for="(item,index) in customerServiceList" :key="index" :label="item.id">{{item.nickname}}</el-radio>-->
<!--        </el-radio-group>-->
        <el-select filterable v-model="service">
          <el-option v-for="(item,index) in customerServiceList" :key="index" :label="item.nickname" :value="item.id"></el-option>
        </el-select>
      </div>
      <span slot="footer" class="dialog-footer">
    <el-button @click="transferShow = false">{{$t('取 消')}}</el-button>
    <el-button type="primary" @click="transferFn">{{$t('确 定')}}</el-button>
  </span>
    </el-dialog>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
                @pagination="getList"/>
    <transfer-customer :show.sync="batchTransferShow" :customer-ids.sync="selectCustomerList"></transfer-customer>
yujinyao's avatar
yujinyao committed
614 615 616 617
    <customer-setting
      ref="customerSetting"
      @refresh="getList"
    ></customer-setting>
lanbaoming's avatar
lanbaoming committed
618 619 620 621 622 623
  </div>
</template>

<script>
import {
  createCustomer, updateCustomer, deleteCustomer, getCustomer, handOverCustomer,
yujinyao's avatar
yujinyao committed
624 625
  exportCustomerExcel, getCustomerToBeAssigned, waitDistributionExportExcel,
  competitorListAll
lanbaoming's avatar
lanbaoming committed
626
} from "@/api/ecw/customer";
zhengyi's avatar
zhengyi committed
627
import { getDictDatas, DICT_TYPE, getDictDatas2 } from '@/utils/dict';
lanbaoming's avatar
lanbaoming committed
628
import upload from '@/components/ImageUpload'
yujinyao's avatar
yujinyao committed
629
import {listServiceUser, listAllSimpl} from "@/api/system/user";
lanbaoming's avatar
lanbaoming committed
630 631 632 633 634
import {getCountryListAll} from "@/api/ecw/country";
import {getCreditPage} from "@/api/customer/credit";
import transferCustomer from "@/views/ecw/customer/transferCustomer";
import Template from "@/views/cms/template/index.vue";
import Contacts from "@/views/ecw/customer/components/contacts.vue";
yujinyao's avatar
yujinyao committed
635
import CustomerSetting from "../customer/components/customerSetting.vue";
636
import AreaCodeSelector from "@/components/AreaCodeSelector/index.vue";
yujinyao's avatar
yujinyao committed
637
import { getNodeList } from "@/api/ecw/node";
yujinyao's avatar
yujinyao committed
638
import { getCustomerSelect, changeCustomerDefaultPay, changeCustomerNoConsignee,changeCustomerDefaultBilling } from "@/api/ecw/customer";
yujinyao's avatar
yujinyao committed
639 640
import { getProductTypeList } from "@/api/ecw/productType";
import { getProductList } from "@/api/ecw/product";
yujinyao's avatar
yujinyao committed
641
import { listMySimpleDepts } from "@/api/system/dept";
yujinyao's avatar
yujinyao committed
642

lanbaoming's avatar
lanbaoming committed
643 644 645 646 647 648 649 650 651
export default {
  name: "EcwCustomertobeassignedIndex",
  activated() {
     this.getList()
    },
  components: {
    Contacts,
    Template,
    upload,
652
    transferCustomer,
yujinyao's avatar
yujinyao committed
653 654
    AreaCodeSelector,
    CustomerSetting
lanbaoming's avatar
lanbaoming committed
655 656 657 658 659
  },
  data() {
    return {
      batchTransferShow:false,
      getDictDatas,
zhengyi's avatar
zhengyi committed
660
      getDictDatas2,
lanbaoming's avatar
lanbaoming committed
661 662 663 664 665 666
      DICT_TYPE,
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 显示搜索条件
667
      showSearch: false,
lanbaoming's avatar
lanbaoming committed
668 669 670 671 672 673 674 675 676 677 678 679 680 681
      // 总条数
      total: 0,
      // 客户列表
      list: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      dateRangeCreateTime: [],
      customerServiceList:[],
      // 查询参数
      queryParams: {
        pageNo: 1,
        pageSize: 10,
yujinyao's avatar
yujinyao committed
682
        /*number: null,
lanbaoming's avatar
lanbaoming committed
683 684 685 686 687 688 689 690 691
        name: null,
        level: null,
        source: null,
        customerService: null,
        status: null,
        department: null,
        creditLevel:null,
        country:null,
        marketType:null,
692 693 694
        memberCode: null,
        memberName: null,
        memberMobile: null,
yujinyao's avatar
yujinyao committed
695
        memberAreaCode: null*/
lanbaoming's avatar
lanbaoming committed
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
        name: [{ required: true, message: this.$t('客户名称不能为空'), trigger: "blur" }],
        country: [{ required: true, message: this.$t('国家不能为空'), trigger: "blur" }],
        level: [{ required: true, message: this.$t('客户等级不能为空'), trigger: "blur" }],
        type: [{ required: true, message: this.$t('客户类别不能为空'), trigger: "blur" }],
        // createTime: [{ required: true, message: this.$t("创建时间不能为空"), trigger: "blur" }],
        source: [{ required: true, message: this.$t('客户来源不能为空'), trigger: "blur" }],
        customerService: [{ required: true, message: this.$t('客户经理不能为空'), trigger: "blur" }],
        status: [{ required: true, message: this.$t('客户状态不能为空'), trigger: "blur" }],
        founder: [{ required: true, message: this.$t('创建人不能为空'), trigger: "blur" }],
      },
      // 网点
      nodeList: [],
      showLine: false,
      service:undefined,//客服
      transferData:undefined,//移交数据
      transferShow:false,
      creditList:[],
      selectCustomerList:[],
yujinyao's avatar
yujinyao committed
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738
      countryList:[],
      enterOpenSeaTime: [],
      customerServiceConfirmedTime: [],
      firstDealTime: [],
      customerSelect: [],
      recommended: [],
      getNodeLists: [],
      allSimplList: [],
      weightYearly: {
        key: "eqNumberKey",
        value: "",
      },
      numYearly: {
        key: "eqNumberKey",
        value: "",
      },
      productTypeList: [],
      productList: [],
      competitorList: [],
      deptList: [],
lanbaoming's avatar
lanbaoming committed
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
    };
  },
  created() {
    getCountryListAll().then(r => {
      console.log(r,'国家')
      this.countryList = r.data
    })
    getCreditPage({page:1,rows:999}).then(r => {
      this.creditList = r.data.list
    })
    this.getList();
    listServiceUser().then(r=>{
      console.log(r,'客服');
      this.customerServiceList = r.data;
    })
    // getNodeList().then(r => {
    //   this.nodeList = r.data
    // })
yujinyao's avatar
yujinyao committed
757 758 759 760 761 762 763 764 765 766 767 768 769
    this.getCustomerSelect();
    getNodeList().then((r) => {
      this.getNodeLists = r.data;
    });
    listAllSimpl().then((r) => {
      this.allSimplList = r.data;
    });
    getProductTypeList().then((r) => {
      this.productTypeList = r.data;
    });
    competitorListAll().then((r) => {
      this.competitorList = r.data;
    })
yujinyao's avatar
yujinyao committed
770
    listMySimpleDepts().then(response => {
yujinyao's avatar
yujinyao committed
771 772
      this.deptList = response.data
    })
lanbaoming's avatar
lanbaoming committed
773
  },
yujinyao's avatar
yujinyao committed
774 775 776 777 778
  updated() {
    this.$nextTick(() => {
      this.$refs.multipleTable.doLayout()
    })
  },
lanbaoming's avatar
lanbaoming committed
779 780 781 782 783 784 785 786 787 788 789 790
  methods: {
    countryFormatter(row, column, cellValue) {
      const country = this.countryList.find((e) => e.id === cellValue)
      return this.isChinese ? country?.nameZh : country?.nameEn
    },
    handleSelectionChange(val){
      this.selectCustomerList = val.map(i => i.id);
    },
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 处理查询参数
yujinyao's avatar
yujinyao committed
791
      let params = {...this.queryParams, ...this.combinedQueryParams};
lanbaoming's avatar
lanbaoming committed
792 793 794 795 796 797 798 799
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime', false);
      // 执行查询
      getCustomerToBeAssigned(params).then(response => {
        this.list = response.data.list;
        this.total = response.data.total;
        this.loading = false;
      });
    },
yujinyao's avatar
yujinyao committed
800 801 802 803 804 805 806 807 808 809 810
    remoteMethod(val) {
      this.getCustomerSelect(val);
    },
    getCustomerSelect(val = "") {
      getCustomerSelect({ pageNo: 1, pageSize: 30, searchKey: val }).then(
        (res) => {
          this.customerSelect = res.data.list;
        }
      );
    },
    handleSelectProductType(val) {
yujinyao's avatar
yujinyao committed
811 812 813 814 815 816 817 818 819
      if (val && val.length >= 1) {
        this.queryParams.productIds = []
        getProductList({ typeIds: val }).then((r) => {
          this.productList = r.data
        });
      } else {
        this.queryParams.productIds = []
        this.productList = []
      }
yujinyao's avatar
yujinyao committed
820
    },
lanbaoming's avatar
lanbaoming committed
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
    /** 取消按钮 */
    cancel() {
      this.open = false;
      this.reset();
    },
    /** 表单重置 */
    reset() {
      this.form = {
        id: undefined,
        number: undefined,
        name: undefined,
        level: undefined,
        country: undefined,
        type: undefined,
        agentId: undefined,
        company: undefined,
        address: undefined,
        productType: undefined,
        productId: undefined,
        pickupPoint: undefined,
        memberId: undefined,
        birthday: undefined,
        balance: undefined,
        source: undefined,
        picture: undefined,
        customerService: undefined,
        customerContacts: [],
        customerLines: [],
        promoter: undefined,
        status: undefined,
        founder: undefined,
        department: undefined,
        invoiceTitle: undefined,
        licenseNumber: undefined,
        bank: undefined,
        bankNumber: undefined,
        project: undefined,
        billingAddress: undefined,
        billingTell: undefined,
        taxRate: undefined,
        remarks: undefined,
        arrivalConfirm: undefined,
        weightUnit: undefined,
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNo = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.dateRangeCreateTime = [];
yujinyao's avatar
yujinyao committed
875 876 877
      this.enterOpenSeaTime = []
      this.customerServiceConfirmedTime = []
      this.firstDealTime = []
lanbaoming's avatar
lanbaoming committed
878 879 880 881
      this.resetForm("queryForm");
      this.queryParams = {
        pageNo: 1,
        pageSize: 10,
yujinyao's avatar
yujinyao committed
882 883 884
      };
      this.weightYearly.value = "";
      this.numYearly.value = "";
lanbaoming's avatar
lanbaoming committed
885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972
      this.handleQuery();
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.$router.push('/customer/add-edit/0')
      // this.reset();
      // this.open = true;
      // this.title = this.$t("添加客户");
    },
    /** 查看按钮操作 */
    handleView(row) {
      this.$router.push('/customer/query/' + row.id)
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.$router.push('/customer/edit-distribution/' + row.id)
      // this.reset();
      // const id = row.id;
      // getCustomer(id).then(response => {
      //   this.form = { ...this.form, ...response.data };
      //   this.open = true;
      //   this.title = this.$t("修改客户");
      // });
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (!valid) {
          // return;
        }
        // 修改的提交
        if (this.form.id != null) {
          updateCustomer(this.form).then(response => {
            this.$modal.msgSuccess(this.$t('修改成功'));
            this.open = false;
            this.getList();
          });
          return;
        }
        // 添加的提交
        createCustomer(this.form).then(response => {
          this.$modal.msgSuccess(this.$t('新增成功'));
          this.open = false;
          this.getList();
        });
      });
    },
    /** 移交按钮操作 */
    handleDelete(row) {
      const id = row.id;
      this.$modal.confirm(this.$t('是否确认删除客户编号为"') + row.number + this.$t('"的数据项?')).then(function() {
        return deleteCustomer(id);
      }).then(() => {
        this.getList();
        this.$modal.msgSuccess(this.$t('删除成功'));
      }).catch(() => {});
    },
    //分配客服
    distribution(row){
      // this.service = row.customerService;
      // this.transferData = row;
      this.selectCustomerList = [row.id]
      this.batchTransferShow =true;
    },
    transferFn(){
      if(!this.service){
        return this.$message.warning(this.$t('请选择客户经理!'));
      }
      handOverCustomer({
        customerServiceId:this.service,
        customerIdList :[this.transferData.id]
      }).then(r=>{
        if(r.code === 0){
          this.transferShow = false;
          this.service = '';
          this.getList();
          this.$message.success(this.$t('移交成功!'));
        }
      })
    },
    /** 导出按钮操作 */
    handleExport() {
      this.$modal.confirm(this.$t('是否确认导出待分配客户数据项?')).then(response => {
        waitDistributionExportExcel().then(()=>{
          this.$message.success(this.$t('已加入导出队列,请稍后在下载日志中下载'))
        })
      }).catch(() => {});
    },
yujinyao's avatar
yujinyao committed
973 974 975 976 977
    handleSetting(row) {
      this.$refs['customerSetting'].dialogVisible = true
      this.$nextTick(_ => {
        this.$refs['customerSetting'].init(row.id)
      })
余金瑶's avatar
余金瑶 committed
978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
    },
    getBusiCountryNames(ids) {
      if (ids) {
        const idsArr = ids.split(',')
        const strArr = []
        this.countryList.forEach(item => {
          if (idsArr.includes(item.id.toString())) {
            strArr.push(this.isChinese ? item.nameZh : item.nameEn)
          }
        })
        return strArr.length > 0 ? strArr.join(',') : null
      } else {
        return null
      }
    },
    getPickupPointNames(ids) {
      if (ids) {
        const idsArr = ids.split(',')
        const strArr = []
        this.getNodeLists.forEach(item => {
          if (idsArr.includes(item.id.toString())) {
            strArr.push(this.isChinese ? item.titleZh : item.titleEn)
          }
        })
        return strArr.length > 0 ? strArr.join(',') : null
      } else {
        return null
      }
    },
    getProductTypeNames(ids) {
      if (ids) {
1009
        const idsArr = ids.toString().split(',')
余金瑶's avatar
余金瑶 committed
1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
        const strArr = []
        this.productTypeList.forEach(item => {
          if (idsArr.includes(item.id.toString())) {
            strArr.push(this.isChinese ? item.titleZh : item.titleEn)
          }
        })
        return strArr.length > 0 ? strArr.join(',') : null
      } else {
        return null
      }
    },
    getPromoterName(id) {
      if (id) {
        let strName = ''
        for(const item of this.customerSelectFn) {
          if (item.id == id) {
            strName = item.name
            break
          }
        }
        return strName
      } else {
        return null
      }
yujinyao's avatar
yujinyao committed
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
    },
    setDefaultPay() {
      changeCustomerDefaultPay({
        customerIdList: this.selectCustomerList,
        defaultPay: true
      }).then(_ => {
        this.$message.success(this.$t("操作成功"))
        this.getList()
      })
    },
    setNoConsignee() {
      changeCustomerNoConsignee({
        customerIdList: this.selectCustomerList,
        noConsigee: true
      }).then(_ => {
        this.$message.success(this.$t("操作成功"))
        this.getList()
      })
    },
    setDefaultBilling() {
      changeCustomerDefaultBilling({
        customerIdList: this.selectCustomerList,
        defaultBilling: true
      }).then(_ => {
        this.$message.success(this.$t("操作成功"))
        this.getList()
      })
    },
lanbaoming's avatar
lanbaoming committed
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
  },
  watch:{
    selectCustomerList(val){
      if(val.length === 0){
        this.getList()
        this.$refs.multipleTable.clearSelection();
      }
    },
  },
  computed:{
    isChinese(){
      return this.$i18n.locale === 'zh_CN'
    },
余金瑶's avatar
余金瑶 committed
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
    channel() {
      return (val) => {
        return !!val
          ? this.getDictDatas(this.DICT_TYPE.ECW_CUSTOMER_TRANSPORT_TYPE)
              .filter((i) => (val.split(",") || []).includes(i.value))
              .map((i) => (this.isChinese ? i.label : i.labelEn))
              .join("")
          : "";
      };
    },
yujinyao's avatar
yujinyao committed
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
    customerSelectFn() {
      if (this.recommended.length > 0) {
        let i = this.customerSelect.find(
          (item) => item.id === this.recommended[0].id
        );
        if (!i) {
          this.customerSelect.push(this.recommended[0]);
        }
        return this.customerSelect;
      } else {
        return this.customerSelect;
      }
    },
    combinedQueryParams() {
      let queryParams = {}
      if (this.enterOpenSeaTime && this.enterOpenSeaTime.length == 2) {
        queryParams.beginEnterOpenSeaTime = this.enterOpenSeaTime[0]
        queryParams.endEnterOpenSeaTime = this.enterOpenSeaTime[1]
      }
      if (this.customerServiceConfirmedTime && this.customerServiceConfirmedTime.length == 2) {
yujinyao's avatar
yujinyao committed
1105 1106
        queryParams.beginCustomerServiceConfirmedTime = this.customerServiceConfirmedTime[0]
        queryParams.endCustomerServiceConfirmedTime = this.customerServiceConfirmedTime[1]
yujinyao's avatar
yujinyao committed
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
      }
      if (this.dateRangeCreateTime && this.dateRangeCreateTime.length == 2) {
        queryParams.beginCreateTime = this.dateRangeCreateTime[0]
        queryParams.endCreateTime = this.dateRangeCreateTime[1]
      }
      if (this.firstDealTime && this.firstDealTime.length == 2) {
        queryParams.beginFirstDealTime = this.firstDealTime[0]
        queryParams.endFirstDealTime = this.firstDealTime[1]
      }
      if (this.weightYearly.value) {
        let key = 'eqWeightYearly'
        if (this.weightYearly.key == 'leNumberKey') {
          key = 'leWeightYearly'
        } else if (this.weightYearly.key == 'geNumberKey') {
          key = 'geWeightYearly'
        }
        queryParams[key] = this.weightYearly.value;
      }
      if (this.numYearly.value) {
        let key = 'eqNumYearly'
        if (this.numYearly.key == 'leNumberKey') {
          key = 'leNumYearly'
        } else if (this.numYearly.key == 'geNumberKey') {
          key = 'geNumYearly'
        }
        queryParams[key] = this.numYearly.value;
      }

      return queryParams;
    },
lanbaoming's avatar
lanbaoming committed
1137 1138 1139
  }
};
</script>