| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- <template>
- <div>
- <el-button
- size="small"
- type="primary"
- @click="isCheck"
- class="inline-16 normal-btn-width"
- >{{ $t("查 重") }}</el-button
- >
- <el-dialog
- :title="$t('重复客户')"
- :visible.sync="dialogTableVisible"
- append-to-body
- width="1000px"
- >
- <div slot="title" class="dialog-title">
- <span class="title-text">{{ $t("重复客户") }}</span>
- <p style="font-size: 14px; color: red">
- {{ $t("已存在重复客户不可继续创建") }}
- </p>
- </div>
- <tableLayout
- :layout="tablecols"
- :data="list"
- :opwidth="200"
- height="calc(100vh - 550px)"
- :width="true"
- :custom="true"
- >
- <template v-slot:customcol="scope">
- <div v-if="scope.column.columnname === 'tag'">
- <div
- v-for="item in scope.column.data.tag_sys"
- :key="item.index"
- style="float: left; margin-left: 5px; margin-bottom: 5px"
- >
- <el-tag color="#3874F6" size="mini" type="primary" effect="dark">
- <span>{{ $t(item) }}</span>
- </el-tag>
- </div>
- <div
- v-for="item in scope.column.data.tag"
- :key="item.index"
- style="float: left; margin-left: 5px; margin-bottom: 5px"
- >
- <el-tag color="#FA8C16" size="mini" type="warning" effect="dark">
- <span>{{ $t(item) }}</span>
- </el-tag>
- </div>
- </div>
- <div v-else-if="scope.column.columnname === 'leader'">
- <span>{{
- scope.column.data.leader
- ? scope.column.data.leader.length !== 0
- ? scope.column.data.leader[0].name
- : "--"
- : "--"
- }}</span>
- </div>
- <p v-else>
- <span v-if="scope.column.data[scope.column.columnname]">
- <span :style="{color:scope.column.data.chars[0][scope.column.columnname] && scope.column.data[scope.column.columnname].includes(scope.column.data.chars[0][scope.column.columnname])?'red':'#666'}">
- {{scope.column.data[scope.column.columnname]}}
- </span>
- </span>
- <span v-else>
- --
- </span>
- </p>
- </template>
- </tableLayout>
- <div class="container normal-panel" style="text-align: right">
- <el-pagination
- background
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="currentPage"
- :page-sizes="[20, 50, 100, 200]"
- :page-size="20"
- layout="total,sizes, prev, pager, next, jumper"
- :total="total"
- ></el-pagination>
- </div>
- <span slot="footer" class="dialog-footer" v-if="creatShow">
- <el-button
- @click="dialogTableVisible = false"
- type="primary"
- size="small"
- class="normal-btn-width"
- >{{ $t("确 定") }}</el-button
- >
- <!-- <el-button :type="buttonTitle === '确定保存'?'warning':'primary'" @click="onCheck" size="small" class="normal-btn-width">{{buttonTitle}}</el-button>-->
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- export default {
- name: "customerCheck",
- props: ["data", "title"],
- data() {
- return {
- dialogTableVisible: false,
- list: [],
- tablecols: [],
- total: 0,
- currentPage: 0,
- duplicates: false,
- creatShow: false,
- message: "该客户疑似重复,是否确认创建客户?",
- buttonTitle: "确定创建",
- param: {
- id: 20221208172002,
- content: {
- sa_customersid: "",
- enterprisename: "",
- taxno: "",
- address: "",
- },
- },
- fields1: [],
- fields2: [],
- fields3: [],
- siteid:JSON.parse(sessionStorage.getItem('active_account')).siteid,
- };
- },
- methods: {
- async listData() {
- this.param.content.sa_customersid = 0;
- this.fields1.forEach((item) => {
- this.param.content[item] = this.data[item] || "";
- });
- this.fields2.forEach((item) => {
- this.param.content[item] = this.data[item] || "";
- });
- this.fields3.forEach((item) => {
- this.param.content[item] = this.data[item] || "";
- });
- const res = await this.$api.requested(this.param);
- if (res.code == 0) {
- this.tool.showMessage(res);
- } else {
- if (res.total > 0) {
- this.list = res.data;
- this.total = res.total;
- this.currentPage = res.pageNumber;
- this.dialogTableVisible = true;
- this.$emit("isDuplicate", "重复");
- } else {
- if (this.creatShow) {
- this.onSubmit();
- } else {
- this.$message({
- message: this.$t("无重复数据"),
- type: "success",
- });
- this.$emit("isDuplicate", "无重复数据");
- }
- }
- }
- },
- onCheck() {
- if (this.buttonTitle === "确定保存") {
- this.message = "该客户疑似重复,是否确认更新客户?";
- } else {
- this.message = "该客户疑似重复,是否确认创建客户?";
- }
- this.$confirm(this.$t(this.message), this.$t("提示"), {
- confirmButtonText: this.$t("确定"),
- cancelButtonText: this.$t("取消"),
- type: "warning",
- })
- .then(() => {
- this.duplicates = true;
- this.onSubmit();
- })
- .catch(() => {
- this.$message({
- type: "info",
- message: this.$t("已取消"),
- });
- });
- },
- async onSubmit() {
- if (this.data.contactsinfo.telephone) {
- this.data.contactsinfo.phonenumber = this.data.contactsinfo.telephone;
- this.data.contactsinfo.telephone = "";
- }
- const res = await this.$api.requested({
- id: 20221216184302,
- content: this.data,
- });
- this.tool.showMessage(res, () => {
- if (this.duplicates) {
- this.setTag(res.data.sa_customersid, "疑似重复");
- } else {
- this.$emit("onSuccess");
- /* this.setTag(res.data.sa_customersid,'')*/
- }
- });
- },
- async setTag(id, data) {
- const res = await this.$api.requested({
- id: 20220929090901,
- content: {
- ownertable: "sa_customers",
- ownerid: id,
- datatag: [data],
- },
- });
- this.dialogTableVisible = false;
- this.duplicates = false;
- this.$emit("onSuccess");
- },
- handleSizeChange(val) {
- // console.log(`每页 ${val} 条`);
- this.param.content.pageSize = val;
- this.listData();
- },
- handleCurrentChange(val) {
- // console.log(`当前页: ${val}`);
- this.param.content.pageNumber = val;
- this.listData();
- },
- /*查询规则*/
- isCheck() {
- this.$emit("onCheck");
- },
- async queryRule() {
- const res = await this.$api.requested({
- id: "20230410090502",
- content: {},
- });
- this.fields1 = res.data.custcheckrule.fields1;
- this.fields2 = res.data.custcheckrule.fields2;
- this.fields3 = res.data.custcheckrule.fields3;
- this.listData();
- },
- },
- created() {
- this.tablecols = this.tool.tabelCol(
- this.$route.name
- ).duplicatesCustomerTable.tablecols;
- },
- };
- </script>
- <style scoped>
- </style>
|