snow 2 years ago
parent
commit
86cdf12e88

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


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


+ 7 - 7
src/views/sellOut/zxDiffOrder/index.vue

@@ -33,7 +33,7 @@
                     :value="customerCode"
                     :size="searchSize"
                     :placeholder="'购买方公司名称'"
-                    @searchChange="customerChange"
+                    @searchChange="customer_code"
                   />
                 </el-col>
 
@@ -42,7 +42,7 @@
                     :value="customerCode"
                     :size="searchSize"
                     :placeholder="'购买方公司名称'"
-                    @searchChange="customerChange"
+                    @searchChange="customer_code"
                   />
                 </el-col> -->
                 <!-- <el-col :span="4" style="width: 140px">
@@ -80,7 +80,7 @@
                 
                 <el-col :span="4" style="margin-left: 10px">
                   <search-customer
-                    :value="parmValue.khNo"
+                    :value="customerCode"
                     :size="searchSize"
                     :placeholder="'企业客户'"
                     @searchChange="customerChange"
@@ -220,7 +220,7 @@ export default {
       modelId: 0,
       parmValue: {
         zxNo: "", // 竞价单编码
-        khNo: "", // 客户编码
+        customer_code: "", // 客户编码
         cpName: "", //商品名称
         status: "", //竞价类型
         salesman: "", //申请人
@@ -333,7 +333,7 @@ export default {
       this.customerCode = [];
       this.parmValue = {
         zxNo: "", // 竞价单编码
-        khNo: "", // 客户编码
+        customer_code: "", // 客户编码
         cpName: "", //商品名称
         status: "", //竞价类型
         salesman: "", //申请人
@@ -347,10 +347,10 @@ export default {
     async customerChange(e) {
       if (e && e.id) {
         this.customerCode = [e.code];
-        this.parmValue.khNo = e.code;
+        this.parmValue.customer_code = e.code;
       } else {
         this.customerCode = [];
-        this.parmValue.khNo = "";
+        this.parmValue.customer_code = "";
       }
       this.parmValue.page = 1;
       await this.searchList();

+ 16 - 10
src/views/serviceParam/terrace/addEdit.vue

@@ -242,6 +242,7 @@ export default {
         pay_rate: [
           {
             companyNo: '',
+            companyName: '',
             rate: '',
             isEdit: true
           }
@@ -314,12 +315,14 @@ export default {
       const platformResponse = await asyncRequest.detail({ id: this.sitem.id })
       const { platform_name, platform_type, is_select_pay_rate, use_type, pay_list, pay_title } = platformResponse.data
 
-      if (Array.isArray(pay_list) && pay_list.length > 0) {
-        const { companyNo } = pay_list[0]
-        const companyResponse = await asyncRequest.company({ companyNo })
-        const company = companyResponse.data.list.find(({ companyNo: _companyNo }) => _companyNo === companyNo)
-        pay_list[0].companyName = company.company
-      }
+      // if (Array.isArray(pay_list) && pay_list.length > 0) {
+      // const { companyNoc } = pay_list[pay_list.length - 1]
+      // console.log(pay_list[pay_list.length - 1])
+
+      // const companyResponse = await asyncRequest.company({ companyNo })
+      // const company = companyResponse.data.list.find(({ companyNo: _companyNo }) => _companyNo === companyNo)
+      // pay_list[0].companyName = company ? company.company : ''
+      // }
 
       this.loading = false
 
@@ -329,10 +332,8 @@ export default {
         platform_type: String(platform_type) ? String(platform_type) : '0',
         use_type: String(use_type) ? String(use_type) : '1',
         is_pay: String(is_select_pay_rate) ? String(is_select_pay_rate) : '',
-        pay_rate: pay_list.length !== 0 ? pay_list : [{ companyNo: '', rate: '', isEdit: true }]
+        pay_rate: pay_list.length !== 0 ? [pay_list[pay_list.length - 1]] : [{ companyNo: '', rate: '', isEdit: true }]
       }
-
-      console.log(this.ruleForm)
     },
     handleEdit(index) {
       const lineData = this.ruleForm.pay_rate[index]
@@ -381,7 +382,6 @@ export default {
 
           if (model.pay_list && model.pay_list.length > 0) {
             delete model.pay_list[0].isEdit
-            delete model.pay_list[0].companyName
             delete model.pay_list[0].is_cgd
             delete model.pay_list[0].is_qrd
           }
@@ -423,14 +423,20 @@ export default {
     },
     handleCompanyChange(e, index) {
       const { code, label } = e
+
       const companyInfo = {
         companyNo: code,
         companyName: label
       }
+
+      console.log(companyInfo)
+
       this.$set(this.ruleForm.pay_rate, index, {
         ...this.ruleForm.pay_rate[index],
         ...companyInfo
       })
+
+      console.log(this.ruleForm)
     },
     handleRateChange(rate, index) {
       this.$set(this.ruleForm.pay_rate, index, {

+ 37 - 37
src/views/supplierWorkbench/workbench/ladderPrice.vue

@@ -5,47 +5,47 @@
     align="left"
     top="12vh"
     width="1040px"
-    @close="closeModel"
     :close-on-click-modal="false"
     :visible.sync="showModelThis"
+    @close="closeModel"
   >
-  <el-card>
+    <el-card>
       <el-row :gutter="10">
         <el-col :span="24">
           <div
             v-if="
               left &&
-              left.header &&
-              left.header.length > 0 &&
-              right &&
-              right.header &&
-              right.header.length > 0
+                left.header &&
+                left.header.length > 0 &&
+                right &&
+                right.header &&
+                right.header.length > 0
             "
           >
             <div class="list-table clearfix">
               <div class="left" :style="{ width: lang }">
                 <div class="header">
                   <div
-                    class="header-item"
                     v-for="(lhead, lhi) in left.header"
                     :key="'lhead' + lhi"
+                    class="header-item"
                   >
                     {{ lhead.spec_name }}
                   </div>
                 </div>
                 <div
-                  class="header-body"
                   v-if="left.spec && left.spec.length > 0"
+                  class="header-body"
                 >
                   <div
-                    class="header-body-row"
                     v-for="(lhr, lhri) in left.spec"
                     :key="'lheadrow' + lhri"
+                    class="header-body-row"
                   >
                     <div
-                      class="heder-body-col"
                       v-for="(lhc, lhci) in lhr"
                       :key="'lheadcol' + lhci"
+                      class="heder-body-col"
                     >
                       {{ lhc.spec_value }}
                     </div>
@@ -55,9 +55,9 @@
               <div class="right" :style="{ paddingLeft: lang }">
                 <div class="header">
                   <div
-                    class="header-col clearfix"
                     v-for="(lhr, lhri) in right.header"
                     :key="'lheadr' + lhri"
+                    class="header-col clearfix"
                   >
                     <div class="header-col-jieti clearfix">
                       <div class="header-col-jieti-title tc clearfix">
@@ -71,18 +71,18 @@
                   </div>
                 </div>
                 <div
-                  class="right-body"
                   v-if="right.spec && right.spec.length > 0"
+                  class="right-body"
                 >
                   <div
-                    class="right-body-col"
                     v-for="(lbr, lbri) in right.spec"
                     :key="'lbodyr' + lbri"
+                    class="right-body-col"
                   >
                     <div
-                      class="right-body-col-item clearfix"
                       v-for="(lbritem, lbritemi) in lbr.limit"
                       :key="'lbritem' + lbritemi"
+                      class="right-body-col-item clearfix"
                     >
                       <div class="right-body-col-item-div fl tc">
                         {{ lbritem.begin_num }}
@@ -104,40 +104,40 @@
     </el-card>
   </el-dialog>
 </template>
-   <script>
+<script>
 export default {
-  name: "active",
-  props: ["showModel", "left", "right", "lang"],
+  name: 'Active',
+  props: ['showModel', 'left', 'right', 'lang'],
   data() {
     return {
       loading: true,
-      title: "商品阶梯价格",
-       showModelThis: this.showModel,
-    };
-  },
-  methods: {
-    closeModel(e) {
-      console.log(e);
-      this.showModelThis = false;
-    },
-    async initForm() {
-      this.loading = false;
-    },
+      title: '商品阶梯价格',
+      showModelThis: this.showModel
+    }
   },
   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: {
+    closeModel(e) {
+      console.log(e)
+      this.showModelThis = false
+    },
+    async initForm() {
+      this.loading = false
+    }
+  }
+}
 </script>
 
    <style lang="scss" scoped>
@@ -255,4 +255,4 @@ export default {
   }
 }
 </style>
-   
+

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