snow 2 years ago
parent
commit
46ea27f403

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


+ 2 - 1
src/views/goodStore/goodsCost/detail.vue

@@ -1,5 +1,6 @@
 <template>
   <div class="goodsCostDetail">
+    {{ private_field  }}
     <div class="goodsCostDetail-main" v-if="powers.some((i) => i == '007')">
       <el-tabs v-model="activeTabs">
         <el-tab-pane label="新建商品成本" name="0" v-if="queryType === 'add'">
@@ -176,7 +177,7 @@ export default {
     costForm
   },
   computed: {
-    ...mapGetters(["tablebtnSize", "searchSize", "size"]),
+    ...mapGetters(["tablebtnSize", "searchSize", "size", "private_field"]),
     powers() {
       const { btnList } = this.$store.getters
       const tran = btnList.find((item) => item.menu_route == "goodsCostDetail") || {};

+ 5 - 2
src/views/goodStore/supplierGoodsCost/detail.vue

@@ -133,7 +133,7 @@
 
 
         <el-tab-pane label="流程图" name="3" v-if="queryType !== 'add'">
-          <flow-chart process_id="15" type="SPCB" :orderCode="queryId" />
+          <flow-chart process_id="15" type="SPCB" :orderCode="queryId" @click="handleConsole" />
        </el-tab-pane>
       </el-tabs>
     </div>
@@ -160,7 +160,7 @@ export default {
     costForm
   },
   computed: {
-    ...mapGetters(["tablebtnSize", "searchSize", "size"]),
+    ...mapGetters(["tablebtnSize", "searchSize", "size", "private_field"]),
     powers() {
       const { btnList } = this.$store.getters
       const tran = btnList.find((item) => item.menu_route == "supplierGoodsCostDetail") || {};
@@ -238,6 +238,9 @@ export default {
         await this.setstatus(type, "提交采购部门审核", e.remark);
       }
     },
+    handleConsole(){
+      console.log(this.private_field)
+    },
     async getArea(prop = 'delivery_place'){
       const chunks = this.sitem[prop].split(',');
       let { data: province } = await asyncRequest.province();

+ 6 - 6
src/views/serviceParam/terrace/addEdit.vue

@@ -324,15 +324,19 @@ export default {
       // pay_list[0].companyName = company ? company.company : ''
       // }
 
-      this.loading = false
+      let pay_rate = [{ companyNo: '', rate: '', isEdit: true }]
+      if (pay_list.length > 0) {
+        pay_rate = pay_list.filter(({ companyNo }) => companyNo !== 'KH' && companyNo !== 'GYS')
+      }
 
+      this.loading = false
       this.ruleForm = {
         pay_name: pay_title || '',
         platform_name: platform_name || '',
         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[pay_list.length - 1]] : [{ companyNo: '', rate: '', isEdit: true }]
+        pay_rate
       }
     },
     handleEdit(index) {
@@ -429,14 +433,10 @@ export default {
         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, {

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