index.vue 47.3 KB
Newer Older
lanbaoming's avatar
lanbaoming committed
1 2 3
<template>
  <div class="app-container">
    <!-- 搜索工作栏 -->
yujinyao's avatar
yujinyao committed
4
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="130px">
lanbaoming's avatar
lanbaoming committed
5
      <el-form-item :label="$t('客户编号')" prop="number">
yujinyao's avatar
yujinyao committed
6 7 8 9 10 11 12
        <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
13 14
      </el-form-item>
      <el-form-item :label="$t('客户名称')" prop="name">
yujinyao's avatar
yujinyao committed
15 16 17 18 19 20 21
        <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
22
      </el-form-item>
yujinyao's avatar
yujinyao committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
      <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
41
      <el-form-item :label="$t('联系方式')">
yujinyao's avatar
yujinyao committed
42 43 44 45 46
        <el-input
          :placeholder="$t('请输入联系方式')"
          v-model.trim="queryParams.defaultContactPhone"
          @input="queryParams.defaultContactPhone=queryParams.defaultContactPhone.replace(/\s+/g, '')"
        ></el-input>
lanbaoming's avatar
lanbaoming committed
47
      </el-form-item>
yujinyao's avatar
yujinyao committed
48 49 50 51 52
      <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
53
      <el-form-item :label="$t('客户经理')" prop="customerService">
yujinyao's avatar
yujinyao committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67
        <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
68 69 70
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('客户来源')" prop="source">
yujinyao's avatar
yujinyao committed
71 72 73 74 75 76 77 78
        <el-select
          multiple
          clearable
          v-model="queryParams.source"
          :placeholder="$t('请选择客户来源')"
          size="small"
          @change="handleQuery"
        >
yujinyao's avatar
yujinyao committed
79
          <el-option
yujinyao's avatar
yujinyao committed
80 81 82 83 84
            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
85 86
        </el-select>
      </el-form-item>
yujinyao's avatar
yujinyao committed
87 88 89
      <el-form-item :label="$t('客户类别')" prop="level">
        <dict-selector
          multiple
90
          clearable
yujinyao's avatar
yujinyao committed
91 92 93 94
          :type="DICT_TYPE.CUSTOMER_TYPE"
          v-model="queryParams.type"
          @change="handleQuery"
        ></dict-selector>
95
      </el-form-item>
yujinyao's avatar
yujinyao committed
96 97 98 99 100 101 102 103 104 105 106
      <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
107 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
      <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
140 141 142 143 144 145 146 147 148 149
      <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
150

yujinyao's avatar
yujinyao committed
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
      <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
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
      <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
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
      <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"
224
          @input="weightYearly.value=weightYearly.value.replace(/\s+/g, '')"
yujinyao's avatar
yujinyao committed
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
        >
          <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
241
          :placeholder="$t('请选择')"
yujinyao's avatar
yujinyao committed
242 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
        >
          <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"
289
          @input="numYearly.value=numYearly.value.replace(/\s+/g, '')"
yujinyao's avatar
yujinyao committed
290 291 292 293 294 295 296 297 298 299 300
        >
          <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
301
      <el-form-item :label="$t('推介人')" v-show="showSearch">
yujinyao's avatar
yujinyao committed
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
        <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
319 320 321 322 323 324
      <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
325 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 361 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
      <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
          v-model="queryParams.getMethods"
          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
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
      <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="$router.push({path:'/customer/add-edit/0',query:{isCustomerServiceConfirmed:true,}})"
                   v-hasPermi="['ecw:customer: treat-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:treat-export']">{{$t('导出')}}</el-button>
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <!-- 列表 -->
yujinyao's avatar
yujinyao committed
420 421
    <el-table ref="multipleTable" v-loading="loading" :data="list" @selection-change="handleSelectionChange">
      <el-table-column type="selection" width="55" fixed></el-table-column>
余金瑶's avatar
余金瑶 committed
422
      <el-table-column :label="$t('客户编号')" align="center" fixed>
lanbaoming's avatar
lanbaoming committed
423
        <template v-slot="{row}">
余金瑶's avatar
余金瑶 committed
424 425 426
          <router-link :to="`/customer/query/${row.id}`" class="link-type">
            {{ row.number }}
          </router-link>
lanbaoming's avatar
lanbaoming committed
427 428
        </template>
      </el-table-column>
余金瑶's avatar
余金瑶 committed
429
      <el-table-column :label="$t('客户名称')" align="center" fixed>
lanbaoming's avatar
lanbaoming committed
430 431 432 433
        <template v-slot="{row}">
          <p style="display:inline-block;white-space: pre-wrap;">{{$l(row, 'name')}}</p>
        </template>
      </el-table-column>
余金瑶's avatar
余金瑶 committed
434
      <!--
lanbaoming's avatar
lanbaoming committed
435 436 437 438 439 440
      <el-table-column :label="$t('客户等级')" align="center" prop="vipLevelNameZh">
        <template slot-scope="scope">
          <dict-tag :type="DICT_TYPE.CUSTOMER_LEVEL" :value="scope.row.level" />
        </template>
      </el-table-column>
      <el-table-column :label="$t('信用等级')" :prop="isChinese ? 'creditLevelNameZh' : 'creditLevelNameEn'"></el-table-column>
余金瑶's avatar
余金瑶 committed
441
      -->
lanbaoming's avatar
lanbaoming committed
442 443 444 445 446 447 448 449 450 451 452 453 454 455
      <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
456 457 458 459 460 461 462 463 464 465 466 467 468 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 526
      <el-table-column :label="$t('客户类别')" align="center" prop="status">
        <template slot-scope="scope">
          <dict-tag
            :type="DICT_TYPE.CUSTOMER_TYPE"
            :value="scope.row.type"
          />
        </template>
      </el-table-column>
      <el-table-column :label="$t('角色')" align="center" prop="status">
        <template slot-scope="scope">
          <dict-tag
            :type="DICT_TYPE.CUSTOMER_ROLE"
            :value="scope.row.roles"
          />
        </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>
527
          <el-tag type="info" v-else>{{ $t('') }}</el-tag>
余金瑶's avatar
余金瑶 committed
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 553 554 555 556 557 558 559 560
        </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"
            :value="scope.row.getMethods"
          />
        </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
561 562 563 564
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.createTime) }}</span>
        </template>
      </el-table-column>
余金瑶's avatar
余金瑶 committed
565 566 567
      <el-table-column :label="$t('最后更新时间')" align="center" width="160">
        <template slot-scope="scope">
          <span >{{ parseTime(scope.row.updateTime) }}</span>
lanbaoming's avatar
lanbaoming committed
568 569
        </template>
      </el-table-column>
余金瑶's avatar
余金瑶 committed
570 571 572 573
      <el-table-column :label="$t('分配时间')" align="center" width="180">
        <template  v-slot="{row}">
          <span>{{ parseTime(row.customerServiceAssignedTime ) }}</span>
        </template>
lanbaoming's avatar
lanbaoming committed
574
      </el-table-column>
余金瑶's avatar
余金瑶 committed
575
      <el-table-column width="200px" :label="$t('操作')" align="center" fixed="right">
lanbaoming's avatar
lanbaoming committed
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
        <template slot-scope="scope">
          <router-link :to="'/customer/query/' + scope.row.id">
            <el-button v-has-permi="['ecw:customer:treat-view']" size="mini" style="margin-right: 10px" type="text" >查看</el-button>
          </router-link>
          <el-button size="mini" type="text"  @click="handleConfirmService(scope.row)"
                     v-hasPermi="['ecw:customer:treat-accept']">{{$t('确认接收')}}</el-button>
          <el-button size="mini" type="text"  @click="handOver(scope.row)"
                     v-hasPermi="['ecw:customer:treat-transfer']">{{$t('移交')}}</el-button>
           <router-link style="margin: 0 10px;" to="/offer/create">
             <el-button v-has-permi="['ecw:customer:treat-quoted-price']"  size="mini" type="text">
               {{$t('报价')}}
             </el-button>
           </router-link>
          <el-button size="mini" type="text"   @click="handleUpdate(scope.row)"
                     v-hasPermi="['ecw:customer:treat-perfect']">{{$t('完善')}}</el-button>
yujinyao's avatar
yujinyao committed
591 592 593 594 595 596 597 598 599
          <!-- <el-button  v-has-permi="['ecw:customer:treat-recovery']" size="mini"  type="text" @click="recovery(scope.row)" > {{$t('回收客户')}} </el-button>-->
          <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
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
        </template>

      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :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-col :span="12">
          <el-form-item :label="$t('客户名称')" prop="name">
            <el-input v-model="form.name" :placeholder="$t('请输入客户名称')" />
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('国家')" prop="country">
            <el-select v-model="form.country" :placeholder="$t('请选择国家')">
              <el-option v-for="dict in this.getDictDatas(DICT_TYPE.COMMON_STATUS)"
                         :key="dict.value" :label="dict.label" :value="parseInt(dict.value)" />
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('客户等级')" prop="level">
            <el-select v-model="form.level" :placeholder="$t('请选择客户等级')">
              <el-option v-for="dict in this.getDictDatas(DICT_TYPE.CUSTOMER_LEVEL)"
                         :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="parseInt(dict.value)" />
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('所属代理')" prop="agentId">
            <el-select v-model="form.agentId" :placeholder="$t('请选择所属代理')">
              <el-option v-for="dict in this.getDictDatas(DICT_TYPE.COMMON_STATUS)"
                         :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="parseInt(dict.value)" />
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('联系地址')" prop="address">
            <el-input v-model="form.address" :placeholder="$t('请输入联系地址')" />
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('客户类别')" prop="type">
            <el-select v-model="form.type" :placeholder="$t('请选择客户类别')">
              <el-option v-for="dict in this.getDictDatas(DICT_TYPE.CUSTOMER_TYPE)"
                         :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="dict.value" />
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('常用提货网点')" prop="pickupPoint">
            <el-select v-model="form.pickupPoint" :placeholder="$t('请输入常用提货网点')">
              <el-option :label="$t('请选择字典生成')" value="" />
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="12">

          <el-form-item :label="$t('公司名称')" prop="company">
            <el-input v-model="form.company" :placeholder="$t('请输入公司名称')" />
          </el-form-item>
        </el-col>
        <el-col :span="12">

          <el-form-item :label="$t('客户生日')" prop="birthday">
            <el-input v-model="form.birthday" :placeholder="$t('请输入客户生日')" />
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('产品类型')" prop="productType">
            <el-select v-model="form.productType" :placeholder="$t('请选择产品类型')">
              <el-option :label="$t('请选择字典生成')" value="" />
            </el-select>
          </el-form-item>
          <el-form-item :label="$t('产品id')" prop="productId">
            <el-input v-model="form.productId" :placeholder="$t('请输入产品id')" />
          </el-form-item>
        </el-col>
        <el-col :span="12">

          <el-form-item :label="$t('客户来源')" prop="source">
            <el-select v-model="form.source" :placeholder="$t('请选择客户来源')">
              <el-option v-for="dict in this.getDictDatas(DICT_TYPE.CUSTOMER_SOURCE)"
                         :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="parseInt(dict.value)" />
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="12">

          <el-form-item :label="$t('结算方式')" prop="balance">
            <el-select v-model="form.balance" :placeholder="$t('请选择结算方式')">
              <el-option v-for="dict in this.getDictDatas(DICT_TYPE.CUSTOMER_BALANCE)"
                         :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="parseInt(dict.value)" />
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="12">

          <el-form-item :label="$t('客户经理')" prop="customerService">
            <el-select v-model="form.customerService" :placeholder="$t('请选择客户经理')">
              <el-option v-for="dict in serviceStaffOptions"
                         :key="dict.id" :label="dict.nickname" :value="dict.id" />
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="12">

          <el-form-item :label="$t('图片')" prop="picture">
            <el-input v-model="form.picture" :placeholder="$t('请输入图片')" />
          </el-form-item>

        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('客户状态')" prop="status">
            <el-select v-model="form.status" :placeholder="$t('请选择客户状态')">
              <el-option v-for="dict in this.getDictDatas(DICT_TYPE.CUSTOMER_STATUS)"
                         :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="parseInt(dict.value)" />
            </el-select>
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('推介人')" prop="promoter">
            <el-input v-model="form.promoter" :placeholder="$t('请输入推介人')" />
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('创建人')" prop="founder">
            <el-input v-model="form.founder" :placeholder="$t('请输入创建人')" />
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('创建时间')" prop="founder">
            <el-input v-model="form.founder" :placeholder="$t('请输入创建人')" />
          </el-form-item>
        </el-col>
        <el-col :span="12">
          <el-form-item :label="$t('备注')" prop="remarks">
            <el-input v-model="form.remarks" :placeholder="$t('请输入备注')" />
          </el-form-item>
        </el-col>
        <el-col :span="24">
          <el-form-item :label="$t('到仓确认')" prop="arrivalConfirm">
            <el-switch v-model="form.arrivalConfirm" :active-value="0" :inactive-value="1" />
          </el-form-item>
        </el-col>
        <el-col :span="24">
          <el-form-item :label="$t('重货标准(CBM)')" prop="weightUnit">
            <el-input v-model="form.weightUnit" :placeholder="$t('请输入重货标准(CBM)')" />
          </el-form-item>
        </el-col>




        <el-form-item :label="$t('关联会员账号')" prop="memberId">
          <el-input v-model="form.memberId" :placeholder="$t('请输入关联会员账号')" />
        </el-form-item>

        <el-form-item :label="$t('部门')" prop="department">
          <el-input v-model="form.department" :placeholder="$t('请输入部门')" />
        </el-form-item>
        <el-form-item :label="$t('发票抬头')" prop="invoiceTitle">
          <el-input v-model="form.invoiceTitle" :placeholder="$t('请输入发票抬头')" />
        </el-form-item>
        <el-form-item :label="$t('纳税人识别号')" prop="licenseNumber">
          <el-input v-model="form.licenseNumber" :placeholder="$t('请输入纳税人识别号')" />
        </el-form-item>
        <el-form-item :label="$t('开户行')" prop="bank">
          <el-input v-model="form.bank" :placeholder="$t('请输入开户行')" />
        </el-form-item>
        <el-form-item :label="$t('账户')" prop="bankNumber">
          <el-input v-model="form.bankNumber" :placeholder="$t('请输入账户')" />
        </el-form-item>
        <el-form-item :label="$t('项目')" prop="project">
          <el-input v-model="form.project" :placeholder="$t('请输入项目')" />
        </el-form-item>
        <el-form-item :label="$t('开票地址')" prop="billingAddress">
          <el-input v-model="form.billingAddress" :placeholder="$t('请输入开票地址')" />
        </el-form-item>
        <el-form-item :label="$t('开票电话')" prop="billingTell">
          <el-input v-model="form.billingTell" :placeholder="$t('请输入开票电话')" />
        </el-form-item>
        <el-form-item :label="$t('税率')" prop="taxRate">
          <el-input v-model="form.taxRate" :placeholder="$t('请输入税率')" />
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitForm">{{$t('确 定')}}</el-button>
        <el-button @click="cancel">{{$t('取 消')}}</el-button>
      </div>
    </el-dialog>

    <!-- 移交 -->
    <!-- 对话框(添加 / 修改) -->
    <el-dialog :title="title" :visible.sync="openHandOver" width="500px" append-to-body>
      <el-form ref="handOverForm" :model="handOverForm" :rules="rules" label-width="80px">
        <el-form-item :label="$t('客户经理')" prop="customerServiceId">
          <el-select v-model="handOverForm.customerServiceId" :placeholder="$t('请选择客户经理')" clearable filterable>
            <el-option v-for="user in serviceStaffOptions"
                       :key="user.id" :value="user.id"
                       :label="user.nickname" />
          </el-select>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitHandOverForm">{{$t('确 定')}}</el-button>
        <el-button @click="cancelHandOver">{{$t('取 消')}}</el-button>
      </div>
    </el-dialog>
    <transfer-customer :show.sync="openHandOver" :customer-ids.sync="handOverForm.customerIdList"></transfer-customer>
yujinyao's avatar
yujinyao committed
815 816 817 818
    <customer-setting
      ref="customerSetting"
      @refresh="getList"
    ></customer-setting>
lanbaoming's avatar
lanbaoming committed
819 820 821 822 823 824 825 826 827 828
  </div>
</template>

<script>
import {
  updateCustomer,
  getCustomer,
  exportCustomerExcel,
  getWaitForConfirmList,
  confirm,
yujinyao's avatar
yujinyao committed
829 830
  waiteConfirmExportExcel, waiteConfirEexportExcel, recycleUnconfirmedCustomer,
  competitorListAll
lanbaoming's avatar
lanbaoming committed
831
} from "@/api/ecw/customer";
yujinyao's avatar
yujinyao committed
832
import { listServiceUser, listAllSimpl } from "@/api/system/user"
lanbaoming's avatar
lanbaoming committed
833 834 835 836 837 838 839
import { getDictDatas, DICT_TYPE } from '@/utils/dict'
import {CommonStatusEnum} from '@/utils/constants'
import {handOverCustomer} from "../../../api/ecw/customer";
import {getCountryListAll} from "@/api/ecw/country";
import {getCreditPage} from "@/api/customer/credit";
import transferCustomer from "@/views/ecw/customer/transferCustomer.vue";
import Contacts from "@/views/ecw/customer/components/contacts.vue";
yujinyao's avatar
yujinyao committed
840
import CustomerSetting from "../customer/components/customerSetting.vue";
841
import AreaCodeSelector from "@/components/AreaCodeSelector/index.vue";
yujinyao's avatar
yujinyao committed
842
import { getNodeList } from "@/api/ecw/node";
yujinyao's avatar
yujinyao committed
843
import { getCustomerSelect, changeCustomerDefaultPay, changeCustomerNoConsignee,changeCustomerDefaultBilling } from "@/api/ecw/customer";
yujinyao's avatar
yujinyao committed
844 845
import { getProductTypeList } from "@/api/ecw/productType";
import { getProductList } from "@/api/ecw/product";
yujinyao's avatar
yujinyao committed
846
import { listMySimpleDepts } from "@/api/system/dept";
lanbaoming's avatar
lanbaoming committed
847 848 849 850 851 852 853 854 855 856 857 858
export default {
  name: "EcwCustomerconfirmIndex",
  activated() {
    this.getList();
  },
  computed:{
    DICT_TYPE() {
      return DICT_TYPE
    },
    isChinese(){
      return this.$i18n.locale === 'zh_CN'
    },
余金瑶's avatar
余金瑶 committed
859 860 861 862 863 864 865 866 867 868
    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
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
    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
889 890
        queryParams.beginCustomerServiceConfirmedTime = this.customerServiceConfirmedTime[0]
        queryParams.endCustomerServiceConfirmedTime = this.customerServiceConfirmedTime[1]
yujinyao's avatar
yujinyao committed
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
      }
      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
921 922 923
  },
  components: {
    Contacts,
924
    transferCustomer,
yujinyao's avatar
yujinyao committed
925 926
    AreaCodeSelector,
    CustomerSetting
lanbaoming's avatar
lanbaoming committed
927 928 929 930 931 932 933 934
  },
  data() {
    return {
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 显示搜索条件
935
      showSearch: false,
lanbaoming's avatar
lanbaoming committed
936 937 938 939 940 941 942 943 944 945 946 947 948 949
      // 总条数
      total: 0,
      // 客户列表
      list: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      openHandOver: false,
      dateRangeCreateTime: [],
      // 查询参数
      queryParams: {
        pageNo: 1,
        pageSize: 10,
yujinyao's avatar
yujinyao committed
950
        /*number: null,
lanbaoming's avatar
lanbaoming committed
951 952 953 954 955 956 957 958 959
        name: null,
        level: null,
        source: null,
        customerService: null,
        status: null,
        department: null,
        creditLevel:null,
        country:null,
        marketType:null,
960 961 962
        memberCode: null,
        memberName: null,
        memberMobile: null,
yujinyao's avatar
yujinyao committed
963
        memberAreaCode: null*/
lanbaoming's avatar
lanbaoming committed
964 965 966 967 968 969 970 971 972 973 974 975 976
      },
      // 表单参数
      form: {},
      handOverForm: {},
      // 表单校验
      rules: {
        name: [{ required: true, message: this.$t('客户名称不能为空'), trigger: "blur" }],
        weightUnit: [{ required: true, message: this.$t('重货标准(CBM)不能为空'), trigger: "blur" }],
      },

      serviceStaffOptions: [],
      customerServiceList:[],
      countryList:[],
yujinyao's avatar
yujinyao committed
977
      creditList:[],
yujinyao's avatar
yujinyao committed
978
      selectCustomerList: [],
yujinyao's avatar
yujinyao committed
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997
      enterOpenSeaTime: [],
      customerServiceConfirmedTime: [],
      firstDealTime: [],
      customerSelect: [],
      recommended: [],
      getNodeLists: [],
      allSimplList: [],
      weightYearly: {
        key: "eqNumberKey",
        value: "",
      },
      numYearly: {
        key: "eqNumberKey",
        value: "",
      },
      productTypeList: [],
      productList: [],
      competitorList: [],
      deptList: [],
lanbaoming's avatar
lanbaoming committed
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
    };
  },
  created() {
    this.getList();
    getCreditPage({page:1,rows:999}).then(r => {
      this.creditList = r.data.list
    })
    // 获得客服人员列表
    listServiceUser().then(response => {
      this.serviceStaffOptions = response.data;
    })
    listServiceUser().then(r=>{
      this.customerServiceList = r.data;
    })
    getCountryListAll().then(r => {
      this.countryList = r.data
    })
yujinyao's avatar
yujinyao committed
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
    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
1028
    listMySimpleDepts().then(response => {
yujinyao's avatar
yujinyao committed
1029 1030
      this.deptList = response.data
    })
lanbaoming's avatar
lanbaoming committed
1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
  },
  methods: {
    // recovery(row){
    //   console.log(row,'row')
    //   this.$confirm(this.$t('是否要回收当前{name}',row), '提示', {
    //     confirmButtonText: '确定',
    //     cancelButtonText: '取消',
    //     type: 'warning'
    //   }).then(() => {
    //     recycleUnconfirmedCustomer({customerId:row.id}).then(r =>{
    //       this.$message.success(this.$t('回收成功。'))
    //     })
    //   }).catch(() => {
    //     this.$message.info(this.$t('已取消'))
    //   });
    // },
    getDictDatas,
    countryFormatter(row, column, cellValue) {
      const country = this.countryList.find((e) => e.id === cellValue)
      return this.isChinese ? country?.nameZh : country?.nameEn
    },
yujinyao's avatar
yujinyao committed
1052 1053 1054
    handleSelectionChange(val){
      this.selectCustomerList = val.map(i => i.id);
    },
lanbaoming's avatar
lanbaoming committed
1055 1056 1057 1058
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 处理查询参数
yujinyao's avatar
yujinyao committed
1059 1060
      let params = {...this.queryParams, ...this.combinedQueryParams};
      // this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime', false);
lanbaoming's avatar
lanbaoming committed
1061 1062 1063 1064 1065 1066 1067
      // 执行查询
      getWaitForConfirmList(params).then(response => {
        this.list = response.data.list;
        this.total = response.data.total;
        this.loading = false;
      });
    },
yujinyao's avatar
yujinyao committed
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
    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
1079 1080 1081 1082 1083 1084 1085 1086 1087
      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
1088
    },
lanbaoming's avatar
lanbaoming committed
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 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 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148
    /** 取消按钮 */
    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,
        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");
    },
    /** 表单重置 */
    resetHandOverForm() {
      this.form = {
        customerIdList: undefined,
        customerServiceId: undefined
      };
      this.resetForm("handOverForm");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNo = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.dateRangeCreateTime = [];
yujinyao's avatar
yujinyao committed
1149 1150 1151
      this.enterOpenSeaTime = []
      this.customerServiceConfirmedTime = []
      this.firstDealTime = []
lanbaoming's avatar
lanbaoming committed
1152 1153 1154 1155
      this.resetForm("queryForm");
      this.queryParams = {
        pageNo: 1,
        pageSize: 10,
yujinyao's avatar
yujinyao committed
1156 1157 1158
      };
      this.weightYearly.value = "";
      this.numYearly.value = "";
lanbaoming's avatar
lanbaoming committed
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
      this.handleQuery();
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.open = true;
      this.title = this.$t('添加客户');
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const id = row.id;
      this.$router.push({path:'/customer/perfect/'+id,query:{isCustomerServiceConfirmed:true,}});
      // getCustomer(id).then(response => {
      //   this.form = response.data;
      //   this.open = true;
      //   this.title = this.$t("完善客户");
      // });
    },
    /** 修改按钮操作 */
    handleConfirmService(row) {
      const id = row.id;
      this.$modal.confirm(this.$t('是否确认接收客户')+'["' + row.name + '"]?').then(function() {
        return confirm({"customerId": id});
      }).then(() => {
        this.getList();
        this.$modal.msgSuccess(this.$t('接收成功'));
      }).catch(() => {});

    },
    /** 修改按钮操作 */
    handOver(row) {
      // this.resetHandOverForm();
      this.openHandOver = true;

      this.handOverForm.customerIdList   = [row.id];
    },

    /** 提交按钮 */
    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;
        }
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const id = row.id;
      this.$modal.confirm(this.$t('是否确认删除客户编号为"') + id + this.$t('"的数据项?')).then(function() {
          return deleteCustomer(id);
        }).then(() => {
          this.getList();
          this.$modal.msgSuccess(this.$t('删除成功'));
        }).catch(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      // 处理查询参数
      // let params = {...this.queryParams};
      // params.pageNo = undefined;
      // params.pageSize = undefined;
      // this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // 执行导出
      this.$modal.confirm(this.$t('是否确认导出我的待接受客户数据项?')).then(() => {
        waiteConfirEexportExcel().then(()=>{
          this.$message.success(this.$t('已加入导出队列,请稍后在下载日志中下载'))
        })
        }).catch(() => {});
    },



    /** 提交按钮 */
    submitHandOverForm() {
      // 移交的提交
      handOverCustomer(this.handOverForm).then(response => {
        this.$modal.msgSuccess(this.$t('移交成功'));
        this.openHandOver = false;
        this.getList();
      });
    },

    /** 取消按钮 */
    cancelHandOver() {
      this.openHandOver = false;
      this.handOverForm = {
        customerId: undefined,
        customerIdList : undefined
      };
    },
yujinyao's avatar
yujinyao committed
1259 1260 1261 1262 1263
    handleSetting(row) {
      this.$refs['customerSetting'].dialogVisible = true
      this.$nextTick(_ => {
        this.$refs['customerSetting'].init(row.id)
      })
余金瑶's avatar
余金瑶 committed
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
    },
    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) {
        const idsArr = ids.split(',')
        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
1320
    }
lanbaoming's avatar
lanbaoming committed
1321 1322 1323
  }
};
</script>