snow 2 years ago
parent
commit
d23f1701d8

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/0.js


File diff suppressed because it is too large
+ 1 - 1
dist/static/js/app.js


+ 5 - 5
src/apis/components/search-supplier.js

@@ -1,7 +1,7 @@
-import http from "@/apis/axios";
-const api = "admin/";
+import http from '@/apis/axios'
+const api = 'admin/'
 export default {
   // 列表
-  list: (data, params) => http(api + "supplierlist", data, "post", params),
-};
-   
+  list: (data, params) => http(api + 'supplerlist', data, 'post', params)
+}
+

+ 1 - 1
src/store/modules/user.js

@@ -682,7 +682,7 @@ function initRouter(arr) {
 
   IndexRoute.push({
     path: "*",
-    redirect: "/404",
+    redirect: "/welcome/dashboard",
   })
 
   window.vm.$router.addRoutes(IndexRoute);

+ 157 - 151
src/views/sellOut/bargainList/columns.js

@@ -1,284 +1,291 @@
 
-//是否定制
+// 是否定制
 const options1 = [
-  { id: "0", name: "否" },
-  { id: "1", name: "是" },
+  { id: '0', name: '否' },
+  { id: '1', name: '是' }
 ]
-//专属类型
+// 专属类型
 const options2 = [
-  { id: "0", name: "非泰康" },
-  { id: "1", name: "泰康" },
+  { id: '0', name: '非泰康' },
+  { id: '1', name: '泰康' }
 ]
-//销售权限
+// 销售权限
 const options3 = [
-  { id: "0", name: "无销售权限" },
-  { id: "1", name: "有销售权限" },
+  { id: '0', name: '无销售权限' },
+  { id: '1', name: '有销售权限' }
 ]
 
-//是否库存品
+// 是否库存品
 const options4 = [
-  { id: "0", name: "非库存品" },
-  { id: "1", name: "库存品" },
+  { id: '0', name: '非库存品' },
+  { id: '1', name: '库存品' }
 ]
-//是否启用实时金价
+// 是否启用实时金价
 const options5 = [
-  { id: "0", name: "否" },
-  { id: "1", name: "是" },
+  { id: '0', name: '否' },
+  { id: '1', name: '是' }
 ]
-//供货区域
+// 供货区域
 const options6 = [
-  { id: "1", name: "全国" },
-  { id: "2", name: "全国除偏远" },
+  { id: '1', name: '全国' },
+  { id: '2', name: '全国除偏远' }
 ]
-//是否启用阶梯
+// 是否启用阶梯
 const options7 = [
-  { id: "0", name: "否" },
-  { id: "1", name: "是" },
+  { id: '0', name: '否' },
+  { id: '1', name: '是' }
 ]
-//有无工差
+// 有无工差
 const options8 = [
-  { id: "0", name: "无工差" },
-  { id: "1", name: "有工差" },
+  { id: '0', name: '无工差' },
+  { id: '1', name: '有工差' }
 ]
-//配置要求
-const options9 = ["证书", "包装盒", "绒布袋", "标签", "其他"]
-//付款方式
+// 配置要求
+const options9 = ['证书', '包装盒', '绒布袋', '标签', '其他']
+// 付款方式
 const options10 = [
-  { id: "0", name: "现结" },
-  { id: "1", name: "月清" },
-  { id: "2", name: "双月清" },
+  { id: '0', name: '现结' },
+  { id: '1', name: '月清' },
+  { id: '2', name: '双月清' }
 ]
-//发货方式
+// 发货方式
 const options11 = [
-  { id: "0", name: "公司自提" },
-  { id: "1", name: "供应商包邮" },
+  { id: '0', name: '公司自提' },
+  { id: '1', name: '供应商包邮' }
 ]
 
 const options12 = [
-  { id: "0", name: "一地" },
-  { id: "1", name: "多地" },
+  { id: '0', name: '一地' },
+  { id: '1', name: '多地' }
 ]
 const statusList = [
-  { id: "0", label: "待业务主管审核", type: "warning" },
-  { id: "1", label: "业务主管通过", type: "success" },
-  { id: "2", label: "待财务专员审批", type: "warning" },
-  { id: "3", label: "业务主管驳回", type: "danger" },
-  { id: "4", label: "待财务主管审核", type: "warning" },
+  { id: '0', label: '待业务主管审核', type: 'warning' },
+  { id: '1', label: '业务主管通过', type: 'success' },
+  { id: '2', label: '待财务专员审批', type: 'warning' },
+  { id: '3', label: '业务主管驳回', type: 'danger' },
+  { id: '4', label: '待财务主管审核', type: 'warning' },
   // { id: "5", label: "专员驳回", type: "" },
-  { id: "6", label: "财务主管通过", type: "success" },
-  { id: "7", label: "待BOSS审批", type: "warning" },
-  { id: "8", label: "财务主管驳回", type: "danger" },
-  { id: "9", label: "boss通过", type: "success" },
-  { id: "10", label: "boss越线通过", type: "" },
-  { id: "11", label: "boss驳回", type: "danger" },
-  { id: "12", label: "取消议价", type: "info" },//已选完商品,取消议价
+  { id: '6', label: '财务主管通过', type: 'success' },
+  { id: '7', label: '待BOSS审批', type: 'warning' },
+  { id: '8', label: '财务主管驳回', type: 'danger' },
+  { id: '9', label: 'boss通过', type: 'success' },
+  { id: '10', label: 'boss越线通过', type: '' },
+  { id: '11', label: 'boss驳回', type: 'danger' },
+  { id: '12', label: '取消议价', type: 'info' } // 已选完商品,取消议价
 ]
 const editColumns = [
   {
-    prop: "bargainNo",
-    label: "议价单编号",
+    prop: 'bargainNo',
+    label: '议价单编号',
     span: 6
   },
 
   {
-    prop: "bidsNo",
-    label: "反馈商品编号",
+    prop: 'bidsNo',
+    label: '反馈商品编号',
     span: 6
   },
   {
-    prop: "infoNo",
-    label: "竞价单编号",
+    prop: 'infoNo',
+    label: '竞价单编号',
     span: 6
   },
   {
-    prop: "status",
-    label: "状态",
-    _slot_: "status",
+    prop: 'status',
+    label: '状态',
+    _slot_: 'status',
     span: 6
   },
   {
-    prop: "creater",
-    label: "创建人",
+    prop: 'creater',
+    label: '创建人',
     span: 6
   },
 
   {
-    prop: "is_addrs",
-    label: "是否多地",
-    _slot_: "is_addrs",
+    prop: 'is_addrs',
+    label: '是否多地',
+    _slot_: 'is_addrs',
     span: 4
   },
   {
-    prop: "is_custom",
-    label: "是否定制",
-    _slot_: "is_custom",
+    prop: 'is_custom',
+    label: '是否定制',
+    _slot_: 'is_custom',
     span: 4
   },
   {
-    prop: "good_num",
-    label: "购买数量",
-    _slot_: "good_num",
+    prop: 'good_num',
+    label: '购买数量',
+    _slot_: 'good_num',
     span: 4
   },
   {
-    prop: "rate_status",
-    label: "预计通过节点",
-    _slot_: "rate_status",
+    prop: 'rate_status',
+    label: '预计通过节点',
+    _slot_: 'rate_status',
     span: 6
   },
   {
-    prop: "addtime",
-    label: "添加时间",
+    prop: 'addtime',
+    label: '添加时间',
     span: 6
   },
   {
-    prop: "origin_addr",
-    label: "产地",
+    prop: 'origin_addr',
+    label: '产地',
     span: 6
   },
   {
-    prop: "result_info",
-    label: "议价原因",
+    prop: 'result_info',
+    label: '议价原因',
     span: 12
   },
   {
-    prop: "bargain_remark",
-    label: "议价备注",
+    prop: 'bargain_remark',
+    label: '议价备注',
     span: 24
   },
 
   {
-    prop: "sale_price",
-    label: "议价前售价",
+    prop: 'sale_price',
+    label: '议价前售价',
     append: '元',
     span: 6
   },
   {
-    prop: "after_price",
-    label: "议价后售价",
+    prop: 'after_price',
+    label: '议价后售价',
     append: '元',
     span: 6
   },
 
   {
-    prop: "cost_before_price",
-    label: "议价前工艺费",
+    prop: 'cost_before_price',
+    label: '议价前工艺费',
     append: '元',
     span: 6
   },
 
   {
-    prop: "cost_after_price",
-    label: "议价后工艺费",
+    prop: 'cost_after_price',
+    label: '议价后工艺费',
     append: '元',
     span: 6
-  },
+  }
 
 ]
 
 const costArr = [
   {
-    prop: "cert_fee",
-    label: "成本证书费",
+    prop: 'cert_fee',
+    label: '成本证书费',
     append: '元',
     span: 6
   },
   {
-    prop: "pakge_fee",
-    label: "成本包装费",
+    prop: 'pakge_fee',
+    label: '成本包装费',
     append: '元',
     span: 6
   },
   {
-    prop: "cost_fee",
-    label: "成本工艺费",
+    prop: 'cost_fee',
+    label: '成本工艺费',
     append: '元',
     span: 6
   },
   {
-    prop: "mark_fee",
-    label: "成本加标费",
+    prop: 'mark_fee',
+    label: '成本加标费',
     append: '元',
     span: 6
   },
 
   {
-    prop: "demo_fee",
-    label: "成本打样费",
+    prop: 'demo_fee',
+    label: '成本打样费',
     append: '元',
     span: 6
   },
   {
-    prop: "open_fee",
-    label: "成本开模费",
+    prop: 'open_fee',
+    label: '成本开模费',
     append: '元',
     span: 6
   },
   {
-    prop: "delivery_fee",
-    label: "成本物流费",
+    prop: 'delivery_fee',
+    label: '成本物流费',
     append: '元',
     span: 6
   },
   {
-    prop: "nake_fee",
-    label: "成本裸价",
+    prop: 'nake_fee',
+    label: '成本裸价',
     append: '元',
     span: 6
   },
   {
-    prop: "total_fee",
-    label: "采购成本合计",
+    prop: 'total_fee',
+    label: '采购成本合计',
     append: '元',
     span: 24
-  },
+  }
 ]
 
 const bargainingArr = [
 
-
   {
-    prop: "before_rate",
-    label: "议价前毛利率",
+    prop: 'before_rate',
+    label: '议价前毛利率',
     append: '%',
     span: 12
   },
 
-
   {
-    prop: "after_rate",
-    label: "议价后毛利率",
+    prop: 'after_rate',
+    label: '议价后毛利率',
     append: '%',
     span: 12
-  },
-
-
+  }
 
 ]
 
 const listCol = [
   {
-    prop: "bargainNo",
-    label: "议价编号",
-    width: "155"
+    prop: 'bargainNo',
+    label: '议价编号',
+    width: '155'
   },
 
   {
-    prop: "infoNo",
-    label: "竞价单编号",
-    width: "155"
+    prop: 'infoNo',
+    label: '竞价单编号',
+    width: '155'
   },
 
   {
-    prop: "status",
-    label: "状态",
-    _slot_: "status",
-    width: "120px",
+    prop: 'status',
+    label: '状态',
+    _slot_: 'status',
+    width: '120px'
   },
   {
-    prop: "bidsNo",
-    label: "采返商品编号",
-    width: "155"
+    prop: 'bidsNo',
+    label: '采返商品编号',
+    width: '155'
+  },
+
+  {
+    prop: 'companyNo',
+    label: '业务公司编号',
+    width: '155px'
+  },
+  {
+    prop: 'companyName',
+    label: '业务公司名称',
+    width: '155px'
   },
   // {
   //   prop: "good_img",
@@ -287,16 +294,16 @@ const listCol = [
   //   "width": "50"
   // },
   {
-    prop: "good_name",
-    label: "商品名称",
-    _slot_: "good_name",
-    "min-width": "180"
+    prop: 'good_name',
+    label: '商品名称',
+    _slot_: 'good_name',
+    'min-width': '180'
   },
   {
-    prop: "can",
-    label: "分类",
-    _slot_: "can",
-    "min-width": "125"
+    prop: 'can',
+    label: '分类',
+    _slot_: 'can',
+    'min-width': '125'
   },
 
   // {
@@ -307,33 +314,32 @@ const listCol = [
 
   // },
   {
-    prop: "company_name",
-    label: "申请人部门",
-    minWidth: "150px",
+    prop: 'company_name',
+    label: '申请人部门',
+    minWidth: '150px'
   },
 
   {
-    prop: "creater",
-    label: "申请人",
-    "width": "75"
+    prop: 'creater',
+    label: '申请人',
+    'width': '75'
   },
 
-
   {
-    prop: "",
-    label: "操作",
-    fixed: "right",
+    prop: '',
+    label: '操作',
+    fixed: 'right',
     _noset_: true,
-    _slot_: "operation",
-    width: 50,
-  },
+    _slot_: 'operation',
+    width: 50
+  }
 ]
 
 const rate_status_options = [
   { id: '0', label: '全部无法通过' },
   { id: '1', label: '业务主管通过' },
   { id: '2', label: '财务主管通过' },
-  { id: '3', label: 'boss通过' },
+  { id: '3', label: 'boss通过' }
 ]
 
 export {
@@ -354,4 +360,4 @@ export {
   costArr,
   statusList,
   rate_status_options
-}
+}

+ 2 - 1
src/views/sellOut/bargainList/index.vue

@@ -379,8 +379,9 @@ export default {
       
       const res = await asyncRequest.list({
         ...this.parmValue,
+        companyNo: this.currentCompany,
         customer_code: Array.isArray(this.parmValue.customer_code) ? this.parmValue.customer_code[0] : "",
-        needRela: true
+        noRelation: true
       });
 
       if (res && res.code === 0 && res.data) {

+ 186 - 187
src/views/serviceParam/business/addEdit.vue

@@ -1,28 +1,28 @@
 <template>
   <el-dialog
+    v-loading="loading"
     :title="title"
     :center="true"
     align="left"
     top="12vh"
     width="900px"
-    @close="showModelThis = false"
     :close-on-click-modal="false"
     :visible.sync="showModelThis"
-    v-loading="loading"
     append-to-body
     element-loading-text="拼命加载中"
     element-loading-spinner="el-icon-loading"
     element-loading-background="rgba(0, 0, 0, 0.8)"
+    @close="showModelThis = false"
   >
     <el-card style="margin-top: -20px">
       <el-row :gutter="10">
         <el-col :span="24">
           <el-form
+            ref="ruleForm"
             label-position="right"
             label-width="110px"
             :model="ruleForm"
             :rules="rulesThis"
-            ref="ruleForm"
           >
             <el-row>
               <el-col :span="12">
@@ -33,8 +33,8 @@
                     :disabled="isDetail !== '003'"
                     placeholder="请选择组织/企业"
                   >
-                    <el-option label="组织" value="0"></el-option>
-                    <el-option label="企业" value="1"></el-option>
+                    <el-option label="组织" value="0" />
+                    <el-option label="企业" value="1" />
                   </el-select>
                 </el-form-item>
               </el-col>
@@ -49,7 +49,7 @@
                 </el-form-item>
               </el-col>
 
-              <el-col :span="24" v-if="ruleForm.region === '0'">
+              <el-col v-if="ruleForm.region === '0'" :span="24">
                 <el-form-item label="组织名称:" prop="name">
                   <el-input
                     v-model="ruleForm.name"
@@ -59,22 +59,21 @@
                   />
                 </el-form-item>
               </el-col>
-              <el-col :span="24" v-if="ruleForm.region === '1'">
+              <el-col v-if="ruleForm.region === '1'" :span="24">
                 <el-form-item label="企业名称:" prop="companyName">
                   <el-input
                     v-model="ruleForm.companyName"
                     :disabled="isDetail == '007'"
                     placeholder="企业名称"
                     maxlength="50"
-                    ><template v-if="organName" slot="prepend">{{
-                      organName
-                    }}</template></el-input
-                  >
+                  ><template v-if="organName" slot="prepend">{{
+                    organName
+                  }}</template></el-input>
                 </el-form-item>
               </el-col>
               <el-col
-                :span="24"
                 v-if="ruleForm.region === '1'"
+                :span="24"
                 style="padding: 0 0 16px 0"
               >
                 <el-table
@@ -118,7 +117,7 @@
                     label="邮箱"
                     show-overflow-tooltip
                   />
-                  <el-table-column fixed="right" v-if="isDetail !== '007'">
+                  <el-table-column v-if="isDetail !== '007'" fixed="right">
                     <template slot="header" slot-scope="scope">
                       <span>操作</span>
                       <el-tooltip
@@ -139,7 +138,7 @@
                         <i
                           class="el-icon-edit tb-icon"
                           @click="openEdit(scope.$index, scope.row)"
-                        ></i>
+                        />
                       </el-tooltip>
                       <el-tooltip
                         effect="dark"
@@ -149,13 +148,13 @@
                         <i
                           class="el-icon-delete tb-icon"
                           @click="openDelete(scope.$index)"
-                        ></i>
+                        />
                       </el-tooltip>
                     </template>
                   </el-table-column>
                 </el-table>
                 <contact-modal
-                  :showModel="editModel"
+                  :show-model="editModel"
                   :index="findex"
                   :sitem="sitem"
                   @cancel="editModel = false"
@@ -167,7 +166,7 @@
                   v-if="isDetail !== '007'"
                   type="primary"
                   @click="submitForm"
-                  >保 存
+                >保 存
                 </el-button>
                 <el-button @click="showModelThis = false">{{
                   isDetail == "007" ? "关 闭" : "取 消"
@@ -180,174 +179,174 @@
     </el-card>
   </el-dialog>
 </template>
-   <script>
-import resToken from "@/mixins/resToken";
-import asyncRequest from "@/apis/service/serviceParam/business";
-import contactModal from "./contactModal";
+<script>
+import resToken from '@/mixins/resToken'
+import asyncRequest from '@/apis/service/serviceParam/business'
+import contactModal from './contactModal'
 export default {
-  name: "goodsBack",
-  props: ["showModel", "isDetail", "id", "organ", "kh"],
-  mixins: [resToken],
+  name: 'GoodsBack',
   components: {
-    contactModal,
+    contactModal
   },
+  mixins: [resToken],
+  props: ['showModel', 'isDetail', 'id', 'organ', 'kh'],
   data() {
     return {
       findex: -1,
       sitem: null,
       editModel: false,
       loading: false,
-      title: "添加企业/组织",
+      title: '添加企业/组织',
       showModelThis: this.showModel,
       ruleForm: {},
       rulesThis: this.rules,
-      organName: "",
+      organName: '',
       tableData: [],
       old_tableData: [],
       rules: {
         region: [
           {
             required: true,
-            message: "请选择组织/企业",
-            trigger: "change",
-          },
+            message: '请选择组织/企业',
+            trigger: 'change'
+          }
         ],
         name: [
           {
             required: true,
-            message: "组织名称不能为空",
-            trigger: "blur",
-          },
+            message: '组织名称不能为空',
+            trigger: 'blur'
+          }
         ],
         companyName: [
           {
             required: false,
-            message: "企业名称不能为空",
-            trigger: "blur",
-          },
-        ],
-      },
-    };
+            message: '企业名称不能为空',
+            trigger: 'blur'
+          }
+        ]
+      }
+    }
   },
   watch: {
-    showModel: function (val) {
-      this.showModelThis = val;
+    showModel: function(val) {
+      this.showModelThis = val
       if (val) {
-        this.initForm();
+        this.initForm()
       }
     },
     showModelThis(val) {
       if (!val) {
-        this.$emit("cancel");
+        this.$emit('cancel')
       }
-    },
+    }
   },
   methods: {
     async initForm() {
-      this.loading = true;
-      this.tableData = [];
-      this.old_tableData = [];
-      this.organName = "";
-      await this.resetForm();
-      if (this.isDetail === "003") {
-        this.title = "添加企业/组织";
-        this.rulesThis = this.rules;
-      } else if (this.isDetail === "005") {
-        this.title = "修改企业/组织";
-        this.rulesThis = this.rules;
-        await this.initData();
+      this.loading = true
+      this.tableData = []
+      this.old_tableData = []
+      this.organName = ''
+      await this.resetForm()
+      if (this.isDetail === '003') {
+        this.title = '添加企业/组织'
+        this.rulesThis = this.rules
+      } else if (this.isDetail === '005') {
+        this.title = '修改企业/组织'
+        this.rulesThis = this.rules
+        await this.initData()
       } else {
-        this.title = "查看企业/组织";
-        this.rulesThis = {};
-        await this.initData();
+        this.title = '查看企业/组织'
+        this.rulesThis = {}
+        await this.initData()
       }
-      this.setOrganName();
-      this.loading = false;
+      this.setOrganName()
+      this.loading = false
     },
     setOrganName() {
-      this.organName = "";
+      this.organName = ''
       if (this.organ && this.organ.length > 1) {
         this.organ.forEach((e) => {
-          if (e.id !== "0") {
-            console.log(e.name);
-            this.organName += e.name;
-            this.ruleForm.pid = e.id;
+          if (e.id !== '0') {
+            console.log(e.name)
+            this.organName += e.name
+            this.ruleForm.pid = e.id
           }
-        });
+        })
       } else {
-        this.organName = "";
+        this.organName = ''
       }
-      const { companyName } = this.ruleForm;
-      let isok = companyName.indexOf(this.organName) == 0;
+      const { companyName } = this.ruleForm
+      const isok = companyName.indexOf(this.organName) == 0
       if (isok) {
-        let str = companyName;
+        const str = companyName
         this.ruleForm.companyName = str.substring(
           this.organName.length,
           this.ruleForm.companyName.length
-        );
+        )
       }
-      console.log(isok);
+      console.log(isok)
     },
     openEdit(index, sitem) {
-      this.findex = index;
-      this.sitem = sitem;
-      this.editModel = true;
+      this.findex = index
+      this.sitem = sitem
+      this.editModel = true
     },
     openDelete(index) {
-      this.tableData.splice(index, 1);
+      this.tableData.splice(index, 1)
     },
     async resetForm() {
       await this.$nextTick(() => {
         if (this.$refs.ruleForm) {
-          this.$refs.ruleForm.resetFields();
-          this.$refs.ruleForm.clearValidate();
+          this.$refs.ruleForm.resetFields()
+          this.$refs.ruleForm.clearValidate()
           this.ruleForm = {
-            id: "",
-            pid: "0",
-            region: "0",
-            name: "",
-            companyName: "",
-          };
+            id: '',
+            pid: '0',
+            region: '0',
+            name: '',
+            companyName: ''
+          }
         }
-      });
+      })
     },
     async initData() {
-      console.log(this.kh, this.id);
-      let res = {};
-      if (this.kh + "" === "0") {
-        res = await asyncRequest.zdetail({ id: this.id });
+      console.log(this.kh, this.id)
+      let res = {}
+      if (this.kh + '' === '0') {
+        res = await asyncRequest.zdetail({ id: this.id })
       } else {
-        res = await asyncRequest.qdetail({ companyNo: this.id });
+        res = await asyncRequest.qdetail({ companyNo: this.id })
       }
-      const { code, data, message } = res;
+      const { code, data, message } = res
       if (code === 0) {
-        const { pid, name, pname, companyName, parent, member, id } = data;
-        console.log(data);
-        this.organName = pname;
+        const { pid, name, pname, companyName, parent, member, id } = data
+        console.log(data)
+        this.organName = pname
         this.ruleForm = {
           id: id,
-          region: this.kh + "" || "0",
-          pid: parent ? parent : pid ? pid : "0",
-          name: name || "",
-          companyName: companyName || "",
-        };
+          region: this.kh + '' || '0',
+          pid: parent || (pid || '0'),
+          name: name || '',
+          companyName: companyName || ''
+        }
         if (member && member.length > 0) {
-          this.old_tableData = JSON.parse(JSON.stringify(member));
-          this.tableData = JSON.parse(JSON.stringify(member));
+          this.old_tableData = JSON.parse(JSON.stringify(member))
+          this.tableData = JSON.parse(JSON.stringify(member))
         } else {
-          this.old_tableData = [];
-          this.tableData = [];
+          this.old_tableData = []
+          this.tableData = []
         }
-        this.$refs.ruleForm.resetFields();
-        this.$refs.ruleForm.clearValidate();
+        this.$refs.ruleForm.resetFields()
+        this.$refs.ruleForm.clearValidate()
       } else if (code >= 100 && code <= 104) {
-        await this.logout();
+        await this.logout()
       } else {
-        this.$message.warning(message);
+        this.$message.warning(message)
       }
     },
     contactRefresh(e) {
-      this.editModel = false;
+      this.editModel = false
       const {
         index,
         contactor,
@@ -358,115 +357,115 @@ export default {
         qqaccount,
         email,
         id,
-        is_del,
-      } = e;
-      if (index + "" === "-1") {
-        this.tableData.push(e);
+        is_del
+      } = e
+      if (index + '' === '-1') {
+        this.tableData.push(e)
       } else {
-        let findex = parseInt(index);
-        this.tableData[findex].contactor = contactor || "";
-        this.tableData[findex].commobile = commobile || "";
-        this.tableData[findex].position = position || "";
-        this.tableData[findex].comdepart = comdepart || "";
-        this.tableData[findex].wxaccount = wxaccount || "";
-        this.tableData[findex].qqaccount = qqaccount || "";
-        this.tableData[findex].email = email || "";
-        this.tableData[findex].id = id || "";
-        this.tableData[findex].is_del = is_del || "0";
+        const findex = parseInt(index)
+        this.tableData[findex].contactor = contactor || ''
+        this.tableData[findex].commobile = commobile || ''
+        this.tableData[findex].position = position || ''
+        this.tableData[findex].comdepart = comdepart || ''
+        this.tableData[findex].wxaccount = wxaccount || ''
+        this.tableData[findex].qqaccount = qqaccount || ''
+        this.tableData[findex].email = email || ''
+        this.tableData[findex].id = id || ''
+        this.tableData[findex].is_del = is_del || '0'
       }
     },
     async submitForm() {
-      await this.$refs.ruleForm.validate(async (valid) => {
+      await this.$refs.ruleForm.validate(async(valid) => {
         if (valid) {
           if (this.loading) {
-            return;
+            return
           }
-          this.loading = true;
-          const { id, pid, name, companyName } = this.ruleForm;
-          let res = {};
-          if (this.ruleForm.region === "0") {
-            let zitem = {
+          this.loading = true
+          const { id, pid, name, companyName } = this.ruleForm
+          let res = {}
+          if (this.ruleForm.region === '0') {
+            const zitem = {
               id: id,
               pid: pid,
-              name: name,
-            };
-            if (this.isDetail === "003") {
-              delete zitem["id"];
-              res = await asyncRequest.zadd(zitem);
+              name: name
+            }
+            if (this.isDetail === '003') {
+              delete zitem['id']
+              res = await asyncRequest.zadd(zitem)
             } else {
-              res = await asyncRequest.zupdate(zitem);
+              res = await asyncRequest.zupdate(zitem)
             }
           } else {
             if (this.tableData.length === 0) {
-              this.$message.warning("至少填写一个联系人!");
-              this.loading = false;
-              return;
+              this.$message.warning('至少填写一个联系人!')
+              this.loading = false
+              return
             }
-            let qitem = {
+            const qitem = {
               id: id,
               companyName: this.organName + companyName,
               parent: pid,
-              customer_member: this.getCustomer(),
-            };
+              customer_member: this.getCustomer()
+            }
 
-            if (this.isDetail === "003") {
-              delete qitem["id"];
-              res = await asyncRequest.qadd(qitem);
+            if (this.isDetail === '003') {
+              delete qitem['id']
+              res = await asyncRequest.qadd(qitem)
             } else {
-              res = await asyncRequest.qupdate(qitem);
+              res = await asyncRequest.qupdate(qitem)
             }
           }
-          this.loading = false;
+          this.loading = false
           if (res && res.code === 0) {
-            const title = this.isDetail === "003" ? "添加成功!" : "修改成功!";
+            const title = this.isDetail === '003' ? '添加成功!' : '修改成功!'
             this.$notify.success({
               title,
-              message: "",
-            });
-            this.showModelThis = false;
+              message: ''
+            })
+            this.showModelThis = false
             // 刷新
-            this.$emit("refresh");
+            this.$emit('refresh')
           } else if (res && res.code >= 100 && res.code <= 104) {
-            await this.logout();
+            await this.logout()
           } else {
-            this.$message.warning(res.message);
+            this.$message.warning(res.message)
           }
         } else {
-          console.log("error submit!!");
-          return false;
+          console.log('error submit!!')
+          return false
         }
-      });
+      })
     },
     getCustomer() {
-      let list = JSON.parse(JSON.stringify(this.tableData));
-      let oldlist = JSON.parse(JSON.stringify(this.old_tableData));
-      let hasIDlist = [];
+      const list = JSON.parse(JSON.stringify(this.tableData))
+      const oldlist = JSON.parse(JSON.stringify(this.old_tableData))
+      const hasIDlist = []
       list.forEach((a) => {
-        if (a.id !== "") {
-          hasIDlist.push(a);
+        if (a.id !== '') {
+          hasIDlist.push(a)
         }
-      });
-      let newList = [];
-      let resList = [];
+      })
+      const newList = []
+      const resList = []
       oldlist.forEach((a, ai) => {
-        let item = null;
-        let index = hasIDlist.findIndex((b) => a.id + '' === b.id + '');
+        let item = null
+        const index = hasIDlist.findIndex((b) => a.id + '' === b.id + '')
         if (index === -1) {
-          item = JSON.parse(JSON.stringify(a));
-          item.is_del = "1";
+          item = JSON.parse(JSON.stringify(a))
+          item.is_del = '1'
         } else {
-          item = JSON.parse(JSON.stringify(hasIDlist[index]));
+          item = JSON.parse(JSON.stringify(hasIDlist[index]))
         }
-        newList.push(item);
-      });
+        newList.push(item)
+      })
       list.forEach((b) => {
-        if (b.id === "") {
-          b.is_del = "0";
-          newList.push(b);
+        if (b.id === '') {
+          b.is_del = '0'
+          newList.push(b)
         }
-      });
+      })
       newList.forEach((a) => {
-        let m = {
+        const m = {
           id: a.id,
           contactor: a.contactor,
           position: a.position,
@@ -475,16 +474,16 @@ export default {
           wxaccount: a.wxaccount,
           qqaccount: a.qqaccount,
           email: a.email,
-          is_del: a.is_del || "0",
-          status: a.status || "1",
-        };
-        resList.push(m);
-      });
+          is_del: a.is_del || '0',
+          status: a.status || '1'
+        }
+        resList.push(m)
+      })
 
-      return resList;
-    },
-  },
-};
+      return resList
+    }
+  }
+}
 </script>
 
    <style lang="scss" scoped>
@@ -492,4 +491,4 @@ export default {
   // width: calc( 100% - 110px);
 }
 </style>
-   
+

Some files were not shown because too many files changed in this diff