<template>
  <div class="app-container">
    <!-- 搜索工作栏 -->
    <el-form
      :model="queryParams"
      ref="queryForm"
      size="small"
      :inline="true"
      v-show="showSearch"
      label-width="68px"
    >
      <el-form-item :label="$t('客户编号')" prop="number">
        <el-input v-model.trim="queryParams.number" :placeholder="$t('请输入客户编号')" onkeyup="this.value=this.value.replace(/(^\s*)|(\s*$)/g,'')"  clearable @keyup.enter.native="handleQuery" />
      </el-form-item>
      <el-form-item :label="$t('客户名称')" prop="name">
        <el-input v-model.trim="queryParams.name" :placeholder="$t('请输入客户名称')" clearable @keyup.enter.native="handleQuery" onkeyup="this.value=this.value.replace(/(^\s*)|(\s*$)/g,'')"/>
      </el-form-item>
      <el-form-item :label="$t('客户等级')" prop="level">
        <el-select clearable  v-model="queryParams.level" multiple :placeholder="$t('请选择客户等级')" clearable size="small" @change="handleQuery">
          <el-option v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_LEVEL)"
                     :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="dict.value"/>
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('联系方式')">
        <el-input :placeholder="$t('请输入联系方式')" v-model.trim="queryParams.defaultContactPhone" onkeyup="this.value=this.value.replace(/(^\s*)|(\s*$)/g,'')"></el-input>
      </el-form-item>
      <el-form-item :label="$t('客户类别')" prop="level">
        <dict-selector :type="DICT_TYPE.CUSTOMER_TYPE" multiple  v-model="queryParams.type" @change="handleQuery"></dict-selector>
      </el-form-item>
      <el-form-item :label="$t('客户来源')" prop="source">
        <el-select clearable  v-model="queryParams.source" multiple :placeholder="$t('请选择客户来源')" clearable size="small" @change="handleQuery">
          <el-option v-for="dict in getDictDatas(DICT_TYPE.CUSTOMER_SOURCE)"
          multiple   :key="dict.value" :label="isChinese ? dict.label : dict.labelEn" :value="dict.value"/>
        </el-select>
      </el-form-item>
      <el-form-item :label="$t('国家')" prop="source">
        <el-select clearable  v-model="queryParams.country" :placeholder="$t('请选择国家')" multiple @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('客户状态')" prop="status">
        <el-select clearable  v-model="queryParams.status" multiple :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('创建时间')">
        <el-date-picker
          clearable
          v-model="dateRangeCreateTime"
          style="width: 240px"
          value-format="yyyy-MM-dd HH:mm:ss"
          type="datetimerange"
          range-separator="-"
          :start-placeholder="$t('开始日期')"
          :end-placeholder="$t('结束日期')"
        />
      </el-form-item>

      <el-form-item :label="$t('信用等级')" prop="department">
        <el-select clearable  v-model="queryParams.creditLevel" multiple @change="handleQuery">
          <el-option  v-for="(item,index) in creditList" :label="isChinese ? item.nameZh : item.nameEn" :key="index" :value="item.id" ></el-option>
        </el-select>
      </el-form-item>
      <el-form-item  :label="$t('市场获客')" prop="department">
        <dict-selector clearable multiple  :type="DICT_TYPE.ECW_CUSTOMER_RESOURCE_TYPE" v-model="queryParams.marketType" formatter="number" @change="handleQuery"></dict-selector>
      </el-form-item>
      <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:my-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:my-export']"
          >{{ $t("导出") }}</el-button
        >
      </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"
    >
      <el-table-column type="selection" width="55"> </el-table-column>
      <el-table-column :label="$t('客户编号')" align="center" prop="number">
        <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="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>
      <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>
      <el-table-column
        :label="$t('创建时间')"
        align="center"
        prop="createTime"
        width="180"
      >
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.createTime) }}</span>
        </template>
      </el-table-column>
      <el-table-column
        :label="$t('预计入公海时间')"
        align="center"
        prop="createTime"
        width="180"
      >
        <template v-slot="{ row }">
          <span>{{ parseTime(row.estimateEnterOpenSeaTime) }}</span>
        </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"
        class-name="small-padding fixed-width"
      >
        <template slot-scope="scope">
          <el-button
            size="mini"
            type="text"
            icon="el-icon-view"
            @click="handleView(scope.row)"
            v-hasPermi="['ecw:customer:my-query']"
            >{{ $t("查看") }}</el-button
          >
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
            @click="handleUpdate(scope.row)"
            v-hasPermi="['ecw:customer:my-update']"
            >{{ $t("修改") }}</el-button
          >
          <el-button
            size="mini"
            v-hasPermi="['ecw:customer:my-follow-up']"
            type="text"
            icon="el-icon-collection"
            @click="followUp(scope.row)"
            >{{ $t("跟进") }}</el-button
          >
          <el-button
            size="mini"
            type="text"
            icon="el-icon-user"
            v-hasPermi="['ecw:customer:my-customer-complaint']"
            @click="complaint(scope.row)"
            >{{ $t("客诉") }}</el-button
          >
          <el-button
            size="mini"
            type="text"
            icon="el-icon-delete"
            @click="handleDelete(scope.row)"
            v-hasPermi="['ecw:customer:my-delete']"
            >{{ $t("删除") }}</el-button
          >
          <el-button
            v-has-permi="['ecw:customer:my-postpone']"
            :disabled="scope.row.isInOpenSea"
            size="mini"
            type="text"
            icon="el-icon-user"
            @click="delay(scope.row)"
            >{{ $t("延期") }}</el-button
          >
          <!--lanbm 2024-05-26 添加的报价功能按钮,取消了权限控制-->
          <el-button
            size="mini"
            type="text"
            icon="el-icon-user"
            @click="quote(scope.row)"
            >{{ $t("报价") }}</el-button
          >
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination
      v-show="total > 0"
      :total="total"
      :page.sync="queryParams.pageNo"
      :limit.sync="queryParams.pageSize"
      @pagination="getList"
    />
    <customer-follow-list
      ref="customerFollowList"
      :customer-id="customerId"
      :id="customerId"
    ></customer-follow-list>
    <customer-complaints
      ref="customerComplaint"
      :customer-id.sync="customerId"
    ></customer-complaints>
    <transfer-customer
      :show.sync="show"
      :customer-ids.sync="selectCustomerList"
    ></transfer-customer>
  </div>
</template>

<script>
import {
  createCustomer,
  updateCustomer,
  deleteCustomer,
  getMyCustomerService,
  mineExporteExcel,
  mineExportExcel,
} from "@/api/ecw/customer";
import { getDictDatas, DICT_TYPE } from "@/utils/dict";
import upload from "@/components/ImageUpload";
import customerFollowList from "@/components/CustomerFollowList";
import customerComplaints from "@/components/customerComplaints";
import { listServiceUser } from "@/api/system/user";
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";
//lanbm 2024-05-26 add
import { getUserProfile } from "@/api/system/user";

export default {
  name: "EcwMycustomerserviceIndex",
  components: {
    Contacts,
    Template,
    upload,
    customerFollowList,
    customerComplaints,
    transferCustomer,
  },
  computed: {
    isChinese() {
      return this.$i18n.locale === "zh_CN";
    },
  },
  data() {
    return {
      show: false,
      creditList: [],
      countryList: [],
      customerServiceList: [],
      getDictDatas,
      DICT_TYPE,
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 客户列表
      list: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      dateRangeCreateTime: [],
      // 查询参数
      queryParams: {
        pageNo: 1,
        pageSize: 10,
        number: null,
        name: null,
        level: null,
        source: null,
        customerService: null,
        status: null,
        department: null,
        creditLevel: null,
        country: null,
        marketType: null,
      },
      // 表单参数
      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",
          },
        ],
        status: [
          {
            required: true,
            message: this.$t("客户状态不能为空"),
            trigger: "blur",
          },
        ],
        founder: [
          {
            required: true,
            message: this.$t("创建人不能为空"),
            trigger: "blur",
          },
        ],
      },
      // 网点
      nodeList: [],
      showLine: false,
      customerId: undefined,
      selectCustomerList: [],
      //lanbm 2024-05-26 添加参数
      userId:undefined,
    };
  },
  activated() {
    this.getList();
  },
  created() {
    this.getList();
    // getNodeList().then(r => {
    //   this.nodeList = r.data
    // })
    getCreditPage({ page: 1, rows: 999 }).then((r) => {
      this.creditList = r.data.list;
    });
    listServiceUser().then((r) => {
      this.customerServiceList = r.data;
    });
    getCountryListAll().then((r) => {
      this.countryList = r.data;
    });

    //获取用户id信息 lanbm 2024-05-23 add
    getUserProfile().then((res) => {
      this.userId = res.data.id;
    });
  },
  methods: {
    handleSelectionChange(val) {
      this.selectCustomerList = val.map((i) => i.id);
    },
    delay(row) {
      this.$router.push({ path: "/customer/delay", query: { id: row.id } });
    },
    countryFormatter(row, column, cellValue) {
      const country = this.countryList.find((e) => e.id === cellValue);
      return this.isChinese ? country?.nameZh : country?.nameEn;
    },
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 处理查询参数
      let params = { ...this.queryParams };
      this.addBeginAndEndTime(
        params,
        this.dateRangeCreateTime,
        "createTime",
        false
      );
      // 执行查询
      getMyCustomerService(params).then((response) => {
        this.list = response.data.list;
        this.total = response.data.total;
        this.loading = false;
      });
    },
    /** 取消按钮 */
    cancel() {
      this.open = false;
      this.reset();
    },
    /** 表单重置 */
    reset() {
      this.form = {
        id: undefined,
        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 = [];
      this.resetForm("queryForm");
      this.queryParams = {
        pageNo: 1,
        pageSize: 10,
        number: null,
        name: null,
        level: null,
        source: null,
        customerService: null,
        status: null,
        department: null,
        creditLevel: null,
        country: null,
      };
      this.handleQuery();
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.$router.push({
        path: "/customer/add-edit/0",
        query: { isCustomerServiceConfirmed: true },
      });
      // this.reset();
      // this.open = true;
      // this.title = this.$t("添加客户");
    },
    /** 查看按钮操作 */
    handleView(row) {
      this.$router.push("/customer/query/" + row.id);
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.$router.push("/customer/add-edit/" + 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("修改客户");
      // });
    },
    //报价
    quote(row) {
      //lanbm 2024-05-26 添加的报价功能按钮
      // 添加报价是判断客户所属客户经理,不是就不能报价
      if (row.customerService != this.userId) {
        this.$message.error(this.$t("此客户属于其他客户经理名下的客户。"));
        return;
      }
      //this.$router.push({path:'/offer/create',query:{id:row.id}})
      this.$router
        .push({ path: "/offer/create", query: { customer: row, type: 1 } })
        .then({
          //this.$refs.push({path:'/customer-contacts/select',query:{pageNo:1,pageSize:10,searchKey:row.defaultContactPhone}})
        });
    },
    selectAuthorityFn() {
      return (val) => {
        let t = val.split(":");
        t[t.length - 1] = this.authorityFn + t[t.length - 1];
        //console.log(t.join(":"));
        return t.join(":");
      };
    },
    /** 提交按钮 */
    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(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      // 处理查询参数
      // let params = {...this.queryParams};
      // params.pageNo = undefined;
      // params.pageSize = undefined;
      // this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // // 执行导出
      this.$modal
        .confirm(this.$t("是否确认导出我的客户数据项?"))
        .then(() => {
          mineExportExcel().then(() => {
            this.$message.success(
              this.$t("已加入导出队列,请稍后在下载日志中下载")
            );
          });
        })
        .catch(() => {});
    },
    followUp(row) {
      this.customerId = row.id;
      this.$refs["customerFollowList"].customerFollow.dialogVisible = true;
    },
    complaint(row) {
      this.customerId = row.id;
      this.$nextTick(() => {
        this.$refs["customerComplaint"].handleAdd();
      });
    },
  },
  watch: {
    selectCustomerList(val) {
      if (val.length === 0) {
        this.getList();
        this.$refs.multipleTable.clearSelection();
      }
    },
  },
};
</script>