Ver código fonte

Merge branch 'company' into v3.0

snow 1 ano atrás
pai
commit
e30a6ac992

Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/0.js


Diferenças do arquivo suprimidas por serem muito extensas
+ 0 - 0
dist/static/js/app.js


+ 0 - 1
scripts/template.js

@@ -17,7 +17,6 @@ module.exports = {
    </script>
    <style lang="scss" scoped>
    .${compoenntName} {
-    
    }
    </style>
    `;

+ 1 - 1
src/components/globalComponents/search-metal-kind/main.vue

@@ -68,7 +68,7 @@ export default {
   },
   watch: {
     value: {
-      function(val) {
+      handler:function(val) {
         this.valuess = val;
         if (this.isDetail) {
           this.remoteMethod(val);

+ 7 - 1
src/components/search-good-modal/columns.js

@@ -25,6 +25,12 @@ export default [
     prop: "brand_name",
     label: "品牌",
   },
+  {
+    prop: "create_source",
+    label: "来源",
+    _slot_: "create_source",
+    width: '110px'
+  },
   {
     prop: "good_type",
     label: "是否定制",
@@ -68,4 +74,4 @@ export default [
     fixed: "right",
     width: "95",
   },
-]
+]

+ 105 - 70
src/components/search-good-modal/main.vue

@@ -115,12 +115,28 @@
                   </el-select>
                 </el-input>
               </el-col>
+              <!-- <el-col :span="3" style="margin-left:10px">
+                <el-select placeholder="来源" clearable size="mini" style="width:100%" v-model="parmValue.create_source" @change=" pageInfo.curr = 1;
+                    parmValue.page = 1;
+                   searchList();">
+                  <el-option value="0" label="手动创建商品" />
+                  <el-option value="1" label="咨询成交商品" />
+              </el-select>
+            </el-col> -->
+
               <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
                 <el-button type="success" :size="searchSize" @click="resultList(selection)">保存</el-button>
               </el-col>
             </el-row>
           </div>
         </template>
+
+        <template #create_source="{ scope }">
+        <el-tag size="mini" :type="scope.row.create_source === '1' ? 'warning' : ''">
+          {{ scope.row.create_source === "1" ? "咨询成交商品" : "手动创建商品" }}
+        </el-tag>
+      </template>
+
         <template #good_thumb_img="{ scope }">
           <div
             v-if="scope.row.good_thumb_img"
@@ -167,6 +183,7 @@ export default {
     "isonline",
     "is_stock",
     "isNoble",
+    "isConsult",
     "checkType",
     "is_combind"
   ],
@@ -195,6 +212,7 @@ export default {
       loading: true,
       showModelThis: false,
       parmValue: {
+        create_source:"",
         type_code: "", // 是否定制
         supplierNo: "", // 供应商code
         cat_id: [],
@@ -261,6 +279,7 @@ export default {
       this.select = "1";
       // this.supplierCode = [];
       this.parmValue = {
+        create_source:"",
         type_code: "", // 是否定制
         supplierNo: "", // 供应商code
         spucode: "", // 商品编码
@@ -361,93 +380,109 @@ export default {
       }
       this.selectLoading = false;
     },
-    async resultList(selection) {
-      if (selection && selection.length > 1 && this.once) {
-        this.$message.warning("只能选择一条商品信息!");
-        return;
-      }
-
-      if (this.checkType) {
-        const h = this.$createElement;
-        const categoryIds = selection.map(({ cat_info, is_gold_price }) => ({
-          id: String(cat_info[0].id),
-          isGoldPrice: String(is_gold_price)
-        }));
-
-        console.log(categoryIds);
-        const nobleMetalIds = categoryIds.filter(
-          ({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1"
-        );
-
-        if (
-          nobleMetalIds.length > 0 &&
-          categoryIds.length !== nobleMetalIds.length
-        ) {
-          // this.$message.warning('勾选商品的分类必须全部为"贵金属"或全部为"非贵金属"')
-
-          this.$message({
+    createWarningMessage$1(_f,_s){
+      const h = this.$createElement;
+        this.$message({
+          message: h("p", null, [
+            h("span", null, "勾选商品必须全部为"),
+            h("i", { style: "color: red" }, _f),
+            h("span", null, "或者全部为"),
+            h( "i", { style: "color: red" },  _s)
+          ]),
+          type: "warning",
+          dangerouslyUseHTMLString: true
+        });
+    },
+    createWarningMessage$2(_f, _s){
+      const h = this.$createElement;
+      this.$message({
             message: h("p", null, [
-              h("span", null, "勾选商品必须全部为"),
-              h("i", { style: "color: red" }, "开启实时金价的贵金属商品"),
-              h("span", null, "或者全部为"),
-              h(
-                "i",
-                { style: "color: red" },
-                "未开启实时金价的贵金属商品和非贵金属商品"
-              )
+              h("span", null, "如需添加"),
+              h("i", { style: "color: red" }, _f),
+              h("span", null, "请将已添加的所有"),
+              h( "i",{ style: "color: red" }, _s),
+              h("span", null, "删除!")
             ]),
             type: "warning",
             dangerouslyUseHTMLString: true
           });
+    },
+    getAllGoods(selection){
+      return selection.map(({ cat_info, is_gold_price ,create_source}) => ({
+          create_source,
+          id: String(cat_info[0].id),
+          isGoldPrice: String(is_gold_price)
+        })
+      );
+    },
+    async resultList(selection) {
+        if (selection && selection.length > 1 && this.once) {
+          this.$message.warning("只能选择一条商品信息!");
           return;
         }
 
-        const isNoble =
-          nobleMetalIds.length > 0 &&
-          categoryIds.length === nobleMetalIds.length;
-        if (isNoble && !this.isNoble && this.isNoble !== null) {
-          // this.$message.warning('如需添加 "贵金属商品",请将已添加的所有 "非贵金属商品" 删除!')
+        let isNoble = null;
+        let isConsult = null;
+        if (this.checkType) {
+          const allGoods = this.getAllGoods(selection);
+          if (allGoods.length === 0) {
+          this.$message.warning("至少选择一个商品!");
+          return;
+        }
 
-          this.$message({
-            message: h("p", null, [
-              h("span", null, "如需添加"),
-              h("i", { style: "color: red" }, "开启实时金价的贵金属商品"),
-              h("span", null, "请将已添加的所有"),
-              h(
-                "i",
-                { style: "color: red" },
-                "未开启实时金价的贵金属商品和非贵金属商品"
-              ),
-              h("span", null, "删除!")
-            ]),
-            type: "warning",
-            dangerouslyUseHTMLString: true
-          });
+        if (allGoods.length > 100) {
+          this.$message.warning("商品数量不能超过100!");
           return;
         }
 
-        if (!isNoble && this.isNoble && this.isNoble !== null) {
-          this.$message({
-            message: h("p", null, [
-              h("span", null, "如需添加"),
-              h(
-                "i",
-                { style: "color: red" },
-                "未开启实时金价的贵金属商品和非贵金属商品"
-              ),
-              h("span", null, "请将已添加的所有"),
-              h("i", { style: "color: red" }, "开启实时金价的贵金属商品"),
-              h("span", null, "删除!")
-            ]),
-            type: "warning",
-            dangerouslyUseHTMLString: true
-          });
+        // 咨询成交id集合
+        const consultList = allGoods.filter(({create_source}) => create_source === "1")
+        // 不是全部为咨询成交商品或手动创建商品
+        if(consultList.length > 0 && allGoods.length !== consultList.length){
+          this.createWarningMessage$1("咨询成交商品", "手动创建商品")
+          return
+        }
+        // 本次添加是否全部为咨询商品..
+        isConsult = consultList.length > 0 && allGoods.length === consultList.length
+
+        //本次添加全部为咨询商品,上次添加为手动创建商品
+        if(isConsult && !this.isConsult && this.isConsult !== null){
+          this.createWarningMessage$2("咨询成交商品", "手动创建商品")
           return;
         }
+
+        //本次添加全部为手动创建商品,上次添加咨询商品
+        if(!isConsult && this.isConsult && this.isConsult !== null){
+          this.createWarningMessage$2("手动创建商品","咨询成交商品")
+          return
+        }
+        // 到这里不是初始化就是全部为咨询商品或者全部为手动创建的商品,区分出来,手动创建商品需要判断贵金属
+        if(!this.isConsult && !isConsult){
+          // 手动创建商品,走是否贵金属校验...
+          const nobleMetalIds = allGoods.filter(({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1");
+          // 当前勾选商品中有贵金属和非贵金属
+          if (nobleMetalIds.length > 0 && allGoods.length !== nobleMetalIds.length ) {
+            this. createWarningMessage$1("开启实时金价贵金属商品", "未开启实时金价的贵金属商品和非贵金属商品");
+            return;
+          }
+          // 本次添加的是否全部为贵金属....
+          isNoble = nobleMetalIds.length > 0 &&  allGoods.length === nobleMetalIds.length;
+          //上次添加的不是贵金属商品,且本次添加的是贵金属商品
+          if (isNoble && !this.isNoble && this.isNoble !== null) {
+            this.createWarningMessage$2("开启实时金价贵金属商品", "未开启实时金价的贵金属商品和非贵金属商品")
+            return;
+          }
+          //上次添加的是贵金属商品,且本次添加不是贵金属商品
+          if (!isNoble && this.isNoble && this.isNoble !== null) {
+            this.createWarningMessage$2("未开启实时金价的贵金属商品和非贵金属商品","开启实时金价贵金属商品")
+            return;
+          }
+        }
       }
 
       this.showModelThis = false;
-      this.$emit("resultList", selection);
+      //本次添加是否贵金属和是否咨询商品传递出去,下次传入作为上次添加的结果判断条件
+      this.$emit("resultList", selection, {isNoble,  isConsult });
     }
   }
 };

+ 5 - 2
src/components/search-good-online-modal/main.vue

@@ -149,8 +149,8 @@
 
 <script>
 import asyncRequest from "@/apis/components/search-good-online-modal";
-import resToken from "@/mixins/resToken";
 import mixinPage from "@/mixins/elPaginationHandle";
+import resToken from "@/mixins/resToken";
 import { mapGetters } from "vuex";
 import columns from "./columns";
 export default {
@@ -303,7 +303,10 @@ export default {
       //   model.platform_code.length > 0
       //     ? model.platform_code[model.platform_code.length - 1]
       //     : "";
-      const res = await asyncRequest.list(model);
+      const res = await asyncRequest.list({
+        ...model,
+        create_source: "0"
+      });
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;
         this.tableData.map((e) => {

+ 1 - 4
src/views/goodStore/dealGoodsPool/addEdit.vue

@@ -259,10 +259,7 @@ export default {
       );
     },
     pricingOptions() {
-      return [
-        { value: "1", label: "一口价" },
-        ...(this.isFiexed ? [{ value: "0", label: "实时金价" }] : [])
-      ];
+      return [{ value: "1", label: "一口价" }];
     }
   },
   methods: {

+ 9 - 20
src/views/goodStore/goodsCost/components/addEdit.vue

@@ -160,12 +160,12 @@
 </template>
 <script>
 import asyncRequest from "@/apis/service/goodStore/goodsCost";
-import resToken from "@/mixins/resToken";
 import { replaceTextWrapAndSpace } from "@/utils";
+import resToken from "@/mixins/resToken";
 export default {
   name: "Brand",
   mixins: [resToken],
-  props: ["showModel", "id", "sitem", "isNobleMetal"],
+  props: ["showModel", "id", "sitem", "isNobleMetal", "isConsultFlag"],
   data() {
     return {
       loading: false,
@@ -225,25 +225,19 @@ export default {
     };
   },
   computed: {
-    isFiexed() {
-      return (
-        !this.isYZPlatform &&
-        this.isNobleMetal &&
-        this.ruleForm.platform_type !== "1"
-      );
+    isFixed() {
+      /** 选择实时金价条件:非有赞平台&非咨询成交商品&贵金属商品 */
+      return !this.isYZPlatform && !this.isConsultFlag && this.isNobleMetal && this.ruleForm.platform_type !== "1" 
     },
     pricingOptions() {
       return [
         { value: "1", label: "一口价" },
-        ...(this.isFiexed ? [{ value: "0", label: "实时金价" }] : [])
+        ...(this.isFixed ? [{ value: "0", label: "实时金价" }] : [])
       ];
     }
   },
-  // mounted(){
-    
-  // },
   watch: {
-    isFiexed() {
+    isFixed() {
       if (this.ruleForm.is_fixed === "0") {
         this.ruleForm.is_fixed = "";
       }
@@ -256,17 +250,12 @@ export default {
       }
     },
     showModelThis(val) {
-      if (!val) {
-        this.$emit("cancel");
-      }
+      if (!val) { this.$emit("cancel");}
     }
   },
   methods: {
     changeMarketUrl(market_url,index){
-      this.$set(this.list,index,{
-        ...this.list[index],
-        market_url
-      })
+      this.$set(this.list,index,{ ...this.list[index], market_url })
     },
     async initForm() {
       this.loading = true;

+ 20 - 9
src/views/goodStore/goodsCost/components/baseForm.vue

@@ -35,7 +35,7 @@
                   v-model="ruleForm.is_stock"
                   filterable
                   clearable
-                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin' || type === 'edit' && createSource === '0'"
+                  :disabled="true"
                   style="width: 100%"
                   @change="stock_change"
                   placeholder="是否库存品"
@@ -54,7 +54,7 @@
               <el-form-item prop="is_combind" label="组合类型" label-width="110px">
                 <el-select
                   style="width:100%"
-                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin' || type === 'edit' && createSource === '0'"
+                  :disabled="true"
                   v-model="ruleForm.is_combind"
                   placeholder="是否组合商品"
                   @change="groupGoodChange"
@@ -233,6 +233,7 @@
                 <el-form-item label="贵金属种类" prop="noble_metal" label-width="95px">
                   <search-metal-kind
                     :value="ruleForm.noble_metal"
+                    :names="nobleMetalNames"
                     :disabled="
                       type === 'view' || type === 'editBase' || type === 'editCoin'
                     "
@@ -249,9 +250,7 @@
                     v-model="ruleForm.is_gold_price"
                     filterable
                     clearable
-                    :disabled="
-                      type === 'view' || type === 'editBase' || type === 'editCoin' || createSource === '1'
-                    "
+                    :disabled="true"
                     style="width: 100%"
                     placeholder="启用实时金价"
                     @change="is_goold_price_change"
@@ -1378,6 +1377,12 @@ export default {
       //   this.$message.warning("不启用阶梯成本,只能录入一条阶梯成本信息!");
       //   return;
       // }
+
+      if(this.ladder_tableData.length >= 1 && this.sitem.create_source === "1" && index === -1){
+        this.$message.warning("咨询成本商品只能录入一条阶梯成本信息!");
+        return;
+      }
+
       this.costmodelIndex = index;
       this.costsitem = sitem;
       this.costshowModel = true;
@@ -2051,7 +2056,8 @@ export default {
             is_support_stock,
             is_combind,
             combind_list,
-            create_source
+            create_source,
+            noble_name
           } = this.sitem;
 
           this.createSource = create_source
@@ -2161,7 +2167,7 @@ export default {
             unit: good_unit ? [good_unit] : [],
             is_exclusive: exclusiveList || [],
             noble_metal: noble_metal || "",
-            is_gold_price: is_gold_price || "0",
+            is_gold_price: "0",
             moq: moq || "0",
             customized: customized || "0",
             after_sales: after_sales || "",
@@ -2210,6 +2216,10 @@ export default {
             stock_moq: stock_moq || "0",
             is_combind: is_combind || ""
           };
+
+
+          this.nobleMetalNames = noble_name; 
+
         }
 
         if (this.type === "add") this.ruleForm.company_id = this.currentCompany;
@@ -2309,7 +2319,7 @@ export default {
       const { cat_id } = this.ruleForm;
       let id = cat_id.length == 1 ? cat_id[0] : "";
       if (id) {
-        const { code, message, data } = await asyncRequest.catinfo({ id: id });
+        const { code, message, data } = await asyncRequest.catinfo({ id });
 
         this.ruleForm.after_sales = data.cat_desc;
         this.$refs.ruleForm && this.$refs.ruleForm.validateField("after_sales");
@@ -2432,9 +2442,10 @@ export default {
     },
     //贵金属种类选择
     async noble_metalsearchChange(e) {
+      console.log(e);
       const { id, code, label } = e;
       this.ruleForm.noble_metal = id || "";
-      tthis.$refs.ruleForm && his.$refs.ruleForm.validateField("noble_metal");
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("noble_metal");
       await this.get_all_fee();
     },
     async areaChange(e, key) {

+ 2537 - 0
src/views/goodStore/goodsCost/components/baseFormNormal.vue

@@ -0,0 +1,2537 @@
+<template>
+  <el-form
+    :model="ruleForm"
+    status-icon
+    :rules="rulesThis"
+    ref="ruleForm"
+    :size="'mini'"
+    v-loading="loading"
+    label-width="90px"
+  >
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul style="padding: 140px 0 0 0">
+          <li>基</li>
+          <li>础</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row>
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="业务公司" prop="company_id">
+                <el-input
+                  :value="type === 'add' ? getCompanyWithCode(ruleForm.companyNo).name : companyName"
+                  disabled
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="6">
+              <el-form-item label="是否库存品" prop="is_stock" label-width="95px">
+                <el-select
+                  v-model="ruleForm.is_stock"
+                  filterable
+                  clearable
+                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin' || type === 'edit'"
+                  style="width: 100%"
+                  @change="stock_change"
+                  placeholder="是否库存品"
+                >
+                  <el-option
+                    v-for="group in options4"
+                    :key="group.id"
+                    :label="group.name"
+                    :value="group.id"
+                  />
+                </el-select>
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="6">
+              <el-form-item prop="is_combind" label="组合类型" label-width="110px">
+                <el-select
+                  style="width:100%"
+                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin' || type === 'edit'"
+                  v-model="ruleForm.is_combind"
+                  placeholder="是否组合商品"
+                  @change="groupGoodChange"
+                >
+                  <el-option v-if="ruleForm.is_stock === '1'" value="1" label="组合商品" />
+                  <el-option value="0" label="非组合商品" />
+                </el-select>
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="供应商" prop="supplierNo">
+                <search-supplier
+                  :value="ruleForm.supplierNo"
+                  :placeholder="'供应商'"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :size="'mini'"
+                  :names="supplierName"
+                  :isDetail="type !== 'add'"
+                  :isp="this.type !== 'view'"
+                  @searchChange="supplierNosearchChange"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="12">
+              <el-form-item label="商品名称" prop="good_name">
+                <el-input
+                  placeholder="商品名称"
+                  maxlength="100"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  v-model="ruleForm.good_name"
+                ></el-input>
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-row>
+            <el-col :span="8">
+              <el-form-item label="商品分类" prop="cat_id">
+                <company-sort
+                  :value="ruleForm.cat_id"
+                  :placeholder="'商品分类'"
+                  :disabled="type !== 'add'"
+                  :size="'mini'"
+                  :names="cat_id_name"
+                  :isDetail="type !== 'add'"
+                  :company-no="ruleForm.company_id"
+                  @searchChange="goods_class_change"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="8">
+              <el-form-item label="商品品牌" prop="brandid">
+                <search-brand
+                  :value="ruleForm.brandid"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :size="'mini'"
+                  :isDetail="type !== 'add'"
+                  :names="brand_name"
+                  :placeholder="'商品品牌'"
+                  @searchChange="brandidsearchChange"
+                />
+              </el-form-item>
+            </el-col>
+            <el-col :span="8">
+              <el-form-item label="销售权限" prop="is_auth">
+                <el-select
+                  v-model="ruleForm.is_auth"
+                  filterable
+                  clearable
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  style="width: 100%"
+                  placeholder="销售权限"
+                >
+                  <el-option
+                    v-for="group in options3"
+                    :key="group.id"
+                    :label="group.name"
+                    :value="group.id"
+                  />
+                </el-select>
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-row>
+            <el-col :span="4">
+              <el-form-item label="单位" prop="unit" label-width="60px">
+                <search-unit
+                  :value="ruleForm.unit"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :size="'mini'"
+                  :isDetail="type !== 'add'"
+                  :names="unit_name"
+                  :placeholder="'单位'"
+                  @searchChange="unitsearchChange"
+                />
+              </el-form-item>
+            </el-col>
+            <el-col :span="4">
+              <el-form-item label="税点" prop="tax" label-width="60px">
+                <search-tax
+                  :value="ruleForm.tax"
+                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin'"
+                  :size="'mini'"
+                  :isDetail="type !== 'add'"
+                  :placeholder="'税点'"
+                  @searchChange="taxsearchChange"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="8">
+              <el-form-item label="专属类型" prop="is_exclusive">
+                <search-exclusive
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  style="width: 100%"
+                  :isDetail="type !== 'add'"
+                  :size="'mini'"
+                  placeholder="专属类型"
+                  :value="ruleForm.is_exclusive"
+                  @selectChange="exclusiveSearchChange"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="8">
+              <el-form-item label="商品总重量" prop="weight" label-width="95px" style="height:32px">
+                <digital-input
+                  :values="ruleForm.weight"
+                  :name="'ruleForm.weight'"
+                  :placeholder="'商品总重量'"
+                  :min="0"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :max="100000000000"
+                  :position="'right'"
+                  :precision="3"
+                  :size="'mini'"
+                  :controls="false"
+                  :append="'g'"
+                  @reschange="number_change($event, 'weight')"
+                />
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-row :span="24" v-show="is_noble">
+            <el-row>
+              <el-col :span="8">
+                <el-form-item label="贵金属重量" prop="noble_weight" label-width="95px">
+                  <digital-input
+                    :values="ruleForm.noble_weight"
+                    :placeholder="'贵金属重量'"
+                    :name="'ruleForm.noble_weight'"
+                    :min="0"
+                    :disabled="
+                      type === 'view' ||
+                      type === 'editBase' ||
+                      type === 'editCoin'
+                    "
+                    :max="100000000000"
+                    :position="'right'"
+                    :precision="3"
+                    :size="'mini'"
+                    :controls="false"
+                    :append="'g'"
+                    @reschange="number_change($event, 'noble_weight')"
+                  />
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="贵金属种类" prop="noble_metal" label-width="95px">
+                  <search-metal-kind
+                    :value="ruleForm.noble_metal"
+                    :disabled="
+                      type === 'view' || type === 'editBase' || type === 'editCoin'
+                    "
+                    :size="'mini'"
+                    :isDetail="type !== 'add'"
+                    :placeholder="'贵金属种类'"
+                    @searchChange="noble_metalsearchChange"
+                  />
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="启用实时金价" prop="is_gold_price" label-width="110px">
+                  <el-select
+                    v-model="ruleForm.is_gold_price"
+                    filterable
+                    clearable
+                    :disabled="
+                      type === 'view' || type === 'editBase' || type === 'editCoin'
+                    "
+                    style="width: 100%"
+                    placeholder="启用实时金价"
+                    @change="is_goold_price_change"
+                  >
+                    <el-option
+                      v-for="group in options5"
+                      :key="group.id"
+                      :label="group.name"
+                      :value="group.id"
+                    />
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="6">
+                <el-form-item label="有无工差" prop="is_diff">
+                  <el-select
+                    v-model="ruleForm.is_diff"
+                    filterable
+                    clearable
+                    :disabled="
+                      type === 'view' ||
+                      type === 'editBase' ||
+                      type === 'editCoin'
+                    "
+                    style="width: 100%"
+                    placeholder="有无工差"
+                  >
+                    <el-option
+                      v-for="group in options8"
+                      :key="group.id"
+                      :label="group.name"
+                      :value="group.id"
+                    />
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="10">
+                <el-form-item label="配置要求" prop="config" label-width="85px">
+                  <el-select
+                    v-model="ruleForm.config"
+                    multiple
+                    :disabled="type === 'view'"
+                    style="width: 100%"
+                    placeholder="配置要求"
+                  >
+                    <el-option
+                      v-for="(item, index) in options9"
+                      :key="item + index"
+                      :label="item"
+                      :value="item"
+                    ></el-option>
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="其他配置要求" prop="other_config" label-width="110px">
+                  <el-input
+                    placeholder="其他配置要求"
+                    maxlength="100"
+                    :disabled="type === 'view'"
+                    v-model="ruleForm.other_config"
+                  ></el-input>
+                </el-form-item>
+              </el-col>
+            </el-row>
+          </el-row>
+
+          <el-row>
+            <el-col :span="8">
+              <el-form-item label="售后说明" prop="after_sales">
+                <el-input
+                  type="textarea"
+                  :rows="4"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  placeholder="售后说明"
+                  v-model="ruleForm.after_sales"
+                  show-word-limit
+                  maxlength="1000"
+                />
+              </el-form-item>
+            </el-col>
+            <el-col :span="8">
+              <el-form-item label="商品备注" prop="good_remark">
+                <el-input
+                  type="textarea"
+                  :rows="4"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  placeholder="商品备注"
+                  show-word-limit
+                  maxlength="250"
+                  v-model="ruleForm.good_remark"
+                ></el-input>
+              </el-form-item>
+            </el-col>
+            <el-col :span="8">
+              <el-form-item label="工艺说明" prop="craft_desc">
+                <el-input
+                  type="textarea"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :rows="4"
+                  placeholder="工艺说明"
+                  show-word-limit
+                  maxlength="250"
+                  v-model="ruleForm.craft_desc"
+                ></el-input>
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-col :span="8">
+            <el-form-item label="是否定制" prop="good_type">
+              <el-select
+                v-model="ruleForm.good_type"
+                filterable
+                :disabled="type === 'view' || type === 'editCoin'"
+                clearable
+                style="width: 100%"
+                placeholder="是否定制"
+                @change="good_type_change"
+              >
+                <el-option
+                  v-for="group in options1"
+                  :key="group.id"
+                  :label="group.name"
+                  :value="group.id"
+                />
+              </el-select>
+            </el-form-item>
+          </el-col>
+
+          <el-col :span="8" v-show="ruleForm.good_type === '1'">
+            <el-form-item label="定制起订量" prop="moq" label-width="95px">
+              <digital-input
+                :values="ruleForm.moq"
+                :placeholder="'定制起订量'"
+                :name="'ruleForm.moq'"
+                :min="0"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="''"
+                @reschange="number_change($event, 'moq')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="8" v-show="ruleForm.good_type === '1'">
+            <el-form-item label="定制工期" prop="customized">
+              <digital-input
+                :values="ruleForm.customized"
+                :placeholder="'定制工期'"
+                :name="'ruleForm.customized'"
+                :min="0"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="'天'"
+                @reschange="number_change($event, 'customized')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="8" v-show="ruleForm.is_stock === '1'">
+            <el-form-item label="备库起订量" prop="stock_moq" label-width="95px">
+              <digital-input
+                :values="ruleForm.stock_moq"
+                :placeholder="'备库起订量'"
+                :min="0"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="''"
+                @reschange="number_change($event, 'stock_moq')"
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-col>
+    </el-row>
+
+    <el-row class="ddiv" v-if="ruleForm. is_combind === '1'">
+      <el-col
+        :span="1"
+        tag="div"
+        style="border-right:1px solid #dcdfe6;width:40px;display:flex;align-items:center;height:100%"
+      >
+        <ul style="text-align:center;padding-top:20px">
+          <li>子</li>
+          <li>商</li>
+          <li>品</li>
+          <li>设</li>
+          <li>置</li>
+        </ul>
+      </el-col>
+
+      <el-col :span="23" class="dmain" style="padding:20px 0px;padding-left:20px">
+        <el-table :data="childTableData" size="mini" border max-height="350px">
+          <el-table-column label="子商品成本编号" prop="childCode" min-width="160px" />
+          <el-table-column label="子商品名称" prop="child_name" min-width="180px" show-overflow-tooltip />
+          <el-table-column label="组合比例" prop="child_num" width="140px">
+            <template slot-scope="scope">
+              <span v-if="scope.$index !== editIndex">
+                {{
+                childTableData[scope.$index].child_num
+                }}
+              </span>
+
+              <digital-input
+                v-else
+                :values="childTableData[scope.$index].child_num"
+                :placeholder="'组合比例'"
+                :min="0"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                @reschange="num_change($event,scope.$index)"
+              />
+            </template>
+          </el-table-column>
+
+          <el-table-column label="操作" width="120px">
+            <template #header>
+              <div>
+                <span>操作</span>
+                <el-tooltip class="item" effect="dark" content="添加" placement="top" v-if="type === 'add' || type === 'edit'">
+                  <i
+                    class="el-icon-circle-plus-outline fr"
+                    style="font-size:18px;cursor: pointer"
+                    @click="onChildProdChange(null, 'add')"
+                  />
+                </el-tooltip>
+              </div>
+            </template>
+
+            <template slot-scope="scope">
+              <el-tooltip
+                effect="dark"
+                content="查看"
+                placement="top"
+                v-if="editIndex !== scope.$index"
+              >
+                <i class="el-icon-view tb-icon" @click="onChildProdChange(scope.$index, 'view')"></i>
+              </el-tooltip>
+
+              <template v-if="type === 'add' || type === 'edit'">
+                <el-tooltip
+                effect="dark"
+                content="修改"
+                placement="top"
+                v-if="editIndex !== scope.$index"
+              >
+                <i class="el-icon-edit tb-icon" @click="onChildProdChange(scope.$index,'edit')"></i>
+              </el-tooltip>
+
+              <el-tooltip effect="dark" content="保存" placement="top" v-else>
+                <i class="el-icon-circle-check tb-icon" @click="onSaveLine(scope.$index)"></i>
+              </el-tooltip>
+
+              <el-tooltip
+                effect="dark"
+                content="删除"
+                placement="top"
+                v-if="editIndex !== scope.$index"
+              >
+                <i class="el-icon-delete tb-icon" @click="onDeleteItem(scope.$index)"></i>
+              </el-tooltip>
+              </template>
+            </template>
+          </el-table-column>
+        </el-table>
+      </el-col>
+    </el-row>
+
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul>
+          <li>规</li>
+          <li>格</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain" style="padding: 20px 0 20px 18px">
+        <el-table :data="spec_tableData" :size="'mini'" border style="width: 100%">
+          <el-table-column prop="spec_value" label="规格类型" />
+          <el-table-column prop="spec_value_value" label="规格值" />
+          <el-table-column
+            fixed="right"
+            v-if="type === 'add' || type === 'editBase' || type === 'edit'"
+          >
+            <template slot="header" slot-scope="scope">
+              <span>操作</span>
+              <el-tooltip class="item" effect="dark" content="添加规格类型" placement="top">
+                <i
+                  class="el-icon-circle-plus-outline fr"
+                  style="font-size: 18px; margin-top: 2px"
+                  @click="openEdit('-1', {})"
+                />
+              </el-tooltip>
+            </template>
+            <template slot-scope="scope">
+              <el-tooltip effect="dark" content="修改" placement="top">
+                <i class="el-icon-edit tb-icon" @click="openEdit(scope.$index, scope.row)"></i>
+              </el-tooltip>
+
+              <el-tooltip v-if="!scope.row.isMust" effect="dark" content="删除" placement="top">
+                <i class="el-icon-delete tb-icon" @click="openDelete(scope.$index)"></i>
+              </el-tooltip>
+            </template>
+          </el-table-column>
+        </el-table>
+        <!-- 弹窗 新增/修改 -->
+        <base-form-add-edit
+          :index="modelIndex"
+          :show-model="showModel"
+          :sitem="sitem"
+          @refresh="refreshEdit"
+          @cancel="showModel = false"
+        />
+      </el-col>
+    </el-row>
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul>
+          <li>包</li>
+          <li>装</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row>
+          <el-col :span="6">
+            <el-form-item label="包装方式" prop="packing_way">
+              <el-input
+                placeholder="包装方式"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.packing_way"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="装箱规格" prop="packing_spec">
+              <el-input
+                placeholder="装箱规格"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.packing_spec"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="装箱重量" prop="packing_weight">
+              <digital-input
+                :values="ruleForm.packing_weight"
+                :placeholder="'装箱重量'"
+                :min="0"
+                :name="'ruleForm.packing_weight'"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="3"
+                :size="'mini'"
+                :controls="false"
+                :append="'g'"
+                @reschange="number_change($event, 'packing_weight')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="装箱尺寸" prop="packing_size">
+              <el-input
+                placeholder="装箱尺寸"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.packing_size"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="商品尺寸" prop="good_size">
+              <el-input
+                placeholder="商品尺寸"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.good_size"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="商品条形码" prop="good_bar">
+              <el-input
+                placeholder="商品条形码"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.good_bar"
+                type="number"
+                :min="0"
+                :max="9999999999999"
+                :step="0"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="包装清单" prop="packing_list">
+              <el-input
+                placeholder="包装清单"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.packing_list"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-col>
+    </el-row>
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul>
+          <li>发</li>
+          <li>货</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row>
+          <el-col :span="6">
+            <el-form-item label="供货区域" prop="supply_area">
+              <el-select
+                v-model="ruleForm.supply_area"
+                filterable
+                clearable
+                :disabled="type === 'view' || type === 'editCoin'"
+                style="width: 100%"
+                placeholder="供货区域"
+              >
+                <el-option
+                  v-for="group in options6"
+                  :key="group.id"
+                  :label="group.name"
+                  :value="group.id"
+                />
+              </el-select>
+            </el-form-item>
+          </el-col>
+
+          <el-col :span="6" style="padding-bottom:1px">
+            <el-form-item label="物流时间" prop="delivery_day">
+              <digital-input
+                :values="ruleForm.delivery_day"
+                :placeholder="'物流时间'"
+                :min="0"
+                :name="'ruleForm.delivery_day'"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="'天'"
+                @reschange="number_change($event, 'delivery_day')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6" style="padding-bottom:1px">
+            <el-form-item label="供货周期" prop="lead_time">
+              <digital-input
+                :values="ruleForm.lead_time"
+                :placeholder="'物流时间'"
+                :min="0"
+                :name="'ruleForm.lead_time'"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="'天'"
+                @reschange="number_change($event, 'lead_time')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6" style="padding-bottom:1px">
+            <el-form-item label="调样周期" prop="sample_day">
+              <digital-input
+                :values="ruleForm.sample_day"
+                :placeholder="'调样周期'"
+                :min="0"
+                :name="'ruleForm.sample_day'"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="'天'"
+                @reschange="number_change($event, 'sample_day')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="发货地" prop="delivery_place">
+              <search-area
+                :value="areaInfo.delivery_place.code"
+                :is-detail="true"
+                size="mini"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :names="areaInfo.delivery_place.label"
+                placeholder="发货地"
+                :level="3"
+                @searchChange="areaChange($event, 'delivery_place')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="产地" prop="origin_place">
+              <search-area
+                :value="areaInfo.origin_place.code"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :is-detail="true"
+                size="mini"
+                :names="areaInfo.origin_place.label"
+                placeholder="产地"
+                :level="3"
+                @searchChange="areaChange($event, 'origin_place')"
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-col>
+    </el-row>
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul>
+          <li>图</li>
+          <li>片</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row style="padding: 0 0 20px 0">
+          <el-col :span="6">
+            <el-form-item label="商品缩略" prop="good_thumb_img" class="activity-upload my-label-top">
+              <div class="btnupload" style="position: relative">
+                <img v-if="ruleForm.good_thumb_img" :src="ruleForm.good_thumb_img" class="avatar" />
+                <i v-else class="el-icon-plus avatar-uploader-icon"></i>
+                <file-upload
+                  class="Upload"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :accept="'.jpg,.png,.jpeg'"
+                  :multiple="true"
+                  :uploadcondition="beforeAvatarUpload"
+                  @UploadErrorEvent="UploadErrorEvent($event, 'good_thumb_img')"
+                  @UploadSuccessEvent="UploadSuccessEvent($event, 'good_thumb_img')"
+                ></file-upload>
+              </div>
+              <div class="txt-tips fl">
+                <p>尺寸比例:</p>
+                <p>1:1</p>
+              </div>
+            </el-form-item>
+          </el-col>
+          <el-col :span="9">
+            <el-form-item label="商品主图" prop="good_img">
+              <div class="good_info_img_div" style="display:flex">
+                <ul v-if="ruleForm.good_img" class="clear">
+                  <li
+                    class="img-show-li"
+                    v-viewer
+                    v-for="(img, iindex) in ruleForm.good_img"
+                    :key="img + iindex"
+                  >
+                    <div class="img-show-li-div">
+                      <img :src="img" class="img-show" alt />
+                      <i
+                        v-if="type == 'add' || type === 'editBase' || type === 'edit'"
+                        class="el-icon-close"
+                        @click="closeImg(iindex, 'good_img')"
+                      ></i>
+                    </div>
+                  </li>
+                  <li
+                    class="img-show-li"
+                    v-if="
+                      ruleForm.good_img.length < 11 &&
+                      (type == 'add' || type === 'editBase' || type === 'edit')
+                    "
+                  >
+                    <div class="activity-upload">
+                      <div class="btnupload" style="position: relative">
+                        <i class="el-icon-plus avatar-uploader-icon"></i>
+                        <file-upload
+                          class="Upload"
+                          :disabled="type === 'view' || type === 'editCoin'"
+                          :accept="'.jpg,.png,.jpeg'"
+                          :multiple="true"
+                          :uploadcondition="beforeAvatarUpload"
+                          @UploadErrorEvent="UploadErrorEvent($event, 'good_img')"
+                          @UploadSuccessEvent="UploadSuccessEvent($event, 'good_img')"
+                        ></file-upload>
+                      </div>
+                    </div>
+                  </li>
+                </ul>
+              </div>
+            </el-form-item>
+          </el-col>
+          <el-col :span="9">
+            <el-form-item label="详情介绍" prop="good_info_img">
+              <div class="good_info_img_div" style="display:flex">
+                <ul v-if="ruleForm.good_info_img" class="clear">
+                  <li
+                    class="img-show-li"
+                    v-viewer
+                    v-for="(img, iindex) in ruleForm.good_info_img"
+                    :key="img + iindex"
+                  >
+                    <div class="img-show-li-div">
+                      <img :src="img" class="img-show" alt />
+                      <i
+                        v-if="type == 'add' || type === 'editBase' || type === 'edit'"
+                        class="el-icon-close"
+                        @click="closeImg(iindex, 'good_info_img')"
+                      ></i>
+                    </div>
+                  </li>
+                  <li
+                    class="img-show-li"
+                    v-if="
+                      ruleForm.good_info_img.length < 11 &&
+                      (type == 'add' || type === 'editBase' || type === 'edit')
+                    "
+                  >
+                    <div class="activity-upload">
+                      <div class="btnupload" style="position: relative">
+                        <i class="el-icon-plus avatar-uploader-icon"></i>
+                        <file-upload
+                          class="Upload"
+                          :disabled="type === 'view' || type === 'editCoin'"
+                          :accept="'.jpg,.png,.jpeg'"
+                          :multiple="true"
+                          :uploadcondition="beforeAvatarUpload"
+                          @UploadErrorEvent="UploadErrorEvent($event, 'good_info_img')"
+                          @UploadSuccessEvent="
+                            UploadSuccessEvent($event, 'good_info_img')
+                          "
+                        ></file-upload>
+                      </div>
+                    </div>
+                  </li>
+                </ul>
+              </div>
+            </el-form-item>
+          </el-col>
+          <el-col :span="24">
+            <div style="font-size: 12px; color: #606266">
+              <span style="padding: 0 0 0 20px">图片大小:小于1M</span>
+              <span style="padding: 0 0 0 20px">图片类型.jpg/png/jpeg</span>
+            </div>
+          </el-col>
+        </el-row>
+      </el-col>
+    </el-row>
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul style="padding: 0">
+          <li>固</li>
+          <li>定</li>
+          <li>与</li>
+          <li>阶</li>
+          <li>梯</li>
+          <li>成</li>
+          <li>本</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row>
+          <el-col :span="6">
+            <el-form-item label="打样费" prop="demo_fee" label-width="75px">
+              <digital-input
+                :values="ruleForm.demo_fee"
+                :placeholder="'打样费'"
+                :min="0"
+                :name="'ruleForm.demo_fee'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元'"
+                @reschange="number_change($event, 'demo_fee')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="开模费" prop="open_fee" label-width="75px">
+              <digital-input
+                :values="ruleForm.open_fee"
+                :placeholder="'开模费'"
+                :min="0"
+                :name="'ruleForm.open_fee'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元/件'"
+                @reschange="number_change($event, 'open_fee')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="调样费" prop="sample_fee" label-width="75px">
+              <digital-input
+                :values="ruleForm.sample_fee"
+                :placeholder="'调样费'"
+                :min="0"
+                :name="'ruleForm.sample_fee'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元'"
+                @reschange="number_change($event, 'sample_fee')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="市场价" prop="market_price" label-width="75px">
+              <digital-input
+                :values="ruleForm.market_price"
+                :placeholder="'市场价'"
+                :min="0"
+                :name="'ruleForm.market_price'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元'"
+                @reschange="number_change($event, 'market_price')"
+              />
+            </el-form-item>
+          </el-col>
+
+          <!-- <el-col :span="6">
+            <el-form-item label="启用阶梯" prop="is_step">
+              <el-select
+                v-model="ruleForm.is_step"
+                filterable
+                :disabled="type === 'view' || type === 'editBase'"
+                style="width: 100%"
+                placeholder="启用阶梯"
+                @change="is_step_change"
+              >
+                <el-option
+                  v-for="group in options5"
+                  :key="group.id"
+                  :label="group.name"
+                  :value="group.id"
+                />
+              </el-select>
+            </el-form-item>
+          </el-col>-->
+          <el-col :span="6" v-show="is_noble && ruleForm && ruleForm.is_gold_price === '1'">
+            <el-form-item label="供应商采购金价" prop="cgd_gold_price" label-width="130px">
+              <digital-input
+                :values="ruleForm.cgd_gold_price"
+                :placeholder="'供应商采购金价'"
+                :min="0"
+                :name="'ruleForm.cgd_gold_price'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元/g'"
+                @reschange="number_change($event, 'cgd_gold_price')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6" v-show="is_noble && ruleForm && ruleForm.is_gold_price === '1'">
+            <el-form-item label="当前金价">
+              <el-input v-model="ruleForm.noble_price" disabled maxlength="15" placeholder="当前金价">
+                <template slot="append">元/g</template>
+              </el-input>
+            </el-form-item>
+          </el-col>
+          <el-col :span="24" style="padding-left: 18px">
+            <el-table
+              :data="ladder_tableData"
+              :size="'mini'"
+              border
+              stripe
+              style="width: 100%; margin: 0 0 20px 0"
+            >
+              <el-table-column prop="min_num" label="起订量(>=)" />
+              <el-table-column prop="nake_fee" label="成本单价" />
+              <el-table-column prop="cost_fee" label="工艺费" />
+              <el-table-column prop="delivery_fee" label="物流费" />
+              <el-table-column prop="cert_fee" label="证书费" />
+              <el-table-column prop="mark_fee" label="加标费" />
+              <el-table-column prop="package_fee" label="包装费" />
+              <el-table-column prop="other_fee" label="其他费用" />
+              <el-table-column prop="nake_total" label="成本合计" />
+              <el-table-column
+                fixed="right"
+                v-if="type === 'add' || type === 'editCoin' || type === 'edit'"
+                width="80px"
+              >
+                <template slot="header" slot-scope="scope">
+                  <span>操作</span>
+                  <el-tooltip effect="dark" content="添加阶梯" placement="top">
+                    <i class="el-icon-circle-plus-outline tb-icon fr" @click="openCostEdit(-1, {})"></i>
+                  </el-tooltip>
+                </template>
+                <template slot-scope="scope">
+                  <el-tooltip effect="dark" content="修改" placement="top">
+                    <i class="el-icon-edit tb-icon" @click="openCostEdit(scope.$index, scope.row)"></i>
+                  </el-tooltip>
+
+                  <el-tooltip effect="dark" content="删除" placement="top">
+                    <i class="el-icon-delete tb-icon" @click="openCostEditDelete(scope.$index)"></i>
+                  </el-tooltip>
+                </template>
+              </el-table-column>
+            </el-table>
+          </el-col>
+        </el-row>
+        <!-- 弹窗 新增/修改 -->
+        <cost-form-add-edit
+          :index="costmodelIndex"
+          :show-model="costshowModel"
+          :sitem="costsitem"
+          @refresh="costrefreshEdit"
+          @cancel="costshowModel = false"
+        />
+
+        <product-modal
+          :type="modalType"
+          :editIndex="editIndex"
+          :editItem="editItem"
+          :visible.sync="mVisible"
+        />
+
+        <product-list-modal :visible.sync="visible" @selected="handleProductSelected" />
+      </el-col>
+
+      <el-col
+        :span="24"
+        v-if="
+          type === 'editBase' || type === 'add' || type === 'editCoin' || type === 'edit'
+        "
+        style="text-align: right; padding: 15px 0 15px 0; border-top: 1px solid #dcdfe6"
+      >
+        <el-button :size="'mini'" type="primary" @click="submitForm">保 存</el-button>
+      </el-col>
+    </el-row>
+  </el-form>
+</template>
+<script>
+import asyncRequest from "@/apis/service/goodStore/goodsCost";
+import resToken from "@/mixins/resToken";
+import { mapGetters } from "vuex";
+import baseFormAddEdit from "./baseFormAddEdit";
+import costFormAddEdit from "./costFormAddEdit";
+import companyHelper from "@/mixins/companyHelper";
+import { add_sum, accMul } from "@/utils/validate";
+import CompanySort from "@/components/globalComponents/company-sort/index.vue";
+import { replaceTextWrapAndSpace } from "@/utils";
+import ProductModal from "./productModal.vue";
+import ProductListModal from "./productListModal.vue";
+import { isStockOptions } from "@/assets/js/statusList";
+
+import {
+  options1,
+  options2,
+  options3,
+  options4,
+  options5,
+  options6,
+  options7,
+  options8,
+  options9,
+  rules
+} from "../columns";
+
+export default {
+  name: "goodsCostAdd",
+  mixins: [resToken, companyHelper],
+  props: ["showModel", "id", "type", "sitem", "business_companyNo"],
+  components: {
+    CompanySort,
+    baseFormAddEdit,
+    costFormAddEdit,
+    ProductModal,
+    ProductListModal
+  },
+  computed: {
+    ...mapGetters(["tablebtnSize", "searchSize", "size"]),
+    powers() {
+      const { btnList } = this.$store.getters;
+      const tran = btnList.find(i => i.menu_route == "goodsCostAdd") || {};
+      const { action } = tran ?? {};
+      return action ?? [];
+    }
+  },
+  watch: {
+    newTime: function(val) {
+      if (val) {
+        this.initForm();
+      }
+    }
+  },
+  data() {
+    return {
+      isStockOptions,
+      areaInfo: {
+        delivery_place: {
+          code: [],
+          label: []
+        },
+        origin_place: {
+          code: [],
+          label: []
+        }
+      },
+      mVisible: false,
+      modalType: "",
+      editItem: null,
+      editIndex: -1,
+      childTableData: [],
+      visible: false,
+      companyName: "",
+      spec_tableData: [],
+      is_support_stock: "",
+      cat_id_name: "",
+      brand_name: "",
+      unit_name: "",
+      costshowModel: false,
+      costmodelIndex: "",
+      costsitem: {},
+      showModel: false,
+      modelIndex: "",
+      is_noble: false,
+      size: "small",
+      status: "",
+      rulesThis: this.rules,
+      activeName: "1",
+      loading: true,
+      supplierName: "",
+      options1: options1,
+      options2: options2,
+      options3: options3,
+      options4: options4,
+      options5: options5,
+      options6: options6,
+      options7: options7,
+      options8: options8,
+      options9: options9,
+      sourceCombindList: [],
+      ruleForm: {
+        is_combind: "",
+        company_id: ""
+      },
+      spec_tableData: [],
+      old_spec_tableData: [],
+      ladder_tableData: [],
+      old_ladder_tableData: [],
+      rules: rules
+    };
+  },
+  mounted() {
+    this.initForm();
+  },
+  methods: {
+    num_change(evt, index) {
+      this.$set(this.childTableData, index, {
+        ...this.childTableData[index],
+        child_num: evt
+      });
+    },
+    onSaveLine(index) {
+      const { child_num } = this.childTableData[index];
+
+      if (Number(child_num) === 0) {
+        this.$message.warning("组合比例不能为零!");
+        return;
+      }
+
+      this.editIndex = -1;
+    },
+    onChildProdChange(index = null, type = "view") {
+      this.modalType = type;
+
+      if (type === "add") {
+        if (this.editIndex !== -1) {
+          this.$message.warning("当前有正在编辑的子商品,请先保存");
+          return;
+        }
+
+        if (this.childTableData.length === 10) {
+          this.$message.warning("子商品最多不能超过十条");
+          return;
+        }
+      }
+
+      if (type === "view" && index !== null) {
+        this.editItem = { ...this.childTableData[index] };
+      } else {
+        this.editItem = null;
+      }
+
+      if (type === "edit") {
+        if (this.editIndex !== -1) {
+          this.$message.warning("当前有正在编辑的子商品,请先保存");
+          return;
+        }
+
+        this.editIndex = index !== null ? index : -1;
+        return;
+      }
+
+      this[type === "view" ? "mVisible" : "visible"] = true;
+    },
+    handleProductSelected(selecteds = []) {
+      const childCodes = this.childTableData.map(({ childCode }) => childCode);
+      selecteds.forEach(item => {
+        const { childCode, child_name } = item;
+        const _t = { childCode, child_name, child_num: 1 };
+        if (!childCodes.includes(childCode)) {
+          this.childTableData.push(_t);
+        }
+      });
+    },
+    onCompanyChange() {
+      if (this.type === "add") {
+        this.ruleForm.company_id = this.currentCompany;
+      }
+    },
+    async initForm() {
+      this.loading = true;
+      this.resetFormData();
+      this.rulesThis = this.rules;
+      await this.resetForm();
+      this.sch_is_noble();
+      this.good_type_change();
+      await this.get_golpricelast();
+      this.stock_change();
+
+      this.loading = false;
+    },
+    async number_change(e, key) {
+      this.ruleForm[key] = e + "" || "0";
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+      await this.get_all_fee();
+    },
+    openEdit(index, sitem) {
+      this.modelIndex = index;
+      this.sitem = sitem;
+      this.showModel = true;
+    },
+    stock_change() {
+      if (this.ruleForm.is_stock === "0") {
+        this.ruleForm.is_combind = "0";
+      }
+
+      this.rulesThis.stock_moq[0].required = this.ruleForm.is_stock === "1";
+    },
+    onDeleteItem(index) {
+      if (this.editIndex !== -1) {
+        this.$message.warning("当前有正在编辑的子商品,请先保存");
+        return;
+      }
+
+      this.childTableData.splice(index, 1);
+      // if (index === this.editIndex) {
+      //   this.editIndex = -1;
+      // }
+    },
+    openCostEdit(index, sitem) {
+      // const { is_step } = this.ruleForm;
+      // if (index === -1 && is_step === "0" && this.ladder_tableData.length > 0) {
+      //   this.$message.warning("不启用阶梯成本,只能录入一条阶梯成本信息!");
+      //   return;
+      // }
+      this.costmodelIndex = index;
+      this.costsitem = sitem;
+      this.costshowModel = true;
+    },
+    openDelete(index) {
+      this.spec_tableData.splice(index, 1);
+    },
+    openCostEditDelete(index) {
+      this.ladder_tableData.splice(index, 1);
+    },
+    // is_step_change() {
+    //   const { is_step } = this.ruleForm;
+    //   if (is_step === "0") {
+    //     let res = [];
+    //     let list =
+    //       this.ladder_tableData.length === 0
+    //         ? []
+    //         : JSON.parse(JSON.stringify(this.ladder_tableData));
+    //     if (list.length > 0) {
+    //       res.push(list[0]);
+    //     }
+    //     this.ladder_tableData = res;
+    //   }
+    // },
+    async submitForm() {
+      if (this.editIndex !== -1) {
+        this.$message.warning("当前有正在编辑的子商品,请先保存");
+        return;
+      }
+
+      const { is_combind, is_gold_price } = this.ruleForm;
+
+      if (is_combind === "1" && is_gold_price === "1" && this.is_noble) {
+        this.$message.warning("组合商品不能启用实时金价");
+        return;
+      }
+
+      this.sch_is_noble();
+      this.good_type_change();
+      this.ruleForm.good_remark = replaceTextWrapAndSpace(
+        this.ruleForm.good_remark
+      );
+      this.ruleForm.craft_desc = replaceTextWrapAndSpace(
+        this.ruleForm.craft_desc
+      );
+      this.ruleForm.after_sales = replaceTextWrapAndSpace(
+        this.ruleForm.after_sales
+      );
+      await this.$refs.ruleForm.validate(async valid => {
+        if (valid) {
+          if (!this.loading) {
+            this.loading = true;
+            const {
+              noble_weight,
+              weight,
+              is_gold_price,
+              stock_moq,
+              is_stock,
+              supplierNo,
+              company_id
+            } = this.ruleForm;
+
+            if (supplierNo.toString() === company_id) {
+              this.$message.warning("供应商不能与业务公司相同!");
+              loading = false;
+              return;
+            }
+            if (this.is_support_stock + "" === "0" && is_stock === "0") {
+              this.$message.warning(
+                "该商品为供应商退货业务创建的,不允许改为非库存品!"
+              );
+              loading = false;
+              return;
+            }
+            if (is_stock === "0") {
+              const { scode, sdata, smsg } = await this.getSupplerPower();
+              if (scode === 0) {
+                const { has_account } = sdata;
+                if (has_account + "" === "1") {
+                  this.$message.warning(
+                    "该供应商已开通账号,不允许创建非库存商品!"
+                  );
+                  this.loading = false;
+                  return;
+                }
+              }
+            }
+            if (this.spec_tableData.length === 0) {
+              this.$message.warning("请录入商品规格信息!");
+              this.loading = false;
+              return;
+            }
+            let isMust = true;
+            this.spec_tableData.forEach(e => {
+              if (e.isMust && !e.spec_value_id) {
+                isMust = false;
+              }
+            });
+            if (!isMust) {
+              this.$message.warning("分类绑定的规格必须填写规格值!");
+              this.loading = false;
+              return;
+            }
+            if (this.ladder_tableData.length === 0) {
+              this.$message.warning("请录入阶梯成本!");
+              this.loading = false;
+              return;
+            }
+            // stock_moq
+
+            if (is_stock === "1") {
+              let min = parseInt(this.ladder_tableData[0].min_num),
+                smoq = parseInt(stock_moq);
+              this.ladder_tableData.forEach(si => {
+                let n = parseInt(si.min_num);
+                min = n < min ? n : min;
+              });
+
+              if (smoq < min) {
+                this.$message.warning("备库起订量不能低于成本最低起订量!");
+                this.loading = false;
+                return;
+              }
+            }
+
+            if (this.is_noble) {
+              if (noble_weight * 1000 > weight * 1000) {
+                this.$message.warning("贵金属总重量不能大于商品总重量!");
+                this.loading = false;
+                return;
+              }
+            }
+
+            if (is_gold_price === "1" && this.is_noble) {
+              let is_p = true;
+              this.ladder_tableData.forEach(v => {
+                if (v.nake_fee * 1 !== 0) {
+                  is_p = false;
+                }
+              });
+            }
+
+            let model = JSON.parse(JSON.stringify(this.ruleForm));
+            model.cat_id = model.cat_id.toString();
+            model.brandid = model.brandid.toString();
+            model.supplierNo = model.supplierNo.toString();
+            model.delivery_place = model.delivery_place.toString();
+            model.origin_place = model.origin_place.toString();
+            model.good_info_img = model.good_info_img.toString();
+            model.good_img = model.good_img.toString();
+            model.unit = model.unit.toString();
+            model.speclist = JSON.parse(JSON.stringify(this.setResData(1)));
+            model.good_ladder = JSON.parse(JSON.stringify(this.setResData(2)));
+            model.config = model.config.toString();
+            model.is_exclusive =
+              model.is_exclusive.length > 0
+                ? model.is_exclusive[model.is_exclusive.length - 1]
+                : "";
+            let res = {};
+            delete model["id"];
+
+            if (model.is_combind === "1") {
+              if (this.childTableData.length === 0) {
+                this.message.warning("请添加子商品!");
+                return;
+              }
+
+              if (this.childTableData.length === 1) {
+                this.message.warning("子商品数量必须大于1!");
+                return;
+              }
+
+              if (this.type === "add") {
+                model.combind_list = this.childTableData.map(item => ({
+                  ...item,
+                  is_del: "0"
+                }));
+              } else {
+                const currentIds = this.childTableData.map(({ id }) => id);
+
+                // 删除项
+                const delCombinds = this.sourceCombindList
+                  .filter(({ id }) => !currentIds.includes(String(id)))
+                  .map(item => ({
+                    ...item,
+                    is_del: "1"
+                  }));
+
+                //原项
+                const sourceCombinds = this.sourceCombindList
+                  .filter(({ id }) => currentIds.includes(String(id)))
+                  .map(item => ({
+                    ...item,
+                    is_del: "0"
+                  }));
+
+                const addCombinds = this.childTableData
+                  .filter(({ id }) => !id)
+                  .map(({ childCode, child_num, child_name }) => ({
+                    childCode,
+                    child_num,
+                    child_name,
+                    is_del: "0"
+                  }));
+
+                model.combind_list = [
+                  ...delCombinds,
+                  ...sourceCombinds,
+                  ...addCombinds
+                ];
+              }
+            }
+
+            if (this.type === "add") {
+              delete model["spuCode"];
+              res = await asyncRequest.add(model);
+            } else if (this.type === "editBase") {
+              let item1 = this.setModel(model, "1");
+              res = await asyncRequest.update(item1);
+            } else if (this.type === "editCoin") {
+              let item2 = this.setModel(model, "2");
+              res = await asyncRequest.updateP(item2);
+            } else {
+              model.companyNo = model.company_id;
+              delete model["company_id"];
+              res = await asyncRequest.edit_update(model);
+            }
+            // console.log(res);
+            this.loading = false;
+            const { code, data, message } = res;
+            if (code === 0) {
+              const title =
+                this.type === "add"
+                  ? "新建成功!"
+                  : this.type === "editBase"
+                  ? "基础信息修改成功!"
+                  : this.type === "editCoin"
+                  ? "成本信息修改成功!"
+                  : "商品信息修改成功";
+              this.$notify.success({
+                title: title,
+                message: ""
+              });
+              this.showModelThis = false;
+              // 刷新
+              this.$emit("refresh");
+            } else if (code >= 100 && code <= 104) {
+              await this.logout();
+            } else {
+              this.$message.warning(message);
+            }
+          }
+        } else {
+          // console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+    groupGoodChange(e) {
+      this.ruleForm.is_combind = e;
+    },
+    //获取规格值
+    setResData(type) {
+      let list = JSON.parse(
+        JSON.stringify(type === 1 ? this.spec_tableData : this.ladder_tableData)
+      );
+      let oldlist = JSON.parse(
+        JSON.stringify(
+          type === 1 ? this.old_spec_tableData : this.old_ladder_tableData
+        )
+      );
+      let hasIDlist = [];
+      list.forEach(a => {
+        if (a.id !== "") {
+          hasIDlist.push(a);
+        }
+      });
+      let newList = [];
+      let resList = [];
+      oldlist.forEach((a, ai) => {
+        let item = null;
+        let index = hasIDlist.findIndex(b => a.id === b.id);
+        if (index === -1) {
+          item = JSON.parse(JSON.stringify(a));
+          item.is_del = "1";
+        } else {
+          item = JSON.parse(JSON.stringify(hasIDlist[index]));
+        }
+        newList.push(item);
+      });
+      list.forEach(b => {
+        if (b.id === "") {
+          b.is_del = "0";
+          newList.push(b);
+        }
+      });
+      if (type === 1) {
+        newList.forEach(a => {
+          let m = {
+            id: a.id,
+            spec_id: a.spec_id,
+            spec_value_id: a.spec_value_id,
+            is_del: a.is_del || "0"
+          };
+          resList.push(m);
+        });
+      } else {
+        newList.forEach(a => {
+          let m = {
+            id: a.id,
+            min_num: a.min_num,
+            nake_fee: a.nake_fee,
+            cost_fee: a.cost_fee,
+            delivery_fee: a.delivery_fee,
+            cert_fee: a.cert_fee,
+            mark_fee: a.mark_fee,
+            package_fee: a.package_fee,
+            other_fee: a.other_fee,
+            is_del: a.is_del || "0"
+          };
+          resList.push(m);
+        });
+      }
+      return resList;
+    },
+    setladder() {
+      let list = JSON.parse(JSON.stringify(this.ladder_tableData));
+      let oldlist = JSON.parse(JSON.stringify(this.old_ladder_tableData));
+      let hasIDlist = [];
+      list.forEach(a => {
+        if (a.id !== "") {
+          hasIDlist.push(a);
+        }
+      });
+      let newList = [];
+      let resList = [];
+      oldlist.forEach((a, ai) => {
+        let item = null;
+        let index = hasIDlist.findIndex(b => a.id === b.id);
+        if (index === -1) {
+          item = JSON.parse(JSON.stringify(a));
+          item.is_del = "1";
+        } else {
+          item = JSON.parse(JSON.stringify(b));
+        }
+        newList.push(item);
+      });
+      list.forEach(b => {
+        if (b.id === "") {
+          b.is_del = "0";
+          newList.push(b);
+        }
+      });
+      newList.forEach(a => {
+        let m = {
+          id: a.id,
+          min_num: a.min_num,
+          spec_value_id: a.spec_value_id,
+          is_del: a.is_del || "0"
+        };
+        resList.push(m);
+      });
+      return resList;
+    },
+    //规格编辑修改
+    refreshEdit(e) {
+      let item = JSON.parse(JSON.stringify(e));
+      const {
+        index,
+        id,
+        spec_id,
+        isMust,
+        spec_value,
+        spec_value_id,
+        spec_value_value
+      } = item;
+      let ffindex = -1;
+      this.spec_tableData.forEach((i, findex) => {
+        if (i.spec_id === spec_id) {
+          ffindex = findex;
+          this.spec_tableData[findex].id = id;
+          this.spec_tableData[findex].spec_id = spec_id;
+          // this.spec_tableData[findex].isMust = isMust;
+          this.spec_tableData[findex].spec_value = spec_value;
+          this.spec_tableData[findex].spec_value_id = spec_value_id;
+          this.spec_tableData[findex].spec_value_value = spec_value_value;
+        }
+      });
+      if (ffindex === -1) {
+        this.spec_tableData.push(item);
+      }
+      this.showModel = false;
+    },
+    //阶梯成本修改
+    async costrefreshEdit(e) {
+      let item = JSON.parse(JSON.stringify(e));
+      const {
+        index,
+        id,
+        cost_fee,
+        delivery_fee,
+        min_num,
+        nake_fee,
+        cert_fee,
+        mark_fee,
+        package_fee,
+        other_fee
+      } = item;
+      let isok = true;
+      let ffindex = -1;
+      if (this.ladder_tableData && this.ladder_tableData.length === 0) {
+        this.ladder_tableData.push(item);
+      } else {
+        this.ladder_tableData.forEach((i, findex) => {
+          if (parseInt(min_num + "") === parseInt(i.min_num + "")) {
+            isok = false;
+            this.ladder_tableData[findex].id = id;
+            this.ladder_tableData[findex].min_num = min_num;
+            this.ladder_tableData[findex].cost_fee = cost_fee;
+            this.ladder_tableData[findex].delivery_fee = delivery_fee;
+            this.ladder_tableData[findex].nake_fee = nake_fee;
+            this.ladder_tableData[findex].cert_fee = cert_fee;
+            this.ladder_tableData[findex].mark_fee = mark_fee;
+            this.ladder_tableData[findex].package_fee = package_fee;
+            this.ladder_tableData[findex].other_fee = other_fee;
+          }
+        });
+        if (isok) {
+          this.ladder_tableData.forEach((i, findex) => {
+            if (findex === parseInt(index + "")) {
+              ffindex = findex;
+              this.ladder_tableData[findex].id = id;
+              this.ladder_tableData[findex].min_num = min_num;
+              this.ladder_tableData[findex].cost_fee = cost_fee;
+              this.ladder_tableData[findex].delivery_fee = delivery_fee;
+              this.ladder_tableData[findex].nake_fee = nake_fee;
+              this.ladder_tableData[findex].cert_fee = cert_fee;
+              this.ladder_tableData[findex].mark_fee = mark_fee;
+              this.ladder_tableData[findex].package_fee = package_fee;
+              this.ladder_tableData[findex].other_fee = other_fee;
+            }
+          });
+          if (ffindex === -1) {
+            this.ladder_tableData.push(item);
+          }
+        }
+      }
+
+      await this.get_all_fee();
+      this.showModel = false;
+    },
+    async get_golpricelast() {
+      const { noble_metal } = this.ruleForm;
+      if (noble_metal) {
+        let model = {
+          type: noble_metal
+        };
+        const { code, data, message } = await asyncRequest.golpricelast(model);
+        if (code === 0) {
+          data.forEach(e => {
+            if (e.type) {
+              this.ruleForm.noble_price = e.price;
+            }
+          });
+        } else if (code >= 100 && code <= 104) {
+          await this.logout();
+        } else {
+          this.$message.warning(message);
+        }
+      } else {
+        this.ruleForm.noble_price = "0";
+      }
+    },
+    async get_all_fee() {
+      await this.get_golpricelast();
+      this.ladder_tableData.forEach((si, sii) => {
+        this.ladder_tableData[sii].nake_total = this.count_fee(si);
+        this.$set(this.ladder_tableData, sii, this.ladder_tableData[sii]);
+      });
+    },
+    count_fee(e) {
+      const {
+        noble_price, //供应商采购金价
+        is_gold_price, //是否启用实时金价
+        noble_weight //贵金属重量
+      } = this.ruleForm;
+      const {
+        nake_fee, //成本单价
+        cost_fee, //工艺费
+        delivery_fee, //物流费
+
+        cert_fee, //证书费
+        mark_fee, //加标费
+        package_fee, //包装费
+        other_fee //其他费用
+      } = e;
+      let XA = add_sum(nake_fee, delivery_fee),
+        XB = add_sum(package_fee, cert_fee),
+        XC = add_sum(mark_fee, other_fee),
+        XD = 0;
+      let total = add_sum(add_sum(XA, XB), XC);
+      // console.log(total);
+      if (this.is_noble && is_gold_price === "1") {
+        XD = add_sum(
+          accMul(noble_price, noble_weight),
+          accMul(noble_weight, cost_fee)
+        );
+        total = add_sum(total, XD);
+      }
+      return total;
+    },
+
+    dataSort(key) {
+      return function(a, b) {
+        let value1 = a[key];
+        let value2 = b[key];
+        return value1 - value2;
+      };
+    },
+    async getSupplerPower() {
+      const { code, data, message } = await asyncRequest.supplerlist({
+        code: this.ruleForm.supplierNo[0],
+        is_platform: "",
+        name: "",
+        page: 1,
+        size: 1000
+      });
+      return { scode: code, sdata: data, smsg: message };
+    },
+    resetFormData() {
+      this.is_support_stock = "1";
+      this.spec_tableData = [];
+      this.old_spec_tableData = [];
+      this.ladder_tableData = [];
+      this.old_ladder_tableData = [];
+      this.cat_id_name = "";
+      this.is_noble = false;
+      this.status = "";
+      this.brand_name = "";
+      this.unit_name = "";
+      this.supplierName = "";
+
+      this.ruleForm = {
+        id: "",
+        spuCode: "",
+        cat_id: [],
+        brandid: [],
+        noble_weight: "0",
+        weight: "0",
+        good_type: "0",
+        is_stock: "0",
+        supplierNo: [],
+        company_id: "",
+        is_auth: "",
+        tax: "",
+        good_name: "",
+        unit: [],
+        is_exclusive: [],
+        noble_metal: "",
+        is_gold_price: "",
+        moq: "",
+        customized: "",
+        after_sales: "",
+        craft_desc: "",
+        good_remark: "",
+        //包装发货/图片
+        packing_list: "",
+        packing_way: "",
+        packing_spec: "",
+        packing_weight: "",
+        packing_size: "",
+        good_size: "",
+        good_bar: "",
+        supply_area: "",
+        delivery_place: [],
+        origin_place: [],
+        delivery_day: "0",
+        lead_time: "0",
+        sample_day: "0",
+        good_thumb_img: "",
+        good_img: [],
+        good_info_img: [],
+        //固定阶梯成本
+        demo_fee: "0",
+        open_fee: "0",
+        sample_fee: "0",
+        market_price: "0",
+        cgd_gold_price: "0",
+        noble_price: "0",
+        // is_step: "0",
+        is_diff: "",
+        config: [],
+        other_config: "",
+        stock_moq: "0",
+        is_combind: ""
+      };
+    },
+
+    async resetForm() {
+      // 重置
+      await this.$nextTick(async () => {
+        if (this.$refs.ruleForm) {
+          this.$refs.ruleForm.resetFields();
+          this.$refs.ruleForm.clearValidate();
+          this.spec_tableData = [];
+          this.old_spec_tableData = [];
+          this.ladder_tableData = [];
+          this.old_ladder_tableData = [];
+          const {
+            id,
+            companyName,
+            spuCode, //string	商品spuCode
+            // good_code, //string	无
+            good_name, //string	商品名称
+            // cat_id, //string	分类id
+            cat_info, //array 分类
+            brand_id, //string	品牌id
+            unit,
+            supplierName,
+            companyNo, //	string	企业公司id
+            good_unit, //	string	商品单位
+            good_type, //string	是否定制 1是0否
+            moq, //string	起订量
+            is_exclusive, //	string	是否是专属
+            customized, //	string	定制工期
+            tax, //string	税率
+            supplierNo, //	string	供应商
+            is_auth, //string	是否有销售权限0 否1 是
+            auth_img, //	string	无
+            exclusive,
+            is_stock, //
+            after_sales, //	string	售后说明
+            craft_desc, //	string	工艺说明
+            good_remark, //	string	商品备注
+            weight, //	string	重量
+            packing_way, //	string	包装方式
+            packing_size, //	string	包装尺寸
+            good_size, //商品尺寸
+            packing_spec, //	string	包装规格
+            packing_list, //	string	包装清单
+            packing_weight, //	string	装箱重量
+            good_bar, //	string	条形码
+            supply_area, //	string	供货区域 1 全国2 除偏远地区
+            delivery_place, //	string	发货地区
+            origin_place, //	string	产地
+            delivery_day, //	string	物流天数
+            lead_time, //	string	供货周期
+            sample_day, //string	调样周期
+            sample_fee, //		string	调样费有
+            good_img, //	string	商品图片
+            good_thumb_img, //	string	商品说略图
+            good_info_img, //	string	商品详情图
+            demo_fee, //	string	打样费
+            open_fee, //	string	开模费
+            noble_metal, //	string	金属类别
+            noble_weight, //	string	金属重量
+            is_gold_price, //	string	是否使用实时金价
+            market_price, //	string	市场价
+            cgd_gold_price, //	string	供应商采购金价
+            noble_price,
+            // is_step, //	string	是否使用阶梯价
+            // is_online, //	string	是否上线
+            status, //		string	状态
+            nakelist, //阶梯成本
+            speclist, //商品规格
+            brand_name,
+            config,
+            is_diff,
+            other_config,
+            stock_moq,
+            is_support_stock,
+            is_combind,
+            combind_list,
+          } = this.sitem;
+
+          if (this.type !== "add") {
+            const { name, area_code } = await this.getArea("delivery_place");
+
+            if(name && area_code){
+              this.areaInfo.delivery_place.label = [name];
+              this.areaInfo.delivery_place.code = [area_code];
+              const { name: _name, area_code: _area_code } = await this.getArea(
+                "origin_place"
+              );
+              this.areaInfo.origin_place.label = [_name];
+              this.areaInfo.origin_place.code = [_area_code];
+            }
+          }
+
+          this.companyName = companyName;
+
+          if (this.type !== "add") {
+            this.childTableData = combind_list.map(
+              ({ childCode, child_name, child_num, id }) => ({
+                childCode,
+                child_name,
+                child_num,
+                id
+              })
+            );
+
+            this.sourceCombindList = this.childTableData.map(item => ({
+              ...item
+            }));
+          }
+
+          this.is_support_stock = is_support_stock || "1";
+          let cat_id_name = "";
+          let cat_id = [];
+          (cat_info || []).forEach((ai, i) => {
+            cat_id_name += i === 0 ? ai.name : `_${ai.name}`;
+            cat_id.push(ai.id);
+          });
+          this.cat_id_name = cat_id_name;
+          let isok = false;
+          if (cat_id.length > 0) {
+            cat_id.forEach(i => {
+              if (i === "6") {
+                isok = true;
+              }
+            });
+          }
+          let exclusiveList = [];
+          if (exclusive && exclusive.length > 0) {
+            exclusive.forEach((a, ai) => {
+              exclusiveList.push(a.id);
+            });
+          }
+          this.is_noble = isok;
+
+          let spec_list1 =
+            speclist && speclist.length > 0
+              ? JSON.parse(JSON.stringify(speclist))
+              : [];
+          spec_list1.forEach(a => {
+            let model = {
+              id: a.id,
+              is_del: a.is_del,
+              spec_id: a.spec_id,
+              spec_value: a.spec_name,
+              spec_value_value: a.spec_value,
+              spec_value_id: a.spec_value_id,
+              spuCode: a.spuCode
+            };
+            this.spec_tableData.push(model);
+          });
+          this.old_spec_tableData = JSON.parse(
+            JSON.stringify(this.spec_tableData)
+          );
+
+          let list2 =
+            nakelist && nakelist.length > 0
+              ? JSON.parse(JSON.stringify(nakelist))
+              : [];
+          this.ladder_tableData = list2;
+          this.old_ladder_tableData = JSON.parse(
+            JSON.stringify(this.ladder_tableData)
+          );
+          this.status = status;
+          this.brand_name = brand_name;
+          this.unit_name = unit;
+          this.supplierName = supplierName || "";
+          this.ruleForm = {
+            id: id || "",
+            spuCode: spuCode || "",
+            cat_id:
+              cat_id && cat_id.length > 0 ? [cat_id[cat_id.length - 1]] : [],
+            brandid: brand_id ? [brand_id] : [],
+            noble_weight: noble_weight || "",
+            weight: weight || "",
+            good_type: good_type || "0",
+            is_stock: is_stock || "0",
+            supplierNo: supplierNo ? [supplierNo] : [],
+            company_id: companyNo,
+            is_auth: is_auth || "",
+            tax: tax ? tax + "%" : "",
+            good_name: good_name || "",
+            unit: good_unit ? [good_unit] : [],
+            is_exclusive: exclusiveList || [],
+            noble_metal: noble_metal || "",
+            is_gold_price: is_gold_price || "0",
+            moq: moq || "0",
+            customized: customized || "0",
+            after_sales: after_sales || "",
+            craft_desc: craft_desc || "",
+            good_remark: good_remark || "",
+            //包装发货/图片
+            packing_list: packing_list || "",
+            packing_way: packing_way || "",
+            packing_spec: packing_spec || "",
+            packing_weight: packing_weight || "",
+            packing_size: packing_size || "",
+            good_size: good_size || "",
+            good_bar: good_bar || "",
+            supply_area: supply_area || "",
+            delivery_place: delivery_place
+              ? (delivery_place || "").split(",")
+              : [],
+            origin_place: origin_place ? (origin_place || "").split(",") : [],
+            delivery_day: delivery_day || "",
+            lead_time: lead_time || "",
+            sample_day: sample_day || "",
+            good_thumb_img: good_thumb_img || "",
+            good_img: good_img
+              ? Object.prototype.toString.call(good_img) === "[object Array]"
+                ? []
+                : (good_img || "").split(",")
+              : [],
+            good_info_img: good_info_img
+              ? (Object.prototype.toString.call(good_info_img) ===
+                "[object Array]"
+                  ? []
+                  : good_info_img || ""
+                ).split(",")
+              : [],
+            //固定阶梯成本
+            demo_fee: demo_fee || "",
+            open_fee: open_fee || "",
+            sample_fee: sample_fee || "",
+            market_price: market_price || "",
+            cgd_gold_price: cgd_gold_price || "",
+            noble_price: noble_price || "0",
+            // is_step: is_step || "0",
+            is_diff: is_diff || "",
+            config: config ? config.split(",") : [],
+            other_config: other_config || "",
+            stock_moq: stock_moq || "0",
+            is_combind: is_combind || ""
+          };
+        }
+
+        if (this.type === "add") this.ruleForm.company_id = this.currentCompany;
+        await this.set_must_spec();
+      });
+    },
+    sch_is_noble() {
+      let list = [
+        "noble_weight",
+        "noble_metal",
+        "is_gold_price",
+        "is_diff",
+        "config",
+        "other_config",
+        "cgd_gold_price"
+      ];
+      for (let i = 0; i < list.length; i++) {
+        if (list[i] === "cgd_gold_price") {
+          const { is_gold_price } = this.ruleForm;
+          this.rulesThis[list[i]][0].required =
+            this.is_noble && is_gold_price === "1";
+          // console.log(list[i] + "===" + this.rulesThis[list[i]][0].required);
+        } else {
+          this.rulesThis[list[i]][0].required = this.is_noble;
+        }
+
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField(list[i]);
+      }
+    },
+    setModel(model, type) {
+      let item = null;
+      if (type === 1) {
+        item = JSON.parse(JSON.stringify(model));
+        delete item["demo_fee"];
+        delete item["open_fee"];
+        delete item["noble_metal"];
+        delete item["noble_weight"];
+        delete item["is_gold_price"];
+        delete item["market_price"];
+        delete item["cgd_gold_price"];
+        // delete item["is_step"];
+        delete item["good_ladder"];
+      } else {
+        const {
+          demo_fee,
+          open_fee,
+          noble_metal,
+          noble_weight,
+          is_gold_price,
+          market_price,
+          cgd_gold_price,
+          // is_step,
+          good_ladder,
+          spuCode
+        } = model;
+        item = {
+          demo_fee: demo_fee || "",
+          open_fee: open_fee || "",
+          noble_metal: noble_metal || "",
+          noble_weight: noble_weight || "",
+          is_gold_price: is_gold_price || "",
+          market_price: market_price || "",
+          cgd_gold_price: cgd_gold_price || "",
+          // is_step: is_step || "",
+          good_ladder: good_ladder || [],
+          spuCode: spuCode || ""
+        };
+      }
+      return model;
+    },
+    //商品分类选择
+    async goods_class_change(e) {
+      const { is_gold, pid, id, label, cat_desc } = e;
+      this.spec_tableData = [];
+      this.ruleForm.cat_id = id ? [id] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("cat_id");
+      this.ruleForm.after_sales = cat_desc || "";
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("after_sales");
+      this.is_noble = is_gold;
+      this.sch_is_noble();
+      await this.set_must_spec();
+      await this.get_all_fee();
+    },
+    async getArea(prop = "delivery_place") {
+      const chunks = this.sitem[prop].split(",");
+      if(chunks.length !== 3) return {nanme:"", area_code:""}
+      let { data: province } = await asyncRequest.province();
+      province = province.find(
+        ({ province_code }) => province_code === chunks[0]
+      );
+      let { data: city } = await asyncRequest.city({ code: chunks[0] });
+      city = city.find(({ city_code }) => city_code === chunks[1]);
+      let { data: area } = await asyncRequest.area({ code: chunks[1] });
+      return area.find(({ area_code }) => area_code === chunks[2]) || {};
+    },
+    async set_must_spec() {
+      const { cat_id } = this.ruleForm;
+      let id = cat_id.length == 1 ? cat_id[0] : "";
+      if (id) {
+        const { code, message, data } = await asyncRequest.catinfo({ id: id });
+
+        this.ruleForm.after_sales = data.cat_desc;
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField("after_sales");
+
+        const unionSpec = spec => {
+          const newArr = [];
+          const map = new Map();
+          spec.forEach((item, index) => {
+            if (!map.has(item.id)) {
+              map.set(item.id, index);
+              newArr.push(item);
+            }
+          });
+          return newArr;
+        };
+
+        if (code === 0) {
+          const { spec: _spec = [] } = data;
+          const spec = unionSpec(_spec);
+
+          if (spec && spec.length > 0) {
+            if (this.spec_tableData && this.spec_tableData.length > 0) {
+              this.spec_tableData.forEach(c => {
+                c.isMust = false;
+              });
+
+              spec.forEach((a, ai) => {
+                let findex = this.spec_tableData.findIndex(
+                  b => b.spec_id + "" === a.id + ""
+                );
+                if (findex !== -1) {
+                  this.spec_tableData[findex].isMust = true;
+                } else {
+                  this.spec_tableData.push({
+                    id: "",
+                    index: "1",
+                    spec_id: a.id + "",
+                    spec_value: a.spec_name,
+                    isMust: true,
+                    spec_value_value: "",
+                    spec_value_id: ""
+                  });
+                }
+              });
+            } else {
+              spec.forEach((a, ai) => {
+                let model = {
+                  id: "",
+                  index: "1",
+                  spec_id: a.id + "",
+                  spec_value: a.spec_name,
+                  isMust: true,
+                  spec_value_value: "",
+                  spec_value_id: ""
+                };
+                this.spec_tableData.push(model);
+              });
+            }
+          }
+          this.spec_tableData.map((e, ei) => {
+            e.index = ei + "";
+            return e;
+          });
+
+          this.spec_tableData.forEach((si, sii) => {
+            this.$set(this.spec_tableData, sii, si);
+          });
+
+          this.ruleForm.after_sales = data.cat_desc || "";
+          this.$refs.ruleForm &&
+            this.$refs.ruleForm.validateField("after_sales");
+        } else if (code >= 100 && code <= 104) {
+          await this.logout();
+        } else {
+          this.$message.warning(message);
+        }
+      } else {
+        this.spec_tableData.forEach((si, sii) => {
+          si.isMust = false;
+          this.$set(this.spec_tableData, sii, si);
+        });
+      }
+    },
+    async is_goold_price_change(e) {
+      await this.get_all_fee();
+    },
+    //商品品牌选择
+    brandidsearchChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.brandid = id ? [id] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("brandid");
+    },
+    //供应商选择
+    supplierNosearchChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.supplierNo = code ? [code] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("supplierNo");
+    },
+    //业务企业选择
+    company_idsearchChange(e) {
+      const { code } = e;
+      this.ruleForm.company_id = code || "";
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("company_id");
+    },
+    //税点选择
+    taxsearchChange(e) {
+      this.ruleForm.tax = e;
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("tax");
+    },
+    //专属类型选择
+    exclusiveSearchChange(e) {
+      this.ruleForm.is_exclusive = e;
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("is_exclusive");
+    },
+    //单位选择
+    unitsearchChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.unit = code ? [code] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("unit");
+    },
+    //贵金属种类选择
+    async noble_metalsearchChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.noble_metal = id || "";
+      tthis.$refs.ruleForm && his.$refs.ruleForm.validateField("noble_metal");
+      await this.get_all_fee();
+    },
+    async areaChange(e, key) {
+      const { code, area_code, label } = e;
+      this.ruleForm[key] = code ? code.split(",") : [];
+      this.areaInfo[key].code = area_code ? [area_code] : [];
+      this.areaInfo[key].label = label ? [label] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+    },
+    //省市区
+    selectAreaChange(e, key) {
+      this.ruleForm[key] = e;
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+    },
+    closeImg(index, key) {
+      this.ruleForm[key].splice(index, 1);
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+    },
+
+    //图片上传成功
+    async UploadSuccessEvent(data, key) {
+      const { url } = data;
+      if (url === "noToken") {
+        await this.logout();
+      } else {
+        if (key === "good_thumb_img") {
+          this.ruleForm[key] = url;
+        } else {
+          if (this.ruleForm[key].length < 10) {
+            this.ruleForm[key].push(url);
+          }
+        }
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+        this.$message.success("图片上传成功!");
+      }
+    },
+    good_type_change() {
+      let list = ["moq", "customized"];
+      for (let i = 0; i < list.length; i++) {
+        this.rulesThis[list[i]][0].required = this.ruleForm.good_type === "1";
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField(list[i]);
+      }
+    },
+    UploadErrorEvent(res, key) {
+      if (res !== "break") {
+        this.$message.error("图片上传失败!");
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+      }
+    },
+    //判断图片规格
+    beforeAvatarUpload(file) {
+      let isJPG = false;
+      if (
+        file.type === "image/jpg" ||
+        file.type === "image/png" ||
+        file.type === "image/jpeg"
+      ) {
+        isJPG = true;
+      }
+      const isLt2M = file.size / 1024 / 1024 < 1;
+      if (!isJPG) {
+        this.$message.error("图片格式不正确!");
+      }
+      if (!isLt2M) {
+        this.$message.error("图片大小不能超过 1MB!");
+      }
+      return isJPG && isLt2M;
+    }
+  }
+};
+</script>
+<style lang="scss" scoped>
+.goodsCostDetail {
+  // position: relative;
+  .good_info_img_div {
+    ul {
+      width: 100%;
+      li {
+        float: left;
+        width: 55px;
+        height: 55px;
+        padding: 0 5px 0 0;
+        .img-show-li-div {
+          width: 50px;
+          height: 50px;
+          border: 1px solid #dfe4ed;
+          background: #dfe4ed;
+          position: relative;
+          img.img-show {
+            width: 100%;
+            height: 100%;
+            position: relative;
+            display: inline-block;
+          }
+          i.el-icon-close {
+            position: absolute;
+            z-index: 2;
+            top: 0;
+            right: 0;
+            color: #dfe4ed;
+          }
+          &:hover {
+            i.el-icon-close {
+              cursor: pointer;
+              color: #6954f0;
+            }
+          }
+        }
+      }
+    }
+  }
+
+  .goodsCostAdd-title {
+    border-top: 1px solid #ebeef5;
+    span {
+      height: 50px;
+      line-height: 50px;
+      font-family: "微软雅黑", sans-serif;
+      font-weight: 400;
+      font-style: normal;
+      font-size: 16fpx;
+      text-align: left;
+    }
+  }
+}
+</style>

+ 30 - 15
src/views/goodStore/goodsCost/detail.vue

@@ -3,14 +3,16 @@
     <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'">
-          <base-form
-            v-if="newTime !== ''"
-            :type="queryType"
-            :id="queryId"
-            :newTime="newTime"
-            :sitem="sitem"
-            @refresh="refresh"
-          />
+          <base-form-normal 
+                  v-if="(newTime !== '')"
+                 :type="queryType"
+                 :id="queryId"
+                 :newTime="newTime"
+                 :sitem="sitem"
+                 @refresh="refresh"
+               />
+          
+
         </el-tab-pane>
         <el-tab-pane label="商品成本详情" name="1" v-if="queryType !== 'add'">
           <el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
@@ -23,7 +25,16 @@
             >
               <el-collapse-item title="商品成本详情" name="0">
                 <base-form
-                  v-if="newTime !== ''"
+                  v-if="(newTime !== '' && createSource === '1')"
+                  :type="queryType"
+                  :id="queryId"
+                  :newTime="newTime"
+                  :sitem="sitem"
+                  @refresh="refresh"
+                />
+
+                <base-form-normal 
+                   v-if="(newTime !== '' && createSource === '0')"
                   :type="queryType"
                   :id="queryId"
                   :newTime="newTime"
@@ -57,9 +68,7 @@
                   </template>
 
                   <template slot="is_combind">
-                    {{
-                    String(sitem.is_combind) === '1' ? '组合商品' : '非组合商品'
-                    }}
+                    {{ String(sitem.is_combind) === '1' ? '组合商品' : '非组合商品' }}
                   </template>
 
                   <template slot="packing_spec">
@@ -77,9 +86,10 @@
                   <template slot="good_info_img">
                     <div style="max-height: 24px; overflow: hidden">
                       <el-image
-                        style="height: 24px; width: 24px"
-                        :src="sitem.good_info_img"
-                        :preview-src-list="[sitem.good_info_img]"
+                        v-for="imgSrc in sitem.good_info_img ? sitem.good_info_img.split(',') : []"
+                        style="height: 24px; width: 24px;margin-right: 5px"
+                        :src="imgSrc"
+                        :preview-src-list="[imgSrc]"
                       />
                     </div>
                   </template>
@@ -267,6 +277,7 @@ import ProductModal from "./components/productModal.vue";
 import privateField from "@/mixins/privateField";
 import costForm from "./components/costDetail";
 import baseForm from "./components/baseForm";
+import baseFormNormal from "./components/baseFormNormal";
 import resToken from "@/mixins/resToken";
 import { mapGetters } from "vuex";
 
@@ -284,6 +295,7 @@ export default {
   name: "goodsCostDetail",
   mixins: [resToken, privateField],
   components: {
+    baseFormNormal,
     ShowDataTable,
     ProductModal,
     baseForm,
@@ -297,6 +309,9 @@ export default {
       "private_field",
       "originLevel"
     ]),
+    createSource(){
+      return this.$route.query.createSource
+    },
     powers() {
       const { btnList } = this.$store.getters;
       const tran =

+ 64 - 41
src/views/goodStore/goodsCost/index.vue

@@ -311,7 +311,7 @@
           content="详情"
           placement="top"
         >
-          <i class="el-icon-view tb-icon" @click="getRouter('goodsCostDetail', scope.row.spuCode)"></i>
+          <i class="el-icon-view tb-icon" @click="getRouter('goodsCostDetail', scope.row.spuCode,scope.row.create_source)"></i>
         </el-tooltip>
         <el-tooltip
           v-if="
@@ -344,6 +344,7 @@
               routeGoto('goodsCostDetail', {
                 id: scope.row.spuCode,
                 type: 'edit',
+                createSource:scope.row.create_source
               })
             "
           ></i>
@@ -361,7 +362,7 @@
         >
           <i
             class="el-icon-c-scale-to-original tb-icon"
-            @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '2')"
+            @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '2',scope.row.create_source)"
           ></i>
         </el-tooltip>
         <!-- scope.row.has_account + '' == '0' &&  -->
@@ -378,7 +379,7 @@
         >
           <i
             class="el-icon-coin tb-icon"
-            @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '3')"
+            @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '3',scope.row.create_source)"
           ></i>
         </el-tooltip>
         <el-tooltip
@@ -392,17 +393,17 @@
           content="复制商品"
           placement="top"
         >
-          <i class="el-icon-document-copy tb-icon" @click="good_copy(scope.row.spuCode)"></i>
+          <i class="el-icon-document-copy tb-icon" @click="(scope.row.spuCode)"></i>
         </el-tooltip>
 
-        <el-tooltip
+        <!-- <el-tooltip
           v-if="powers.some((i) => i == '006') && !isSupertube"
           effect="dark"
           content="删除"
           placement="top"
         >
           <i class="el-icon-delete tb-icon" @click="deleteItem(scope.row.spuCode)"></i>
-        </el-tooltip>
+        </el-tooltip> -->
       </template>
     </ex-table>
     <no-auth v-else></no-auth>
@@ -445,6 +446,7 @@
     <add-edit
       :id="''"
       :isNobleMetal="isNobleMetal"
+      :isConsultFlag="isConsultFlag"
       :sitem="changeList"
       :show-model="showModel"
       :is-detail="false"
@@ -497,7 +499,10 @@ export default {
       }
     };
     return {
+      //标记勾选商品是否全部为贵金属商品
       isNobleMetal: false,
+      //标记勾选商品是否全部为咨询成交商品
+      isConsultFlag:false,
       dialogFormVisible: false,
       has_account_list,
       donline_formStOps: [],
@@ -668,11 +673,12 @@ export default {
         this.$message.warning(res.message);
       }
     },
-    getRouter(toRouter, queryId) {
+    getRouter(toRouter, queryId,createSource) {
       if (toRouter && queryId) {
         let model = {
           id: queryId,
-          type: "view"
+          type: "view",
+          createSource
         };
 
         //有多选框的条件
@@ -720,7 +726,7 @@ export default {
       };
       this.searchList();
     },
-    async wantto(isonline, spuCode, ntype, wtype) {
+    async wantto(isonline, spuCode, ntype, wtype,createSource) {
       const { code, data, message } = await asyncRequest.checkIsUpdate({
         spuCode
       });
@@ -729,7 +735,8 @@ export default {
         if (is_allow_update + "" === "1") {
           this.routeGoto("goodsCostDetail", {
             id: spuCode,
-            type: wtype === "2" ? "editBase" : wtype === "3" ? "editCoin" : ""
+            type: wtype === "2" ? "editBase" : wtype === "3" ? "editCoin" : "",
+            createSource
           });
         } else {
           if (isonline + "" === "1") {
@@ -924,52 +931,68 @@ export default {
       this.parmValue.page = 1;
       await this.searchList();
     },
-    add_online() {
-      if (this.changeList.length === 0) {
-        this.$message.warning("至少选择一个商品!");
-        return;
-      }
-      if (this.changeList.length > 100) {
-        this.$message.warning("商品数量不能超过100!");
-        return;
-      }
-
-      const categoryIds = this.changeList.map(
-        ({ cat_info, is_gold_price }) => ({
+    getLightWeightList(){
+      return this.changeList.map(({ cat_info, is_gold_price ,create_source}) => ({
+          create_source,
           id: String(cat_info[0].id),
           isGoldPrice: String(is_gold_price)
         })
       );
-
-      const nobleMetalIds = categoryIds.filter(
-        ({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1"
-      );
-
-      if (
-        nobleMetalIds.length > 0 &&
-        categoryIds.length !== nobleMetalIds.length
-      ) {
-        const h = this.$createElement;
-
+    },
+    createWarningMessage(_f = "开启实时金价贵金属商品",_s = "未开启实时金价的贵金属商品和非贵金属商品"){
+      const h = this.$createElement;
         this.$message({
           message: h("p", null, [
             h("span", null, "勾选商品必须全部为"),
-            h("i", { style: "color: red" }, "开启实时金价贵金属商品"),
+            h("i", { style: "color: red" }, _f),
             h("span", null, "或者全部为"),
-            h(
-              "i",
-              { style: "color: red" },
-              "未开启实时金价的贵金属商品和非贵金属商品"
-            )
+            h( "i", { style: "color: red" },  _s)
           ]),
           type: "warning",
           dangerouslyUseHTMLString: true
         });
+    },
+    add_online() {
+      if (this.changeList.length === 0) {
+        this.$message.warning("至少选择一个商品!");
         return;
       }
+      if (this.changeList.length > 100) {
+        this.$message.warning("商品数量不能超过100!");
+        return;
+      }
+
+      // 勾选商品集合
+      const allList = this.changeList.map(({ cat_info, is_gold_price ,create_source}) => ({
+          id: String(cat_info[0].id),
+          isGoldPrice: String(is_gold_price),
+          createSource: String(create_source)
+        })
+      );
+      
+      // 咨询成交id集合
+      const consultList = allList.filter(({id,createSource}) => createSource === "1")
+      
+      // 不是全部为咨询成交商品或手动创建商品
+      if(consultList.length > 0 && allList.length !== consultList.length){
+        this.createWarningMessage("咨询成交商品", "手动创建商品")
+        return
+      }
+      
+      //标记是否全部为咨询成交商品
+      this.isConsultFlag = consultList.length > 0 && allList.length === consultList.length;
 
-      this.isNobleMetal =
-        nobleMetalIds.length > 0 && categoryIds.length === nobleMetalIds.length;
+      if(!this.isConsultFlag){  //手动创建商品标记是否全部为贵金属(咨询商品不需要)
+        //贵金属商品id集合
+        const nobleMetalList= allList.filter(
+          ({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1"
+        );
+        if (nobleMetalList.length > 0 && allList.length !== nobleMetalList.length) {
+         this.createWarningMessage()
+          return;
+        }
+        this.isNobleMetal = nobleMetalList.length > 0 && allList.length === nobleMetalList.length;
+      }
 
       let isok = true;
       this.changeList.forEach(e => {

+ 27 - 27
src/views/goodStore/goodsOnline/add.vue

@@ -100,6 +100,16 @@
                 min-width="brand_name"
                 show-overflow-tooltip
               />
+              <el-table-column prop="good_type" label="来源" min-width="110" show-overflow-tooltip>
+                <template slot-scope="scope">
+                  <el-tag
+                    :size="'mini'"
+                    :type="scope.row.create_source == '1' ? 'warning' : ''"
+                    v-text="scope.row.create_source === '1' ? '咨询成交商品' : '手动创建商品'"
+                  ></el-tag>
+                </template>
+              </el-table-column>
+
               <el-table-column prop="good_type" label="是否定制" min-width="70" show-overflow-tooltip>
                 <template slot-scope="scope">
                   <el-tag
@@ -149,6 +159,7 @@
             <!--添加商品-->
             <search-good-modal
               :is-noble="isNoble"
+              :is-consult="isConsult"
               :check-type="true"
               :showModel="showModel"
               :once="false"
@@ -188,8 +199,10 @@ export default {
   },
   computed: {
     ...mapGetters(["tablebtnSize", "searchSize", "size"]),
-    isFiexed() {
+    isFixed() {
+      // 非咨询商品 && 非有赞平台 && 贵金属开启实时金价
       return (
+        !this.isConsult &&
         !this.isYzPlatform &&
         this.isNoble &&
         this.ruleForm.platform_type !== "1"
@@ -206,7 +219,7 @@ export default {
     fixedOptions() {
       return [
         { value: "1", label: "一口价" },
-        ...(this.isFiexed ? [{ value: "0", label: "实时金价" }] : [])
+        ...(this.isFixed ? [{ value: "0", label: "实时金价" }] : [])
       ];
     }
   },
@@ -216,7 +229,7 @@ export default {
         this.initForm();
       }
     },
-    isFiexed() {
+    isFixed() {
       if (this.ruleForm.is_fixed === "0") {
         this.ruleForm.is_fixed = "";
       }
@@ -225,6 +238,7 @@ export default {
   data() {
     return {
       isNoble: null,
+      isConsult:null,
       tableData: [],
       costshowModel: false,
       costmodelIndex: "",
@@ -259,17 +273,16 @@ export default {
     },
     async initForm() {
       this.loading = true;
+      console.log(this.resetFormData)
       this.resetFormData();
       this.rulesThis = this.rules;
       await this.resetForm();
       this.loading = false;
     },
-
     openDel(index) {
       this.tableData.splice(index, 1);
-      if (this.tableData.length === 0) {
-        this.isNoble = null;
-      }
+      this.isConsult = this.tableData.length === 0 ? null : this.isConsult;
+      this.isNoble = this.tableData.length === 0 ? null : this.isNoble;
     },
     changeMarketUrlByIndex(market_url,index){
       console.log(market_url)
@@ -279,31 +292,19 @@ export default {
         market_url
       })
     },
-    resultList(e) {
+    resultList(e, {isNoble, isConsult}) {
       this.showModel = false;
       let list = JSON.parse(JSON.stringify(e));
       let oldList = JSON.parse(JSON.stringify(this.tableData));
 
-      const categoryIds = list.map(({ cat_info, is_gold_price }) => ({
-        id: String(cat_info[0].id),
-        isGoldPrice: String(is_gold_price)
-      }));
-
-      const nobleIds = categoryIds.filter(({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1");
-      this.isNoble = nobleIds.length > 0 && categoryIds.length === nobleIds.length;
+      this.isNoble = isNoble;
+      this.isConsult = isConsult;
 
       list.forEach((e, ei) => {
-        let index = oldList.findIndex(a => {
-          return e.spuCode === a.spuCode;
-        });
-
-        if (index === -1) {
-          let item = JSON.parse(JSON.stringify(list[ei]));
-          this.tableData.push({
-            ...item,
-            market_url:""
-          });
-        }
+        let index = oldList.findIndex(a =>e.spuCode === a.spuCode);
+        if(index !== -1) return
+        let item = JSON.parse(JSON.stringify(list[ei]));
+        this.tableData.push({...item, market_url:"" });
       });
     },
     async submitForm() {
@@ -399,7 +400,6 @@ export default {
         message: htmlList
       });
     },
-
     resetFormData() {
       this.ruleForm = {
         platform_type: "",

+ 47 - 30
src/views/goodStore/goodsOnline/components/fixed-price-form.vue

@@ -37,7 +37,7 @@
                 :append="''"
                 :newTime="scope.row.newTime"
                 :size="'mini'"
-                :disabled="!scope.row.edit"
+                :disabled="!scope.row.edit || sitem.create_source === '1'"
                 @reschange="num_change($event, 'min_num', scope.$index)"
               />
             </el-form-item>
@@ -98,7 +98,7 @@
                 :append="''"
                 :newTime="scope.row.newTime"
                 :size="'mini'"
-                :disabled="!scope.row.edit"
+                :disabled="!scope.row.edit || sitem.create_source === '1'"
                 @reschange="num_change($event, 'sale_price', scope.$index)"
               />
             </el-form-item>
@@ -204,7 +204,7 @@
                 v-model="scope.row.market_platform"
                 placeholder="对比平台"
                 maxlength="50"
-                :disabled="!scope.row.edit"
+                :disabled="!scope.row.edit || sitem.create_source === '1'"
               />
             </el-form-item>
             <span v-show="!scope.row.edit">{{ scope.row.market_platform }}</span>
@@ -237,7 +237,7 @@
         <el-table-column fixed="right">
           <template slot="header" slot-scope="scope">
             <span>操作</span>
-            <el-tooltip effect="dark" content="添加阶梯" placement="top">
+            <el-tooltip effect="dark" content="添加阶梯" placement="top" v-if="sitem.create_source !== '1'">
               <i class="el-icon-circle-plus-outline tb-icon fr" @click="openCostEdit(-1)"></i>
             </el-tooltip>
           </template>
@@ -248,7 +248,7 @@
             <el-tooltip effect="dark" v-else content="修改" placement="top">
               <i class="el-icon-edit tb-icon" @click="openCostEdit(scope.$index)"></i>
             </el-tooltip>
-            <el-tooltip effect="dark" content="删除" placement="top">
+            <el-tooltip effect="dark" content="删除" placement="top" v-if="sitem.create_source !== '1'">
               <i class="el-icon-delete tb-icon" @click="openCostEditDelete(scope.$index)"></i>
             </el-tooltip>
           </template>
@@ -450,9 +450,9 @@
 </template>
 
 <script>
+import companyHelper from "@/mixins/companyHelper";
 import asyncRequest from "@/apis/service/goodStore/goodsOnline";
 import showVoucherModel from "@/components/show-voucher-model";
-import companyHelper from "@/mixins/companyHelper";
 import { isAlphanumeric, isnumber, validAlphabets } from "@/utils/validate";
 
 export default {
@@ -490,9 +490,9 @@ export default {
     const validate_num = (rule, value, callback) => {
       const { required } = rule;
       if (required && value === "") {
-        callback(new Error("不能为空"));
+        callback(new Error("不能为空"));
       } else {
-        callback();
+        callback(); 
       }
     };
     const validate_num_0 = (rule, value, callback) => {
@@ -597,18 +597,18 @@ export default {
             trigger: "change"
           }
         ],
-        plat_code: [
+        proof_url: [
           {
             required: true,
-            validator: validate_plat_code,
-            trigger: "change"
+            message: "请上传凭证文件",
+            trigger: "blur,change"
           }
         ],
-        proof_url: [
+        plat_code: [
           {
             required: true,
-            message: "请上传凭证文件",
-            trigger: "blur,change"
+            validator: validate_plat_code,
+            trigger: "change"
           }
         ],
         rebut: [
@@ -819,7 +819,10 @@ export default {
             let { isok, price, message, new_cost_fee } = await this.get_new(
               rowIndex
             );
-            if (isok === 0) {
+
+            if(this.sitem.create_source === "1"){
+              this.addrForm.good_ladder[rowIndex].edit = false;
+            }else if (isok === 0) {
               this.addrForm.good_ladder[rowIndex].new_sale_price = price;
               this.addrForm.good_ladder[rowIndex].new_cost_fee = new_cost_fee;
               this.addrForm.good_ladder[rowIndex].edit = false;
@@ -848,7 +851,7 @@ export default {
         if (min_num === "" || min_num === "0") {
           this.addrForm.good_ladder[index].new_sale_price = "0";
         } else {
-          if (!this.addrForm.good_ladder[index].search_loading) {
+          if (!this.addrForm.good_ladder[index].search_loading && this.sitem.create_source !== "1") {
             let { isok, price, message, new_cost_fee } = await this.get_new(
               index
             );
@@ -902,17 +905,13 @@ export default {
             proof_type: proof && proof.proof_type ? proof.proof_type : "1", // 通过or驳回
             proof_url: proof && proof.proof_url ? proof.proof_url : "" //驳回至
           };
+          
           this.addrForm = {
-            good_ladder:
-              ladderlist && ladderlist.length > 0
-                ? JSON.parse(JSON.stringify(ladderlist))
-                : []
+            good_ladder: ladderlist && ladderlist.length > 0 ? JSON.parse(JSON.stringify(ladderlist)) : []
           };
-          this.good_ladder =
-            ladderlist && ladderlist.length > 0
-              ? JSON.parse(JSON.stringify(ladderlist))
-              : [];
-          // console.log(this.ruleForm.proof_url);
+
+          this.good_ladder = ladderlist && ladderlist.length > 0 ? JSON.parse(JSON.stringify(ladderlist)) : [];
+          
           switch (this.ruleForm.proof_type) {
             case "1":
               this.video_url = this.ruleForm.proof_url;
@@ -926,8 +925,26 @@ export default {
             default:
               this.video_url = this.ruleForm.proof_url;
           }
+
           this.$refs.ruleForm.validateField("proof_url");
-          for (let i = 0; i < this.addrForm.good_ladder.length; i++) {
+
+          if(this.sitem.create_source === "1"){
+            this.addrForm.good_ladder = [
+              {
+                edit: true,
+                min_num: this.sitem.nakelist[0].min_num,
+                market_price: "0",
+                market_platform: "京东",
+                status: "1",
+                ...(this.sitem.is_gold_price === "0" 
+                ? ({ new_sale_price: Number(this.sitem.nakelist[0].nake_fee),  sale_price:Number(this.sitem.sale_price),  cost_fee: "0", new_cost_fee: "0"}) 
+                : ({ new_cost_fee: Number(this.sitem.nakelist[0].cost_fee) , new_sale_price: "0" ,sale_price: "0",  cost_fee: "0", new_cost_fee: Number(this.sitem.sale_price)}))
+              }
+            ]
+
+            console.log("cost_fee=" + this.addrForm.good_ladder[0].new_cost_fee)
+          } else {
+            for (let i = 0; i < this.addrForm.good_ladder.length; i++) {
             let { isok, price, new_cost_fee, message } = await this.get_new(i);
             if (isok === 0) {
               this.addrForm.good_ladder[i].new_sale_price = price;
@@ -943,6 +960,7 @@ export default {
               this.$message.warning(message);
             }
           }
+          }
         }
       });
     },
@@ -968,7 +986,6 @@ export default {
               return;
             }
             let list = JSON.parse(JSON.stringify(this.addrForm.good_ladder));
-
             for (let index = 0; index < list.length; index++) {
               const item = list[index];
               if (item.edit) {
@@ -990,6 +1007,7 @@ export default {
                   isok = false;
                 }
 
+               if(this.sitem.create_source !== "1"){
                 let { isok, price, new_cost_fee } = await this.get_new(i);
                 if (isok === 0) {
                   this.set_ladder_item(i, price, new_cost_fee);
@@ -999,6 +1017,7 @@ export default {
                   all_is_ok = false;
                   this.set_ladder_item(i, price, new_cost_fee);
                 }
+               }
               }
 
               for (
@@ -1006,9 +1025,7 @@ export default {
                 index < this.addrForm.good_ladder.length;
                 index++
               ) {
-                const { sale_price, new_sale_price, cost_fee, new_cost_fee } =
-                  this.addrForm.good_ladder[index] || {};
-
+                const { sale_price, new_sale_price, cost_fee, new_cost_fee } = this.addrForm.good_ladder[index] || {};
                 const _salePrice = Number(sale_price);
                 const _systemSalePrice = Number(new_sale_price);
                 const _costFee = Number(cost_fee);

+ 14 - 2
src/views/goodStore/goodsOnline/index.vue

@@ -108,6 +108,7 @@
                 @searchChange="platform_codeChange"
               />
             </el-col>
+
             <el-col :span="4" style="width: 210px; padding: 0 0 0 10px">
               <search-brand
                 :value="brandid"
@@ -125,7 +126,7 @@
           </el-row>
           <el-row style="padding: 10px 0 0 0">
 
-            <el-col :span="4" style="margin-right:10px">
+            <el-col :span="3" style="margin-right:10px">
               <el-select
                 style="width:100%"
                 v-model="parmValue.is_stock"
@@ -147,7 +148,7 @@
               </el-select>
             </el-col>
 
-            <el-col :span="4" style="right:10px">
+            <el-col :span="3" style="right:10px">
               <el-select
                 style="width:100%"
                 v-model="parmValue.is_compliance"
@@ -166,6 +167,15 @@
               </el-select>
             </el-col>
 
+            <el-col :span="3" style="margin-left:10px">
+              <el-select placeholder="来源" clearable size="mini" style="width:100%" v-model="parmValue.create_source" @change=" pageInfo.curr = 1;
+                  parmValue.page = 1;
+                  searchList();">
+                <el-option value="0" label="手动创建商品" />
+                <el-option value="1" label="咨询成交商品" />
+              </el-select>
+            </el-col>
+
             <el-col :span="4" style="width: 350;margin-left:10px">
               <el-input
                 :size="searchSize"
@@ -517,6 +527,7 @@ export default {
       options8: options8,
       loading: false,
       parmValue: {
+        create_source:"",
         is_compliance: "",
         is_stock: "",
         good_name: "", //商品名称
@@ -738,6 +749,7 @@ export default {
         total: 0
       };
       this.parmValue = {
+        create_source:"",
         is_compliance: "",
         good_name: "", //商品名称
         spucode: "", //商品编号

+ 16 - 11
src/views/goodStore/supplierGoodsCost/components/baseForm.vue

@@ -25,7 +25,7 @@
                 <search-work-company
                   :value="ruleForm.company_id"
                   :placeholder="'业务公司'"
-                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin'"
+                  :disabled="true"
                   :size="'mini'"
                   :isDetail="type !== 'add'"
                   @searchChange="company_idsearchChange"
@@ -39,7 +39,7 @@
                   v-model="ruleForm.is_stock"
                   filterable
                   clearable
-                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin' || type === 'edit'"
+                  :disabled="true"
                   style="width: 100%"
                   @change="stock_change"
                   placeholder="是否库存品"
@@ -58,7 +58,7 @@
               <el-form-item prop="is_combind" label="组合类型" label-width="110px">
                 <el-select
                   style="width:100%"
-                  :disabled="type !== 'add'"
+                  :disabled="true"
                   v-model="ruleForm.is_combind"
                   placeholder="是否组合商品"
                   @change="groupGoodChange"
@@ -253,9 +253,7 @@
                     v-model="ruleForm.is_gold_price"
                     filterable
                     clearable
-                    :disabled="
-                      type === 'view' || type === 'editBase' || type === 'editCoin'
-                    "
+                    :disabled="true"
                     style="width: 100%"
                     placeholder="启用实时金价"
                     @change="is_goold_price_change"
@@ -954,7 +952,7 @@
         </ul>
       </el-col>
       <el-col :span="23" class="dmain">
-        <el-row v-if="sitem.create_source === '1'" style="padding-left:20px;padding-bottom:10px;font-size:14px;font-weight:700">
+        <el-row v-if="sitem && sitem.create_source === '1'" style="padding-left:20px;padding-bottom:10px;font-size:14px;font-weight:700">
           来源: 咨询成交商品, 咨询采购价:{{sitem.cgd_price}} 元
         </el-row>
         
@@ -1345,7 +1343,7 @@ export default {
     },
     async number_change(e, key) {
       this.ruleForm[key] = e + "" || "0";
-      this.$refs.ruleForm.validateField(key);
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
       await this.get_all_fee();
     },
     openEdit(index, sitem) {
@@ -1377,6 +1375,12 @@ export default {
       //   this.$message.warning("不启用阶梯成本,只能录入一条阶梯成本信息!");
       //   return;
       // }
+
+      if(this.ladder_tableData.length >= 1 && this.sitem.create_source === "1" && index === -1){
+        this.$message.warning("咨询成本商品只能录入一条阶梯成本信息!");
+        return;
+      }
+
       this.costmodelIndex = index;
       this.costsitem = sitem;
       this.costshowModel = true;
@@ -1939,7 +1943,7 @@ export default {
         unit: [],
         is_exclusive: [],
         noble_metal: "",
-        is_gold_price: "",
+        is_gold_price: "0",
         moq: "",
         customized: "",
         after_sales: "",
@@ -2165,7 +2169,7 @@ export default {
             unit: good_unit ? [good_unit] : [],
             is_exclusive: exclusiveList || [],
             noble_metal: noble_metal || "",
-            is_gold_price: is_gold_price || "0",
+            is_gold_price: "0",
             moq: moq || "0",
             customized: customized || "0",
             after_sales: after_sales || "",
@@ -2218,7 +2222,7 @@ export default {
 
         if (this.type === "add") {
           this.ruleForm.supplierNo = [this.currentCompany];
-          this.$refs.ruleForm.validateField("supplierNo");
+          this.$refs/ruleForm && this.$refs.ruleForm.validateField("supplierNo");
         }
 
         await this.set_must_spec();
@@ -2303,6 +2307,7 @@ export default {
     },
     async getArea(prop = "delivery_place") {
       const chunks = this.sitem[prop].split(",");
+      if(chunks.length !== 3) return {name:"", area_code:""}
       let { data: province } = await asyncRequest.province();
       province = province.find(
         ({ province_code }) => province_code === chunks[0]

+ 2566 - 0
src/views/goodStore/supplierGoodsCost/components/baseFormNormal.vue

@@ -0,0 +1,2566 @@
+<template>
+  <el-form
+    :model="ruleForm"
+    status-icon
+    :rules="rulesThis"
+    ref="ruleForm"
+    :size="'mini'"
+    v-loading="loading"
+    label-width="90px"
+  >
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul style="padding: 140px 0 0 0">
+          <li>基</li>
+          <li>础</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row>
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="业务公司" prop="company_id">
+                <search-work-company
+                  :value="ruleForm.company_id"
+                  :placeholder="'业务公司'"
+                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin'"
+                  :size="'mini'"
+                  :isDetail="type !== 'add'"
+                  @searchChange="company_idsearchChange"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="6">
+              <el-form-item label="是否库存品" prop="is_stock" label-width="95px">
+                <el-select
+                  v-model="ruleForm.is_stock"
+                  filterable
+                  clearable
+                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin' || type === 'edit'"
+                  style="width: 100%"
+                  @change="stock_change"
+                  placeholder="是否库存品"
+                >
+                  <el-option
+                    v-for="group in options4"
+                    :key="group.id"
+                    :label="group.name"
+                    :value="group.id"
+                  />
+                </el-select>
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="6">
+              <el-form-item prop="is_combind" label="组合类型" label-width="110px">
+                <el-select
+                  style="width:100%"
+                  :disabled="type !== 'add'"
+                  v-model="ruleForm.is_combind"
+                  placeholder="是否组合商品"
+                  @change="groupGoodChange"
+                >
+                  <el-option v-if="ruleForm.is_stock === '1'" value="1" label="组合商品" />
+                  <el-option value="0" label="非组合商品" />
+                </el-select>
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-row>
+            <el-col :span="12">
+              <el-form-item label="供应商" prop="supplierNo">
+                <search-supplier
+                  :value="ruleForm.supplierNo"
+                  :placeholder="'供应商'"
+                  disabled
+                  :size="'mini'"
+                  :names="supplierName"
+                  :isDetail="true"
+                  :isp="this.type !== 'view'"
+                  @searchChange="supplierNosearchChange"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="12">
+              <el-form-item label="商品名称" prop="good_name">
+                <el-input
+                  placeholder="商品名称"
+                  maxlength="100"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  v-model="ruleForm.good_name"
+                ></el-input>
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-row>
+            <el-col :span="8">
+              <el-form-item label="商品分类" prop="cat_id">
+                <company-sort
+                  :value="ruleForm.cat_id"
+                  :placeholder="'商品分类'"
+                  :disabled="type !== 'add' || !ruleForm.company_id"
+                  :size="'mini'"
+                  :names="cat_id_name"
+                  :isDetail="type !== 'add'"
+                  :company-no="ruleForm.company_id"
+                  @searchChange="goods_class_change"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="8">
+              <el-form-item label="商品品牌" prop="brandid">
+                <search-brand
+                  :value="ruleForm.brandid"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :size="'mini'"
+                  :isDetail="type !== 'add'"
+                  :names="brand_name"
+                  :placeholder="'商品品牌'"
+                  @searchChange="brandidsearchChange"
+                />
+              </el-form-item>
+            </el-col>
+            <el-col :span="8">
+              <el-form-item label="销售权限" prop="is_auth">
+                <el-select
+                  v-model="ruleForm.is_auth"
+                  filterable
+                  clearable
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  style="width: 100%"
+                  placeholder="销售权限"
+                >
+                  <el-option
+                    v-for="group in options3"
+                    :key="group.id"
+                    :label="group.name"
+                    :value="group.id"
+                  />
+                </el-select>
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-row>
+            <el-col :span="4">
+              <el-form-item label="单位" prop="unit" label-width="60px">
+                <search-unit
+                  :value="ruleForm.unit"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :size="'mini'"
+                  :isDetail="type !== 'add'"
+                  :names="unit_name"
+                  :placeholder="'单位'"
+                  @searchChange="unitsearchChange"
+                />
+              </el-form-item>
+            </el-col>
+            <el-col :span="4">
+              <el-form-item label="税点" prop="tax" label-width="60px">
+                <search-tax
+                  :value="ruleForm.tax"
+                  :disabled="type === 'view' || type === 'editBase' || type === 'editCoin'"
+                  :size="'mini'"
+                  :isDetail="type !== 'add'"
+                  :placeholder="'税点'"
+                  @searchChange="taxsearchChange"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="8">
+              <el-form-item label="专属类型" prop="is_exclusive">
+                <search-exclusive
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  style="width: 100%"
+                  :isDetail="type !== 'add'"
+                  :size="'mini'"
+                  placeholder="专属类型"
+                  :value="ruleForm.is_exclusive"
+                  @selectChange="exclusiveSearchChange"
+                />
+              </el-form-item>
+            </el-col>
+
+            <el-col :span="8">
+              <el-form-item label="商品总重量" prop="weight" label-width="95px" style="height:32px">
+                <digital-input
+                  :values="ruleForm.weight"
+                  :name="'ruleForm.weight'"
+                  :placeholder="'商品总重量'"
+                  :min="0"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :max="100000000000"
+                  :position="'right'"
+                  :precision="3"
+                  :size="'mini'"
+                  :controls="false"
+                  :append="'g'"
+                  @reschange="number_change($event, 'weight')"
+                />
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-row :span="24" v-show="is_noble">
+            <el-row>
+              <el-col :span="8">
+                <el-form-item label="贵金属重量" prop="noble_weight" label-width="95px">
+                  <digital-input
+                    :values="ruleForm.noble_weight"
+                    :placeholder="'贵金属重量'"
+                    :name="'ruleForm.noble_weight'"
+                    :min="0"
+                    :disabled="
+                      type === 'view' ||
+                      type === 'editBase' ||
+                      type === 'editCoin'
+                    "
+                    :max="100000000000"
+                    :position="'right'"
+                    :precision="3"
+                    :size="'mini'"
+                    :controls="false"
+                    :append="'g'"
+                    @reschange="number_change($event, 'noble_weight')"
+                  />
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="贵金属种类" prop="noble_metal" label-width="95px">
+                  <search-metal-kind
+                    :value="ruleForm.noble_metal"
+                    :disabled="
+                      type === 'view' || type === 'editBase' || type === 'editCoin'
+                    "
+                    :size="'mini'"
+                    :isDetail="type !== 'add'"
+                    :placeholder="'贵金属种类'"
+                    @searchChange="noble_metalsearchChange"
+                  />
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="启用实时金价" prop="is_gold_price" label-width="110px">
+                  <el-select
+                    v-model="ruleForm.is_gold_price"
+                    filterable
+                    clearable
+                    :disabled="
+                      type === 'view' || type === 'editBase' || type === 'editCoin'
+                    "
+                    style="width: 100%"
+                    placeholder="启用实时金价"
+                    @change="is_goold_price_change"
+                  >
+                    <el-option
+                      v-for="group in options5"
+                      :key="group.id"
+                      :label="group.name"
+                      :value="group.id"
+                    />
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="6">
+                <el-form-item label="有无工差" prop="is_diff">
+                  <el-select
+                    v-model="ruleForm.is_diff"
+                    filterable
+                    clearable
+                    :disabled="
+                      type === 'view' ||
+                      type === 'editBase' ||
+                      type === 'editCoin'
+                    "
+                    style="width: 100%"
+                    placeholder="有无工差"
+                  >
+                    <el-option
+                      v-for="group in options8"
+                      :key="group.id"
+                      :label="group.name"
+                      :value="group.id"
+                    />
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="10">
+                <el-form-item label="配置要求" prop="config" label-width="85px">
+                  <el-select
+                    v-model="ruleForm.config"
+                    multiple
+                    :disabled="type === 'view'"
+                    style="width: 100%"
+                    placeholder="配置要求"
+                  >
+                    <el-option
+                      v-for="(item, index) in options9"
+                      :key="item + index"
+                      :label="item"
+                      :value="item"
+                    ></el-option>
+                  </el-select>
+                </el-form-item>
+              </el-col>
+              <el-col :span="8">
+                <el-form-item label="其他配置要求" prop="other_config" label-width="110px">
+                  <el-input
+                    placeholder="其他配置要求"
+                    maxlength="100"
+                    :disabled="type === 'view'"
+                    v-model="ruleForm.other_config"
+                  ></el-input>
+                </el-form-item>
+              </el-col>
+            </el-row>
+          </el-row>
+
+          <el-row>
+            <el-col :span="8">
+              <el-form-item label="售后说明" prop="after_sales">
+                <el-input
+                  type="textarea"
+                  :rows="4"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  placeholder="售后说明"
+                  v-model="ruleForm.after_sales"
+                  show-word-limit
+                  maxlength="1000"
+                />
+              </el-form-item>
+            </el-col>
+            <el-col :span="8">
+              <el-form-item label="商品备注" prop="good_remark">
+                <el-input
+                  type="textarea"
+                  :rows="4"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  placeholder="商品备注"
+                  show-word-limit
+                  maxlength="250"
+                  v-model="ruleForm.good_remark"
+                ></el-input>
+              </el-form-item>
+            </el-col>
+            <el-col :span="8">
+              <el-form-item label="工艺说明" prop="craft_desc">
+                <el-input
+                  type="textarea"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :rows="4"
+                  placeholder="工艺说明"
+                  show-word-limit
+                  maxlength="250"
+                  v-model="ruleForm.craft_desc"
+                ></el-input>
+              </el-form-item>
+            </el-col>
+          </el-row>
+
+          <el-col :span="8">
+            <el-form-item label="是否定制" prop="good_type">
+              <el-select
+                v-model="ruleForm.good_type"
+                filterable
+                :disabled="type === 'view' || type === 'editCoin'"
+                clearable
+                style="width: 100%"
+                placeholder="是否定制"
+                @change="good_type_change"
+              >
+                <el-option
+                  v-for="group in options1"
+                  :key="group.id"
+                  :label="group.name"
+                  :value="group.id"
+                />
+              </el-select>
+            </el-form-item>
+          </el-col>
+
+          <el-col :span="8" v-show="ruleForm.good_type === '1'">
+            <el-form-item label="定制起订量" prop="moq" label-width="95px">
+              <digital-input
+                :values="ruleForm.moq"
+                :placeholder="'定制起订量'"
+                :name="'ruleForm.moq'"
+                :min="0"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="''"
+                @reschange="number_change($event, 'moq')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="8" v-show="ruleForm.good_type === '1'">
+            <el-form-item label="定制工期" prop="customized">
+              <digital-input
+                :values="ruleForm.customized"
+                :placeholder="'定制工期'"
+                :name="'ruleForm.customized'"
+                :min="0"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="'天'"
+                @reschange="number_change($event, 'customized')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="8" v-show="ruleForm.is_stock === '1'">
+            <el-form-item label="备库起订量" prop="stock_moq" label-width="95px">
+              <digital-input
+                :values="ruleForm.stock_moq"
+                :placeholder="'备库起订量'"
+                :min="0"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="''"
+                @reschange="number_change($event, 'stock_moq')"
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-col>
+    </el-row>
+
+    <el-row class="ddiv" v-if="ruleForm. is_combind === '1'">
+      <el-col
+        :span="1"
+        tag="div"
+        style="border-right:1px solid #dcdfe6;width:40px;display:flex;align-items:center;height:100%"
+      >
+        <ul style="text-align:center;padding-top:20px">
+          <li>子</li>
+          <li>商</li>
+          <li>品</li>
+          <li>设</li>
+          <li>置</li>
+        </ul>
+      </el-col>
+
+      <el-col :span="23" class="dmain" style="padding:20px 0px;padding-left:20px">
+        <el-table :data="childTableData" size="mini" border max-height="350px">
+          <el-table-column label="子商品成本编号" prop="childCode" min-width="160px" />
+          <el-table-column label="子商品名称" prop="child_name" min-width="180px" show-overflow-tooltip />
+          <el-table-column label="组合比例" prop="child_num" width="140px">
+            <template slot-scope="scope">
+              <span v-if="scope.$index !== editIndex">
+                {{
+                childTableData[scope.$index].child_num
+                }}
+              </span>
+
+              <digital-input
+                v-else
+                :values="childTableData[scope.$index].child_num"
+                :placeholder="'组合比例'"
+                :min="0"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                @reschange="num_change($event,scope.$index)"
+              />
+            </template>
+          </el-table-column>
+
+          <el-table-column label="操作" width="120px">
+            <template #header>
+              <div>
+                <span>操作</span>
+                <el-tooltip
+                  class="item"
+                  effect="dark"
+                  content="添加"
+                  placement="top"
+                  v-if="type === 'add' || type === 'edit'"
+                >
+                  <i
+                    class="el-icon-circle-plus-outline fr"
+                    style="font-size:18px;cursor: pointer"
+                    @click="onChildProdChange(null, 'add')"
+                  />
+                </el-tooltip>
+              </div>
+            </template>
+
+            <template slot-scope="scope">
+              <el-tooltip
+                effect="dark"
+                content="查看"
+                placement="top"
+                v-if="editIndex !== scope.$index"
+              >
+                <i class="el-icon-view tb-icon" @click="onChildProdChange(scope.$index, 'view')"></i>
+              </el-tooltip>
+
+              <template v-if="type === 'add' || type === 'edit'">
+                <el-tooltip
+                  effect="dark"
+                  content="修改"
+                  placement="top"
+                  v-if="editIndex !== scope.$index"
+                >
+                  <i class="el-icon-edit tb-icon" @click="onChildProdChange(scope.$index,'edit')"></i>
+                </el-tooltip>
+
+                <el-tooltip effect="dark" content="保存" placement="top" v-else>
+                  <i class="el-icon-circle-check tb-icon" @click="onSaveLine(scope.$index)"></i>
+                </el-tooltip>
+
+                <el-tooltip
+                  effect="dark"
+                  content="删除"
+                  placement="top"
+                  v-if="editIndex !== scope.$index"
+                >
+                  <i class="el-icon-delete tb-icon" @click="onDeleteItem(scope.$index)"></i>
+                </el-tooltip>
+              </template>
+            </template>
+          </el-table-column>
+        </el-table>
+      </el-col>
+    </el-row>
+
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul>
+          <li>规</li>
+          <li>格</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain" style="padding: 20px 0 20px 18px">
+        <el-table :data="spec_tableData" :size="'mini'" border style="width: 100%">
+          <el-table-column prop="spec_value" label="规格类型" />
+          <el-table-column prop="spec_value_value" label="规格值" />
+          <el-table-column
+            fixed="right"
+            v-if="type === 'add' || type === 'editBase' || type === 'edit'"
+          >
+            <template slot="header" slot-scope="scope">
+              <span>操作</span>
+              <el-tooltip class="item" effect="dark" content="添加规格类型" placement="top">
+                <i
+                  class="el-icon-circle-plus-outline fr"
+                  style="font-size: 18px; margin-top: 2px"
+                  @click="openEdit('-1', {})"
+                />
+              </el-tooltip>
+            </template>
+            <template slot-scope="scope">
+              <el-tooltip effect="dark" content="修改" placement="top">
+                <i class="el-icon-edit tb-icon" @click="openEdit(scope.$index, scope.row)"></i>
+              </el-tooltip>
+
+              <el-tooltip
+                v-if="!scope.row.isMust && spec_tableData.length !== 1"
+                effect="dark"
+                content="删除"
+                placement="top"
+              >
+                <i class="el-icon-delete tb-icon" @click="openDelete(scope.$index)"></i>
+              </el-tooltip>
+            </template>
+          </el-table-column>
+        </el-table>
+        <!-- 弹窗 新增/修改 -->
+        <base-form-add-edit
+          :index="modelIndex"
+          :show-model="showModel"
+          :sitem="sitem"
+          @refresh="refreshEdit"
+          @cancel="showModel = false"
+        />
+      </el-col>
+    </el-row>
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul>
+          <li>包</li>
+          <li>装</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row>
+          <el-col :span="6">
+            <el-form-item label="包装方式" prop="packing_way">
+              <el-input
+                placeholder="包装方式"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.packing_way"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="装箱规格" prop="packing_spec">
+              <el-input
+                placeholder="装箱规格"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.packing_spec"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="装箱重量" prop="packing_weight">
+              <digital-input
+                :values="ruleForm.packing_weight"
+                :placeholder="'装箱重量'"
+                :min="0"
+                :name="'ruleForm.packing_weight'"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="3"
+                :size="'mini'"
+                :controls="false"
+                :append="'g'"
+                @reschange="number_change($event, 'packing_weight')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="装箱尺寸" prop="packing_size">
+              <el-input
+                placeholder="装箱尺寸"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.packing_size"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="商品尺寸" prop="good_size">
+              <el-input
+                placeholder="商品尺寸"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.good_size"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="商品条形码" prop="good_bar">
+              <el-input
+                placeholder="商品条形码"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.good_bar"
+                type="number"
+                :min="0"
+                :max="9999999999999"
+                :step="0"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="包装清单" prop="packing_list">
+              <el-input
+                placeholder="包装清单"
+                :disabled="type === 'view' || type === 'editCoin'"
+                v-model="ruleForm.packing_list"
+                maxlength="250"
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-col>
+    </el-row>
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul>
+          <li>发</li>
+          <li>货</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row>
+          <el-col :span="6">
+            <el-form-item label="供货区域" prop="supply_area">
+              <el-select
+                v-model="ruleForm.supply_area"
+                filterable
+                clearable
+                :disabled="type === 'view' || type === 'editCoin'"
+                style="width: 100%"
+                placeholder="供货区域"
+              >
+                <el-option
+                  v-for="group in options6"
+                  :key="group.id"
+                  :label="group.name"
+                  :value="group.id"
+                />
+              </el-select>
+            </el-form-item>
+          </el-col>
+
+          <el-col :span="6" style="padding-bottom:1px">
+            <el-form-item label="物流时间" prop="delivery_day">
+              <digital-input
+                :values="ruleForm.delivery_day"
+                :placeholder="'物流时间'"
+                :min="0"
+                :name="'ruleForm.delivery_day'"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="'天'"
+                @reschange="number_change($event, 'delivery_day')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6" style="padding-bottom:1px">
+            <el-form-item label="供货周期" prop="lead_time">
+              <digital-input
+                :values="ruleForm.lead_time"
+                :placeholder="'物流时间'"
+                :min="0"
+                :name="'ruleForm.lead_time'"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="'天'"
+                @reschange="number_change($event, 'lead_time')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6" style="padding-bottom:1px">
+            <el-form-item label="调样周期" prop="sample_day">
+              <digital-input
+                :values="ruleForm.sample_day"
+                :placeholder="'调样周期'"
+                :min="0"
+                :name="'ruleForm.sample_day'"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="0"
+                :size="'mini'"
+                :controls="false"
+                :append="'天'"
+                @reschange="number_change($event, 'sample_day')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="发货地" prop="delivery_place">
+              <search-area
+                :value="areaInfo.delivery_place.code"
+                :is-detail="true"
+                size="mini"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :names="areaInfo.delivery_place.label"
+                placeholder="发货地"
+                :level="3"
+                @searchChange="areaChange($event, 'delivery_place')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="产地" prop="origin_place">
+              <search-area
+                :value="areaInfo.origin_place.code"
+                :disabled="type === 'view' || type === 'editCoin'"
+                :is-detail="true"
+                size="mini"
+                :names="areaInfo.origin_place.label"
+                placeholder="产地"
+                :level="3"
+                @searchChange="areaChange($event, 'origin_place')"
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-col>
+    </el-row>
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul>
+          <li>图</li>
+          <li>片</li>
+          <li>信</li>
+          <li>息</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row style="padding: 0 0 20px 0">
+          <el-col :span="6">
+            <el-form-item label="商品缩略" prop="good_thumb_img" class="activity-upload my-label-top">
+              <div class="btnupload" style="position: relative">
+                <img v-if="ruleForm.good_thumb_img" :src="ruleForm.good_thumb_img" class="avatar" />
+                <i v-else class="el-icon-plus avatar-uploader-icon"></i>
+                <file-upload
+                  class="Upload"
+                  :disabled="type === 'view' || type === 'editCoin'"
+                  :accept="'.jpg,.png,.jpeg'"
+                  :multiple="true"
+                  :uploadcondition="beforeAvatarUpload"
+                  @UploadErrorEvent="UploadErrorEvent($event, 'good_thumb_img')"
+                  @UploadSuccessEvent="UploadSuccessEvent($event, 'good_thumb_img')"
+                ></file-upload>
+              </div>
+              <div class="txt-tips fl">
+                <p>尺寸比例:</p>
+                <p>1:1</p>
+              </div>
+            </el-form-item>
+          </el-col>
+          <el-col :span="9">
+            <el-form-item label="商品主图" prop="good_img">
+              <div class="good_info_img_div" style="display:flex">
+                <ul v-if="ruleForm.good_img" class="clear">
+                  <li
+                    class="img-show-li"
+                    v-viewer
+                    v-for="(img, iindex) in ruleForm.good_img"
+                    :key="img + iindex"
+                  >
+                    <div class="img-show-li-div">
+                      <img :src="img" class="img-show" alt />
+                      <i
+                        v-if="type == 'add' || type === 'editBase' || type === 'edit'"
+                        class="el-icon-close"
+                        @click="closeImg(iindex, 'good_img')"
+                      ></i>
+                    </div>
+                  </li>
+                  <li
+                    class="img-show-li"
+                    v-if="
+                      ruleForm.good_img.length < 11 &&
+                      (type == 'add' || type === 'editBase' || type === 'edit')
+                    "
+                  >
+                    <div class="activity-upload">
+                      <div class="btnupload" style="position: relative">
+                        <i class="el-icon-plus avatar-uploader-icon"></i>
+                        <file-upload
+                          class="Upload"
+                          :disabled="type === 'view' || type === 'editCoin'"
+                          :accept="'.jpg,.png,.jpeg'"
+                          :multiple="true"
+                          :uploadcondition="beforeAvatarUpload"
+                          @UploadErrorEvent="UploadErrorEvent($event, 'good_img')"
+                          @UploadSuccessEvent="UploadSuccessEvent($event, 'good_img')"
+                        ></file-upload>
+                      </div>
+                    </div>
+                  </li>
+                </ul>
+              </div>
+            </el-form-item>
+          </el-col>
+          <el-col :span="9">
+            <el-form-item label="详情介绍" prop="good_info_img">
+              <div class="good_info_img_div" style="display:flex">
+                <ul v-if="ruleForm.good_info_img" class="clear">
+                  <li
+                    class="img-show-li"
+                    v-viewer
+                    v-for="(img, iindex) in ruleForm.good_info_img"
+                    :key="img + iindex"
+                  >
+                    <div class="img-show-li-div">
+                      <img :src="img" class="img-show" alt />
+                      <i
+                        v-if="type == 'add' || type === 'editBase' || type === 'edit'"
+                        class="el-icon-close"
+                        @click="closeImg(iindex, 'good_info_img')"
+                      ></i>
+                    </div>
+                  </li>
+                  <li
+                    class="img-show-li"
+                    v-if="
+                      ruleForm.good_info_img.length < 11 &&
+                      (type == 'add' || type === 'editBase' || type === 'edit')
+                    "
+                  >
+                    <div class="activity-upload">
+                      <div class="btnupload" style="position: relative">
+                        <i class="el-icon-plus avatar-uploader-icon"></i>
+                        <file-upload
+                          class="Upload"
+                          :disabled="type === 'view' || type === 'editCoin'"
+                          :accept="'.jpg,.png,.jpeg'"
+                          :multiple="true"
+                          :uploadcondition="beforeAvatarUpload"
+                          @UploadErrorEvent="UploadErrorEvent($event, 'good_info_img')"
+                          @UploadSuccessEvent="
+                            UploadSuccessEvent($event, 'good_info_img')
+                          "
+                        ></file-upload>
+                      </div>
+                    </div>
+                  </li>
+                </ul>
+              </div>
+            </el-form-item>
+          </el-col>
+          <el-col :span="24">
+            <div style="font-size: 12px; color: #606266">
+              <span style="padding: 0 0 0 20px">图片大小:小于1M</span>
+              <span style="padding: 0 0 0 20px">图片类型.jpg/png/jpeg</span>
+            </div>
+          </el-col>
+        </el-row>
+      </el-col>
+    </el-row>
+    <el-row class="ddiv">
+      <el-col :span="1" class="dtitle">
+        <ul style="padding: 0">
+          <li>固</li>
+          <li>定</li>
+          <li>与</li>
+          <li>阶</li>
+          <li>梯</li>
+          <li>成</li>
+          <li>本</li>
+        </ul>
+      </el-col>
+      <el-col :span="23" class="dmain">
+        <el-row>
+          <el-col :span="6">
+            <el-form-item label="打样费" prop="demo_fee" label-width="75px">
+              <digital-input
+                :values="ruleForm.demo_fee"
+                :placeholder="'打样费'"
+                :min="0"
+                :name="'ruleForm.demo_fee'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元'"
+                @reschange="number_change($event, 'demo_fee')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="开模费" prop="open_fee" label-width="75px">
+              <digital-input
+                :values="ruleForm.open_fee"
+                :placeholder="'开模费'"
+                :min="0"
+                :name="'ruleForm.open_fee'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元/件'"
+                @reschange="number_change($event, 'open_fee')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="调样费" prop="sample_fee" label-width="75px">
+              <digital-input
+                :values="ruleForm.sample_fee"
+                :placeholder="'调样费'"
+                :min="0"
+                :name="'ruleForm.sample_fee'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元'"
+                @reschange="number_change($event, 'sample_fee')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6">
+            <el-form-item label="市场价" prop="market_price" label-width="75px">
+              <digital-input
+                :values="ruleForm.market_price"
+                :placeholder="'市场价'"
+                :min="0"
+                :name="'ruleForm.market_price'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元'"
+                @reschange="number_change($event, 'market_price')"
+              />
+            </el-form-item>
+          </el-col>
+
+          <!-- <el-col :span="6">
+            <el-form-item label="启用阶梯" prop="is_step">
+              <el-select
+                v-model="ruleForm.is_step"
+                filterable
+                :disabled="type === 'view' || type === 'editBase'"
+                style="width: 100%"
+                placeholder="启用阶梯"
+                @change="is_step_change"
+              >
+                <el-option
+                  v-for="group in options5"
+                  :key="group.id"
+                  :label="group.name"
+                  :value="group.id"
+                />
+              </el-select>
+            </el-form-item>
+          </el-col>-->
+          <el-col :span="6" v-show="is_noble && ruleForm && ruleForm.is_gold_price === '1'">
+            <el-form-item label="供应商采购金价" prop="cgd_gold_price" label-width="130px">
+              <digital-input
+                :values="ruleForm.cgd_gold_price"
+                :placeholder="'供应商采购金价'"
+                :min="0"
+                :name="'ruleForm.cgd_gold_price'"
+                :disabled="type === 'view' || type === 'editBase'"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元/g'"
+                @reschange="number_change($event, 'cgd_gold_price')"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="6" v-show="is_noble && ruleForm && ruleForm.is_gold_price === '1'">
+            <el-form-item label="当前金价">
+              <el-input v-model="ruleForm.noble_price" disabled maxlength="15" placeholder="当前金价">
+                <template slot="append">元/g</template>
+              </el-input>
+            </el-form-item>
+          </el-col>
+          <el-col :span="24" style="padding-left: 18px">
+            <el-table
+              :data="ladder_tableData"
+              :size="'mini'"
+              border
+              stripe
+              style="width: 100%; margin: 0 0 20px 0"
+            >
+              <el-table-column prop="min_num" label="起订量(>=)" />
+              <el-table-column prop="nake_fee" label="成本单价" />
+              <el-table-column prop="cost_fee" label="工艺费" />
+              <el-table-column prop="delivery_fee" label="物流费" />
+              <el-table-column prop="cert_fee" label="证书费" />
+              <el-table-column prop="mark_fee" label="加标费" />
+              <el-table-column prop="package_fee" label="包装费" />
+              <el-table-column prop="other_fee" label="其他费用" />
+              <el-table-column prop="nake_total" label="成本合计" />
+              <el-table-column
+                fixed="right"
+                v-if="type === 'add' || type === 'editCoin' || type === 'edit'"
+                width="80px"
+              >
+                <template slot="header" slot-scope="scope">
+                  <span>操作</span>
+                  <el-tooltip effect="dark" content="添加阶梯" placement="top">
+                    <i class="el-icon-circle-plus-outline tb-icon fr" @click="openCostEdit(-1, {})"></i>
+                  </el-tooltip>
+                </template>
+                <template slot-scope="scope">
+                  <el-tooltip effect="dark" content="修改" placement="top">
+                    <i class="el-icon-edit tb-icon" @click="openCostEdit(scope.$index, scope.row)"></i>
+                  </el-tooltip>
+
+                  <el-tooltip effect="dark" content="删除" placement="top">
+                    <i class="el-icon-delete tb-icon" @click="openCostEditDelete(scope.$index)"></i>
+                  </el-tooltip>
+                </template>
+              </el-table-column>
+            </el-table>
+          </el-col>
+        </el-row>
+        <!-- 弹窗 新增/修改 -->
+        <cost-form-add-edit
+          :index="costmodelIndex"
+          :show-model="costshowModel"
+          :sitem="costsitem"
+          @refresh="costrefreshEdit"
+          @cancel="costshowModel = false"
+        />
+
+        <product-modal
+          :type="modalType"
+          :editIndex="editIndex"
+          :editItem="editItem"
+          :visible.sync="mVisible"
+        />
+
+        <product-list-modal :visible.sync="visible" @selected="handleProductSelected" />
+      </el-col>
+
+      <el-col
+        :span="24"
+        v-if="
+          type === 'editBase' || type === 'add' || type === 'editCoin' || type === 'edit'
+        "
+        style="text-align: right; padding: 15px 0 15px 0; border-top: 1px solid #dcdfe6"
+      >
+        <el-button :size="'mini'" type="primary" @click="submitForm">保 存</el-button>
+      </el-col>
+    </el-row>
+  </el-form>
+</template>
+<script>
+import asyncRequest from "@/apis/service/goodStore/goodsCost";
+import resToken from "@/mixins/resToken";
+import { mapGetters } from "vuex";
+import baseFormAddEdit from "./baseFormAddEdit";
+import costFormAddEdit from "./costFormAddEdit";
+import companyHelper from "@/mixins/companyHelper";
+import { add_sum, accMul } from "@/utils/validate";
+import CompanySort from "@/components/globalComponents/company-sort/index.vue";
+import { replaceTextWrapAndSpace } from "@/utils";
+import ProductModal from "./productModal.vue";
+import ProductListModal from "./productListModal.vue";
+import { isStockOptions } from "@/assets/js/statusList";
+
+import {
+  options1,
+  options2,
+  options3,
+  options4,
+  options5,
+  options6,
+  options7,
+  options8,
+  options9,
+  rules
+} from "../columns";
+
+export default {
+  name: "goodsCostAdd",
+  mixins: [resToken, companyHelper],
+  props: ["showModel", "id", "type", "sitem", "business_companyNo"],
+  components: {
+    CompanySort,
+    baseFormAddEdit,
+    costFormAddEdit,
+    ProductModal,
+    ProductListModal
+  },
+  computed: {
+    ...mapGetters(["tablebtnSize", "searchSize", "size"]),
+    powers() {
+      const { btnList } = this.$store.getters;
+      const tran = btnList.find(i => i.menu_route == "goodsCostAdd") || {};
+      const { action } = tran ?? {};
+      return action ?? [];
+    }
+  },
+  watch: {
+    newTime: function(val) {
+      if (val) {
+        this.initForm();
+      }
+    }
+  },
+  data() {
+    return {
+      isStockOptions,
+      areaInfo: {
+        delivery_place: {
+          code: [],
+          label: []
+        },
+        origin_place: {
+          code: [],
+          label: []
+        }
+      },
+      mVisible: false,
+      modalType: "",
+      editItem: null,
+      editIndex: -1,
+      childTableData: [],
+      visible: false,
+      companyName: "",
+      spec_tableData: [],
+      is_support_stock: "",
+      cat_id_name: "",
+      brand_name: "",
+      unit_name: "",
+      costshowModel: false,
+      costmodelIndex: "",
+      costsitem: {},
+      showModel: false,
+      modelIndex: "",
+      is_noble: false,
+      size: "small",
+      status: "",
+      rulesThis: this.rules,
+      activeName: "1",
+      loading: true,
+      supplierName: "",
+      options1: options1,
+      options2: options2,
+      options3: options3,
+      options4: options4,
+      options5: options5,
+      options6: options6,
+      options7: options7,
+      options8: options8,
+      options9: options9,
+      sourceCombindList: [],
+      ruleForm: {
+        is_combind: "",
+        company_id: ""
+      },
+      spec_tableData: [],
+      old_spec_tableData: [],
+      ladder_tableData: [],
+      old_ladder_tableData: [],
+      rules: rules
+    };
+  },
+  mounted() {
+    this.initForm();
+  },
+  methods: {
+    num_change(evt, index) {
+      this.$set(this.childTableData, index, {
+        ...this.childTableData[index],
+        child_num: evt
+      });
+    },
+    onSaveLine(index) {
+      const { child_num } = this.childTableData[index];
+
+      if (Number(child_num) === 0) {
+        this.$message.warning("组合比例不能为零!");
+        return;
+      }
+
+      this.editIndex = -1;
+    },
+    onChildProdChange(index = null, type = "view") {
+      this.modalType = type;
+
+      if (type === "add") {
+        if (this.editIndex !== -1) {
+          this.$message.warning("当前有正在编辑的子商品,请先保存");
+          return;
+        }
+
+        if (this.childTableData.length === 10) {
+          this.$message.warning("子商品最多不能超过十条");
+          return;
+        }
+      }
+
+      if (type === "view" && index !== null) {
+        this.editItem = { ...this.childTableData[index] };
+      } else {
+        this.editItem = null;
+      }
+
+      if (type === "edit") {
+        if (this.editIndex !== -1) {
+          this.$message.warning("当前有正在编辑的子商品,请先保存");
+          return;
+        }
+
+        this.editIndex = index !== null ? index : -1;
+        return;
+      }
+
+      this[type === "view" ? "mVisible" : "visible"] = true;
+    },
+    handleProductSelected(selecteds = []) {
+      const childCodes = this.childTableData.map(({ childCode }) => childCode);
+      selecteds.forEach(item => {
+        const { childCode, child_name } = item;
+        const _t = { childCode, child_name, child_num: 1 };
+        if (!childCodes.includes(childCode)) {
+          this.childTableData.push(_t);
+        }
+      });
+    },
+    onCompanyChange() {
+      this.supplierNosearchChange({ code: this.currentCompany });
+    },
+    company_idsearchChange(e) {
+      const { code } = e;
+      this.ruleForm.company_id = code || "";
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("company_id");
+    },
+    async initForm() {
+      this.loading = true;
+      this.resetFormData();
+      this.rulesThis = this.rules;
+      await this.resetForm();
+      this.sch_is_noble();
+      this.good_type_change();
+      await this.get_golpricelast();
+      this.stock_change();
+
+      this.loading = false;
+    },
+    async number_change(e, key) {
+      this.ruleForm[key] = e + "" || "0";
+      this.$refs.ruleForm.validateField(key);
+      await this.get_all_fee();
+    },
+    openEdit(index, sitem) {
+      this.modelIndex = index;
+      this.sitem = sitem;
+      this.showModel = true;
+    },
+    stock_change() {
+      if (this.ruleForm.is_stock === "0") {
+        this.ruleForm.is_combind = "0";
+      }
+
+      this.rulesThis.stock_moq[0].required = this.ruleForm.is_stock === "1";
+    },
+    onDeleteItem(index) {
+      if (this.editIndex !== -1) {
+        this.$message.warning("当前有正在编辑的子商品,请先保存");
+        return;
+      }
+
+      this.childTableData.splice(index, 1);
+      // if (index === this.editIndex) {
+      //   this.editIndex = -1;
+      // }
+    },
+    openCostEdit(index, sitem) {
+      // const { is_step } = this.ruleForm;
+      // if (index === -1 && is_step === "0" && this.ladder_tableData.length > 0) {
+      //   this.$message.warning("不启用阶梯成本,只能录入一条阶梯成本信息!");
+      //   return;
+      // }
+      this.costmodelIndex = index;
+      this.costsitem = sitem;
+      this.costshowModel = true;
+    },
+    openDelete(index) {
+      this.spec_tableData.splice(index, 1);
+    },
+    openCostEditDelete(index) {
+      this.ladder_tableData.splice(index, 1);
+    },
+    // is_step_change() {
+    //   const { is_step } = this.ruleForm;
+    //   if (is_step === "0") {
+    //     let res = [];
+    //     let list =
+    //       this.ladder_tableData.length === 0
+    //         ? []
+    //         : JSON.parse(JSON.stringify(this.ladder_tableData));
+    //     if (list.length > 0) {
+    //       res.push(list[0]);
+    //     }
+    //     this.ladder_tableData = res;
+    //   }
+    // },
+    async submitForm() {
+      if (this.editIndex !== -1) {
+        this.$message.warning("当前有正在编辑的子商品,请先保存");
+        return;
+      }
+
+      const { is_combind, is_gold_price } = this.ruleForm;
+
+      if (is_combind === "1" && is_gold_price === "1" && this.is_noble) {
+        this.$message.warning("组合商品不能启用实时金价");
+        return;
+      }
+
+      this.sch_is_noble();
+      this.good_type_change();
+      this.ruleForm.good_remark = replaceTextWrapAndSpace(
+        this.ruleForm.good_remark
+      );
+      this.ruleForm.craft_desc = replaceTextWrapAndSpace(
+        this.ruleForm.craft_desc
+      );
+      this.ruleForm.after_sales = replaceTextWrapAndSpace(
+        this.ruleForm.after_sales
+      );
+      await this.$refs.ruleForm.validate(async valid => {
+        if (valid) {
+          if (!this.loading) {
+            this.loading = true;
+            const {
+              noble_weight,
+              weight,
+              is_gold_price,
+              stock_moq,
+              is_stock,
+              supplierNo,
+              company_id
+            } = this.ruleForm;
+
+            if (supplierNo.toString() === company_id) {
+              this.$message.warning("供应商不能与业务公司相同!");
+              loading = false;
+              return;
+            }
+
+            if (this.is_support_stock + "" === "0" && is_stock === "0") {
+              this.$message.warning(
+                "该商品为供应商退货业务创建的,不允许改为非库存品!"
+              );
+              loading = false;
+              return;
+            }
+
+            if (is_stock === "0") {
+              const { scode, sdata, smsg } = await this.getSupplerPower();
+              if (scode === 0) {
+                const { has_account } = sdata;
+                if (has_account + "" === "1") {
+                  this.$message.warning(
+                    "该供应商已开通账号,不允许创建非库存商品!"
+                  );
+                  this.loading = false;
+                  return;
+                }
+              }
+            }
+
+            if (this.spec_tableData.length === 0) {
+              this.$message.warning("请录入商品规格信息!");
+              this.loading = false;
+              return;
+            }
+            let isMust = true;
+            this.spec_tableData.forEach(e => {
+              if (e.isMust && !e.spec_value_id) {
+                isMust = false;
+              }
+            });
+            if (!isMust) {
+              this.$message.warning("分类绑定的规格必须填写规格值!");
+              this.loading = false;
+              return;
+            }
+            if (this.ladder_tableData.length === 0) {
+              this.$message.warning("请录入阶梯成本!");
+              this.loading = false;
+              return;
+            }
+            // stock_moq
+
+            if (is_stock === "1") {
+              let min = parseInt(this.ladder_tableData[0].min_num),
+                smoq = parseInt(stock_moq);
+              this.ladder_tableData.forEach(si => {
+                let n = parseInt(si.min_num);
+                min = n < min ? n : min;
+              });
+
+              if (smoq < min) {
+                this.$message.warning("备库起订量不能低于成本最低起订量!");
+                this.loading = false;
+                return;
+              }
+            }
+
+            if (this.is_noble) {
+              if (noble_weight * 1000 > weight * 1000) {
+                this.$message.warning("贵金属总重量不能大于商品总重量!");
+                this.loading = false;
+                return;
+              }
+            }
+
+            if (is_gold_price === "1" && this.is_noble) {
+              let is_p = true;
+              this.ladder_tableData.forEach(v => {
+                if (v.nake_fee * 1 !== 0) {
+                  is_p = false;
+                }
+              });
+            }
+
+            let model = JSON.parse(JSON.stringify(this.ruleForm));
+            model.cat_id = model.cat_id.toString();
+            model.brandid = model.brandid.toString();
+            model.supplierNo = model.supplierNo.toString();
+            model.delivery_place = model.delivery_place.toString();
+            model.origin_place = model.origin_place.toString();
+            model.good_info_img = model.good_info_img.toString();
+            model.good_img = model.good_img.toString();
+            model.unit = model.unit.toString();
+            model.speclist = JSON.parse(JSON.stringify(this.setResData(1)));
+            model.good_ladder = JSON.parse(JSON.stringify(this.setResData(2)));
+            model.config = model.config.toString();
+            model.is_exclusive =
+              model.is_exclusive.length > 0
+                ? model.is_exclusive[model.is_exclusive.length - 1]
+                : "";
+            let res = {};
+            delete model["id"];
+
+            if (model.is_combind === "1") {
+              if (this.childTableData.length === 0) {
+                this.message.warning("请添加子商品!");
+                return;
+              }
+
+              if (this.childTableData.length === 1) {
+                this.message.warning("子商品数量必须大于1!");
+                return;
+              }
+
+              if (this.type === "add") {
+                model.combind_list = this.childTableData.map(item => ({
+                  ...item,
+                  is_del: "0"
+                }));
+              } else {
+                const currentIds = this.childTableData.map(({ id }) => id);
+
+                // 删除项
+                const delCombinds = this.sourceCombindList
+                  .filter(({ id }) => !currentIds.includes(String(id)))
+                  .map(item => ({
+                    ...item,
+                    is_del: "1"
+                  }));
+
+                //原项
+                const sourceCombinds = this.sourceCombindList
+                  .filter(({ id }) => currentIds.includes(String(id)))
+                  .map(item => ({
+                    ...item,
+                    is_del: "0"
+                  }));
+
+                const addCombinds = this.childTableData
+                  .filter(({ id }) => !id)
+                  .map(({ childCode, child_num, child_name }) => ({
+                    childCode,
+                    child_num,
+                    child_name,
+                    is_del: "0"
+                  }));
+
+                model.combind_list = [
+                  ...delCombinds,
+                  ...sourceCombinds,
+                  ...addCombinds
+                ];
+              }
+            }
+
+            if (this.type === "add") {
+              delete model["spuCode"];
+              res = await asyncRequest.add(model);
+            } else if (this.type === "editBase") {
+              let item1 = this.setModel(model, "1");
+              res = await asyncRequest.update(item1);
+            } else if (this.type === "editCoin") {
+              let item2 = this.setModel(model, "2");
+              res = await asyncRequest.updateP(item2);
+            } else {
+              model.companyNo = model.company_id;
+              delete model["company_id"];
+              res = await asyncRequest.edit_update(model);
+            }
+            // console.log(res);
+            this.loading = false;
+            const { code, data, message } = res;
+            if (code === 0) {
+              const title =
+                this.type === "add"
+                  ? "新建成功!"
+                  : this.type === "editBase"
+                  ? "基础信息修改成功!"
+                  : this.type === "editCoin"
+                  ? "成本信息修改成功!"
+                  : "商品信息修改成功";
+              this.$notify.success({
+                title: title,
+                message: ""
+              });
+              this.showModelThis = false;
+              // 刷新
+              this.$emit("refresh");
+            } else if (code >= 100 && code <= 104) {
+              await this.logout();
+            } else {
+              this.$message.warning(message);
+            }
+          }
+        } else {
+          // console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+    groupGoodChange(e) {
+      this.ruleForm.is_combind = e;
+    },
+    //获取规格值
+    setResData(type) {
+      let list = JSON.parse(
+        JSON.stringify(type === 1 ? this.spec_tableData : this.ladder_tableData)
+      );
+      let oldlist = JSON.parse(
+        JSON.stringify(
+          type === 1 ? this.old_spec_tableData : this.old_ladder_tableData
+        )
+      );
+      let hasIDlist = [];
+      list.forEach(a => {
+        if (a.id !== "") {
+          hasIDlist.push(a);
+        }
+      });
+      let newList = [];
+      let resList = [];
+      oldlist.forEach((a, ai) => {
+        let item = null;
+        let index = hasIDlist.findIndex(b => a.id === b.id);
+        if (index === -1) {
+          item = JSON.parse(JSON.stringify(a));
+          item.is_del = "1";
+        } else {
+          item = JSON.parse(JSON.stringify(hasIDlist[index]));
+        }
+        newList.push(item);
+      });
+      list.forEach(b => {
+        if (b.id === "") {
+          b.is_del = "0";
+          newList.push(b);
+        }
+      });
+      if (type === 1) {
+        newList.forEach(a => {
+          let m = {
+            id: a.id,
+            spec_id: a.spec_id,
+            spec_value_id: a.spec_value_id,
+            is_del: a.is_del || "0"
+          };
+          resList.push(m);
+        });
+      } else {
+        newList.forEach(a => {
+          let m = {
+            id: a.id,
+            min_num: a.min_num,
+            nake_fee: a.nake_fee,
+            cost_fee: a.cost_fee,
+            delivery_fee: a.delivery_fee,
+            cert_fee: a.cert_fee,
+            mark_fee: a.mark_fee,
+            package_fee: a.package_fee,
+            other_fee: a.other_fee,
+            is_del: a.is_del || "0"
+          };
+          resList.push(m);
+        });
+      }
+      return resList;
+    },
+    setladder() {
+      let list = JSON.parse(JSON.stringify(this.ladder_tableData));
+      let oldlist = JSON.parse(JSON.stringify(this.old_ladder_tableData));
+      let hasIDlist = [];
+      list.forEach(a => {
+        if (a.id !== "") {
+          hasIDlist.push(a);
+        }
+      });
+      let newList = [];
+      let resList = [];
+      oldlist.forEach((a, ai) => {
+        let item = null;
+        let index = hasIDlist.findIndex(b => a.id === b.id);
+        if (index === -1) {
+          item = JSON.parse(JSON.stringify(a));
+          item.is_del = "1";
+        } else {
+          item = JSON.parse(JSON.stringify(b));
+        }
+        newList.push(item);
+      });
+      list.forEach(b => {
+        if (b.id === "") {
+          b.is_del = "0";
+          newList.push(b);
+        }
+      });
+      newList.forEach(a => {
+        let m = {
+          id: a.id,
+          min_num: a.min_num,
+          spec_value_id: a.spec_value_id,
+          is_del: a.is_del || "0"
+        };
+        resList.push(m);
+      });
+      return resList;
+    },
+    //规格编辑修改
+    refreshEdit(e) {
+      let item = JSON.parse(JSON.stringify(e));
+      const {
+        index,
+        id,
+        spec_id,
+        isMust,
+        spec_value,
+        spec_value_id,
+        spec_value_value
+      } = item;
+      let ffindex = -1;
+      this.spec_tableData.forEach((i, findex) => {
+        if (i.spec_id === spec_id) {
+          ffindex = findex;
+          this.spec_tableData[findex].id = id;
+          this.spec_tableData[findex].spec_id = spec_id;
+          // this.spec_tableData[findex].isMust = isMust;
+          this.spec_tableData[findex].spec_value = spec_value;
+          this.spec_tableData[findex].spec_value_id = spec_value_id;
+          this.spec_tableData[findex].spec_value_value = spec_value_value;
+        }
+      });
+      if (ffindex === -1) {
+        this.spec_tableData.push(item);
+      }
+      this.showModel = false;
+    },
+    //阶梯成本修改
+    async costrefreshEdit(e) {
+      let item = JSON.parse(JSON.stringify(e));
+      const {
+        index,
+        id,
+        cost_fee,
+        delivery_fee,
+        min_num,
+        nake_fee,
+        cert_fee,
+        mark_fee,
+        package_fee,
+        other_fee
+      } = item;
+      let isok = true;
+      let ffindex = -1;
+      if (this.ladder_tableData && this.ladder_tableData.length === 0) {
+        this.ladder_tableData.push(item);
+      } else {
+        this.ladder_tableData.forEach((i, findex) => {
+          if (parseInt(min_num + "") === parseInt(i.min_num + "")) {
+            isok = false;
+            this.ladder_tableData[findex].id = id;
+            this.ladder_tableData[findex].min_num = min_num;
+            this.ladder_tableData[findex].cost_fee = cost_fee;
+            this.ladder_tableData[findex].delivery_fee = delivery_fee;
+            this.ladder_tableData[findex].nake_fee = nake_fee;
+            this.ladder_tableData[findex].cert_fee = cert_fee;
+            this.ladder_tableData[findex].mark_fee = mark_fee;
+            this.ladder_tableData[findex].package_fee = package_fee;
+            this.ladder_tableData[findex].other_fee = other_fee;
+          }
+        });
+        if (isok) {
+          this.ladder_tableData.forEach((i, findex) => {
+            if (findex === parseInt(index + "")) {
+              ffindex = findex;
+              this.ladder_tableData[findex].id = id;
+              this.ladder_tableData[findex].min_num = min_num;
+              this.ladder_tableData[findex].cost_fee = cost_fee;
+              this.ladder_tableData[findex].delivery_fee = delivery_fee;
+              this.ladder_tableData[findex].nake_fee = nake_fee;
+              this.ladder_tableData[findex].cert_fee = cert_fee;
+              this.ladder_tableData[findex].mark_fee = mark_fee;
+              this.ladder_tableData[findex].package_fee = package_fee;
+              this.ladder_tableData[findex].other_fee = other_fee;
+            }
+          });
+          if (ffindex === -1) {
+            this.ladder_tableData.push(item);
+          }
+        }
+      }
+
+      await this.get_all_fee();
+      this.showModel = false;
+    },
+    async get_golpricelast() {
+      const { noble_metal } = this.ruleForm;
+      if (noble_metal) {
+        let model = {
+          type: noble_metal
+        };
+        const { code, data, message } = await asyncRequest.golpricelast(model);
+        if (code === 0) {
+          data.forEach(e => {
+            if (e.type) {
+              this.ruleForm.noble_price = e.price;
+            }
+          });
+        } else if (code >= 100 && code <= 104) {
+          await this.logout();
+        } else {
+          this.$message.warning(message);
+        }
+      } else {
+        this.ruleForm.noble_price = "0";
+      }
+    },
+    async get_all_fee() {
+      await this.get_golpricelast();
+      this.ladder_tableData.forEach((si, sii) => {
+        this.ladder_tableData[sii].nake_total = this.count_fee(si);
+        this.$set(this.ladder_tableData, sii, this.ladder_tableData[sii]);
+      });
+    },
+    count_fee(e) {
+      const {
+        noble_price, //供应商采购金价
+        is_gold_price, //是否启用实时金价
+        noble_weight //贵金属重量
+      } = this.ruleForm;
+      const {
+        nake_fee, //成本单价
+        cost_fee, //工艺费
+        delivery_fee, //物流费
+
+        cert_fee, //证书费
+        mark_fee, //加标费
+        package_fee, //包装费
+        other_fee //其他费用
+      } = e;
+      let XA = add_sum(nake_fee, delivery_fee),
+        XB = add_sum(package_fee, cert_fee),
+        XC = add_sum(mark_fee, other_fee),
+        XD = 0;
+      let total = add_sum(add_sum(XA, XB), XC);
+      // console.log(total);
+      if (this.is_noble && is_gold_price === "1") {
+        XD = add_sum(
+          accMul(noble_price, noble_weight),
+          accMul(noble_weight, cost_fee)
+        );
+        total = add_sum(total, XD);
+      }
+      return total;
+    },
+
+    dataSort(key) {
+      return function(a, b) {
+        let value1 = a[key];
+        let value2 = b[key];
+        return value1 - value2;
+      };
+    },
+    async getSupplerPower() {
+      const { code, data, message } = await asyncRequest.supplerlist({
+        code: this.ruleForm.supplierNo[0],
+        is_platform: "",
+        name: "",
+        page: 1,
+        size: 1000
+      });
+      return { scode: code, sdata: data, smsg: message };
+    },
+    resetFormData() {
+      this.is_support_stock = "1";
+      this.spec_tableData = [];
+      this.old_spec_tableData = [];
+      this.ladder_tableData = [];
+      this.old_ladder_tableData = [];
+      this.cat_id_name = "";
+      this.is_noble = false;
+      this.status = "";
+      this.brand_name = "";
+      this.unit_name = "";
+      this.supplierName = "";
+
+      this.ruleForm = {
+        id: "",
+        spuCode: "",
+        cat_id: [],
+        brandid: [],
+        noble_weight: "0",
+        weight: "0",
+        good_type: "0",
+        is_stock: "0",
+        supplierNo: [],
+        company_id: "",
+        is_auth: "",
+        tax: "",
+        good_name: "",
+        unit: [],
+        is_exclusive: [],
+        noble_metal: "",
+        is_gold_price: "",
+        moq: "",
+        customized: "",
+        after_sales: "",
+        craft_desc: "",
+        good_remark: "",
+        //包装发货/图片
+        packing_list: "",
+        packing_way: "",
+        packing_spec: "",
+        packing_weight: "",
+        packing_size: "",
+        good_size: "",
+        good_bar: "",
+        supply_area: "",
+        delivery_place: [],
+        origin_place: [],
+        delivery_day: "0",
+        lead_time: "0",
+        sample_day: "0",
+        good_thumb_img: "",
+        good_img: [],
+        good_info_img: [],
+        //固定阶梯成本
+        demo_fee: "0",
+        open_fee: "0",
+        sample_fee: "0",
+        market_price: "0",
+        cgd_gold_price: "0",
+        noble_price: "0",
+        // is_step: "0",
+        is_diff: "",
+        config: [],
+        other_config: "",
+        stock_moq: "0",
+        is_combind: ""
+      };
+    },
+
+    async resetForm() {
+      // 重置
+      await this.$nextTick(async () => {
+        if (this.$refs.ruleForm) {
+          this.$refs.ruleForm.resetFields();
+          this.$refs.ruleForm.clearValidate();
+          this.spec_tableData = [];
+          this.old_spec_tableData = [];
+          this.ladder_tableData = [];
+          this.old_ladder_tableData = [];
+          const {
+            id,
+            companyName,
+            spuCode, //string	商品spuCode
+            // good_code, //string	无
+            good_name, //string	商品名称
+            // cat_id, //string	分类id
+            cat_info, //array 分类
+            brand_id, //string	品牌id
+            unit,
+            supplierName,
+            companyNo, //	string	企业公司id
+            good_unit, //	string	商品单位
+            good_type, //string	是否定制 1是0否
+            moq, //string	起订量
+            is_exclusive, //	string	是否是专属
+            customized, //	string	定制工期
+            tax, //string	税率
+            supplierNo, //	string	供应商
+            is_auth, //string	是否有销售权限0 否1 是
+            auth_img, //	string	无
+            exclusive,
+            is_stock, //
+            after_sales, //	string	售后说明
+            craft_desc, //	string	工艺说明
+            good_remark, //	string	商品备注
+            weight, //	string	重量
+            packing_way, //	string	包装方式
+            packing_size, //	string	包装尺寸
+            good_size, //商品尺寸
+            packing_spec, //	string	包装规格
+            packing_list, //	string	包装清单
+            packing_weight, //	string	装箱重量
+            good_bar, //	string	条形码
+            supply_area, //	string	供货区域 1 全国2 除偏远地区
+            delivery_place, //	string	发货地区
+            origin_place, //	string	产地
+            delivery_day, //	string	物流天数
+            lead_time, //	string	供货周期
+            sample_day, //string	调样周期
+            sample_fee, //		string	调样费有
+            good_img, //	string	商品图片
+            good_thumb_img, //	string	商品说略图
+            good_info_img, //	string	商品详情图
+            demo_fee, //	string	打样费
+            open_fee, //	string	开模费
+            noble_metal, //	string	金属类别
+            noble_weight, //	string	金属重量
+            is_gold_price, //	string	是否使用实时金价
+            market_price, //	string	市场价
+            cgd_gold_price, //	string	供应商采购金价
+            noble_price,
+            // is_step, //	string	是否使用阶梯价
+            // is_online, //	string	是否上线
+            status, //		string	状态
+            nakelist, //阶梯成本
+            speclist, //商品规格
+            brand_name,
+            config,
+            is_diff,
+            other_config,
+            stock_moq,
+            is_support_stock,
+            is_combind,
+            combind_list
+          } = this.sitem;
+
+          if (this.type !== "add") {
+            const { name, area_code } = await this.getArea("delivery_place");
+            this.areaInfo.delivery_place.label = [name];
+            this.areaInfo.delivery_place.code = [area_code];
+            const { name: _name, area_code: _area_code } = await this.getArea(
+              "origin_place"
+            );
+            this.areaInfo.origin_place.label = [_name];
+            this.areaInfo.origin_place.code = [_area_code];
+          }
+
+          this.companyName = companyName;
+
+          if (this.type !== "add") {
+            this.childTableData = combind_list.map(
+              ({ childCode, child_name, child_num, id }) => ({
+                childCode,
+                child_name,
+                child_num,
+                id
+              })
+            );
+
+            this.sourceCombindList = this.childTableData.map(item => ({
+              ...item
+            }));
+          }
+
+          this.is_support_stock = is_support_stock || "1";
+          let cat_id_name = "";
+          let cat_id = [];
+          (cat_info || []).forEach((ai, i) => {
+            cat_id_name += i === 0 ? ai.name : `_${ai.name}`;
+            cat_id.push(ai.id);
+          });
+          this.cat_id_name = cat_id_name;
+          let isok = false;
+          if (cat_id.length > 0) {
+            cat_id.forEach(i => {
+              if (i === "6") {
+                isok = true;
+              }
+            });
+          }
+          let exclusiveList = [];
+          if (exclusive && exclusive.length > 0) {
+            exclusive.forEach((a, ai) => {
+              exclusiveList.push(a.id);
+            });
+          }
+          this.is_noble = isok;
+
+          let spec_list1 =
+            speclist && speclist.length > 0
+              ? JSON.parse(JSON.stringify(speclist))
+              : [];
+          spec_list1.forEach(a => {
+            let model = {
+              id: a.id,
+              is_del: a.is_del,
+              spec_id: a.spec_id,
+              spec_value: a.spec_name,
+              spec_value_value: a.spec_value,
+              spec_value_id: a.spec_value_id,
+              spuCode: a.spuCode
+            };
+            this.spec_tableData.push(model);
+          });
+          this.old_spec_tableData = JSON.parse(
+            JSON.stringify(this.spec_tableData)
+          );
+
+          let list2 =
+            nakelist && nakelist.length > 0
+              ? JSON.parse(JSON.stringify(nakelist))
+              : [];
+          this.ladder_tableData = list2;
+          this.old_ladder_tableData = JSON.parse(
+            JSON.stringify(this.ladder_tableData)
+          );
+          this.status = status;
+          this.brand_name = brand_name;
+          this.unit_name = unit;
+
+          if (this.type === "add") {
+            this.supplierName = this.getCompanyWithCode(
+              this.currentCompany
+            ).name;
+          } else {
+            this.supplierName = supplierName || "";
+          }
+
+          this.ruleForm = {
+            id: id || "",
+            spuCode: spuCode || "",
+            cat_id:
+              cat_id && cat_id.length > 0 ? [cat_id[cat_id.length - 1]] : [],
+            brandid: brand_id ? [brand_id] : [],
+            noble_weight: noble_weight || "",
+            weight: weight || "",
+            good_type: good_type || "0",
+            is_stock: is_stock || "0",
+            supplierNo: supplierNo ? [supplierNo] : [],
+            company_id: companyNo,
+            is_auth: is_auth || "",
+            tax: tax ? tax + "%" : "",
+            good_name: good_name || "",
+            unit: good_unit ? [good_unit] : [],
+            is_exclusive: exclusiveList || [],
+            noble_metal: noble_metal || "",
+            is_gold_price: is_gold_price || "0",
+            moq: moq || "0",
+            customized: customized || "0",
+            after_sales: after_sales || "",
+            craft_desc: craft_desc || "",
+            good_remark: good_remark || "",
+            //包装发货/图片
+            packing_list: packing_list || "",
+            packing_way: packing_way || "",
+            packing_spec: packing_spec || "",
+            packing_weight: packing_weight || "",
+            packing_size: packing_size || "",
+            good_size: good_size || "",
+            good_bar: good_bar || "",
+            supply_area: supply_area || "",
+            delivery_place: delivery_place
+              ? (delivery_place || "").split(",")
+              : [],
+            origin_place: origin_place ? (origin_place || "").split(",") : [],
+            delivery_day: delivery_day || "",
+            lead_time: lead_time || "",
+            sample_day: sample_day || "",
+            good_thumb_img: good_thumb_img || "",
+            good_img: good_img
+              ? Object.prototype.toString.call(good_img) === "[object Array]"
+                ? []
+                : (good_img || "").split(",")
+              : [],
+            good_info_img: good_info_img
+              ? (Object.prototype.toString.call(good_info_img) ===
+                "[object Array]"
+                  ? []
+                  : good_info_img || ""
+                ).split(",")
+              : [],
+            //固定阶梯成本
+            demo_fee: demo_fee || "",
+            open_fee: open_fee || "",
+            sample_fee: sample_fee || "",
+            market_price: market_price || "",
+            cgd_gold_price: cgd_gold_price || "",
+            noble_price: noble_price || "0",
+            // is_step: is_step || "0",
+            is_diff: is_diff || "",
+            config: config ? config.split(",") : [],
+            other_config: other_config || "",
+            stock_moq: stock_moq || "0",
+            is_combind: is_combind || ""
+          };
+        }
+
+        if (this.type === "add") {
+          this.ruleForm.supplierNo = [this.currentCompany];
+          this.$refs.ruleForm.validateField("supplierNo");
+        }
+
+        await this.set_must_spec();
+      });
+    },
+    sch_is_noble() {
+      let list = [
+        "noble_weight",
+        "noble_metal",
+        "is_gold_price",
+        "is_diff",
+        "config",
+        "other_config",
+        "cgd_gold_price"
+      ];
+      for (let i = 0; i < list.length; i++) {
+        if (list[i] === "cgd_gold_price") {
+          const { is_gold_price } = this.ruleForm;
+          this.rulesThis[list[i]][0].required =
+            this.is_noble && is_gold_price === "1";
+          // console.log(list[i] + "===" + this.rulesThis[list[i]][0].required);
+        } else {
+          this.rulesThis[list[i]][0].required = this.is_noble;
+        }
+
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField(list[i]);
+      }
+    },
+    setModel(model, type) {
+      let item = null;
+      if (type === 1) {
+        item = JSON.parse(JSON.stringify(model));
+        delete item["demo_fee"];
+        delete item["open_fee"];
+        delete item["noble_metal"];
+        delete item["noble_weight"];
+        delete item["is_gold_price"];
+        delete item["market_price"];
+        delete item["cgd_gold_price"];
+        // delete item["is_step"];
+        delete item["good_ladder"];
+      } else {
+        const {
+          demo_fee,
+          open_fee,
+          noble_metal,
+          noble_weight,
+          is_gold_price,
+          market_price,
+          cgd_gold_price,
+          // is_step,
+          good_ladder,
+          spuCode
+        } = model;
+        item = {
+          demo_fee: demo_fee || "",
+          open_fee: open_fee || "",
+          noble_metal: noble_metal || "",
+          noble_weight: noble_weight || "",
+          is_gold_price: is_gold_price || "",
+          market_price: market_price || "",
+          cgd_gold_price: cgd_gold_price || "",
+          // is_step: is_step || "",
+          good_ladder: good_ladder || [],
+          spuCode: spuCode || ""
+        };
+      }
+      return model;
+    },
+    //商品分类选择
+    async goods_class_change(e) {
+      const { is_gold, pid, id, label, cat_desc } = e;
+      this.spec_tableData = [];
+      this.ruleForm.cat_id = id ? [id] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("cat_id");
+      this.ruleForm.after_sales = cat_desc || "";
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("after_sales");
+      this.is_noble = is_gold;
+      this.sch_is_noble();
+      await this.set_must_spec();
+      await this.get_all_fee();
+    },
+    async getArea(prop = "delivery_place") {
+      const chunks = this.sitem[prop].split(",");
+      let { data: province } = await asyncRequest.province();
+      province = province.find(
+        ({ province_code }) => province_code === chunks[0]
+      );
+      let { data: city } = await asyncRequest.city({ code: chunks[0] });
+      city = city.find(({ city_code }) => city_code === chunks[1]);
+      let { data: area } = await asyncRequest.area({ code: chunks[1] });
+      return area.find(({ area_code }) => area_code === chunks[2]) || {};
+    },
+    async set_must_spec() {
+      const { cat_id } = this.ruleForm;
+      let id = cat_id.length == 1 ? cat_id[0] : "";
+      if (id) {
+        const { code, message, data } = await asyncRequest.catinfo({ id: id });
+
+        this.ruleForm.after_sales = data.cat_desc;
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField("after_sales");
+
+        const unionSpec = spec => {
+          const newArr = [];
+          const map = new Map();
+          spec.forEach((item, index) => {
+            if (!map.has(item.id)) {
+              map.set(item.id, index);
+              newArr.push(item);
+            }
+          });
+          return newArr;
+        };
+
+        if (code === 0) {
+          const { spec: _spec = [] } = data;
+          const spec = unionSpec(_spec);
+
+          if (spec && spec.length > 0) {
+            if (this.spec_tableData && this.spec_tableData.length > 0) {
+              this.spec_tableData.forEach(c => {
+                c.isMust = false;
+              });
+
+              spec.forEach((a, ai) => {
+                let findex = this.spec_tableData.findIndex(
+                  b => b.spec_id + "" === a.id + ""
+                );
+                if (findex !== -1) {
+                  this.spec_tableData[findex].isMust = true;
+                } else {
+                  this.spec_tableData.push({
+                    id: "",
+                    index: "1",
+                    spec_id: a.id + "",
+                    spec_value: a.spec_name,
+                    isMust: true,
+                    spec_value_value: "",
+                    spec_value_id: ""
+                  });
+                }
+              });
+            } else {
+              spec.forEach((a, ai) => {
+                let model = {
+                  id: "",
+                  index: "1",
+                  spec_id: a.id + "",
+                  spec_value: a.spec_name,
+                  isMust: true,
+                  spec_value_value: "",
+                  spec_value_id: ""
+                };
+                this.spec_tableData.push(model);
+              });
+            }
+          }
+          this.spec_tableData.map((e, ei) => {
+            e.index = ei + "";
+            return e;
+          });
+
+          this.spec_tableData.forEach((si, sii) => {
+            this.$set(this.spec_tableData, sii, si);
+          });
+
+          this.ruleForm.after_sales = data.cat_desc || "";
+          this.$refs.ruleForm &&
+            this.$refs.ruleForm.validateField("after_sales");
+        } else if (code >= 100 && code <= 104) {
+          await this.logout();
+        } else {
+          this.$message.warning(message);
+        }
+      } else {
+        this.spec_tableData.forEach((si, sii) => {
+          si.isMust = false;
+          this.$set(this.spec_tableData, sii, si);
+        });
+      }
+    },
+    async is_goold_price_change(e) {
+      await this.get_all_fee();
+    },
+    //商品品牌选择
+    brandidsearchChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.brandid = id ? [id] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("brandid");
+    },
+    //供应商选择
+    supplierNosearchChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.supplierNo = code ? [code] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("supplierNo");
+    },
+    //业务企业选择
+    company_idsearchChange(e) {
+      const { code } = e;
+      this.ruleForm.company_id = code || "";
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("company_id");
+    },
+    //税点选择
+    taxsearchChange(e) {
+      this.ruleForm.tax = e;
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("tax");
+    },
+    //专属类型选择
+    exclusiveSearchChange(e) {
+      this.ruleForm.is_exclusive = e;
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("is_exclusive");
+    },
+    //单位选择
+    unitsearchChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.unit = code ? [code] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField("unit");
+    },
+    //贵金属种类选择
+    async noble_metalsearchChange(e) {
+      const { id, code, label } = e;
+      this.ruleForm.noble_metal = id || "";
+      tthis.$refs.ruleForm && his.$refs.ruleForm.validateField("noble_metal");
+      await this.get_all_fee();
+    },
+    async areaChange(e, key) {
+      const { code, area_code, label } = e;
+      this.ruleForm[key] = code ? code.split(",") : [];
+      this.areaInfo[key].code = area_code ? [area_code] : [];
+      this.areaInfo[key].label = label ? [label] : [];
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+    },
+    //省市区
+    selectAreaChange(e, key) {
+      this.ruleForm[key] = e;
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+    },
+    closeImg(index, key) {
+      this.ruleForm[key].splice(index, 1);
+      this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+    },
+
+    //图片上传成功
+    async UploadSuccessEvent(data, key) {
+      const { url } = data;
+      if (url === "noToken") {
+        await this.logout();
+      } else {
+        if (key === "good_thumb_img") {
+          this.ruleForm[key] = url;
+        } else {
+          if (this.ruleForm[key].length < 10) {
+            this.ruleForm[key].push(url);
+          }
+        }
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+        this.$message.success("图片上传成功!");
+      }
+    },
+    good_type_change() {
+      let list = ["moq", "customized"];
+      for (let i = 0; i < list.length; i++) {
+        this.rulesThis[list[i]][0].required = this.ruleForm.good_type === "1";
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField(list[i]);
+      }
+    },
+    UploadErrorEvent(res, key) {
+      if (res !== "break") {
+        this.$message.error("图片上传失败!");
+        this.$refs.ruleForm && this.$refs.ruleForm.validateField(key);
+      }
+    },
+    //判断图片规格
+    beforeAvatarUpload(file) {
+      let isJPG = false;
+      if (
+        file.type === "image/jpg" ||
+        file.type === "image/png" ||
+        file.type === "image/jpeg"
+      ) {
+        isJPG = true;
+      }
+      const isLt2M = file.size / 1024 / 1024 < 1;
+      if (!isJPG) {
+        this.$message.error("图片格式不正确!");
+      }
+      if (!isLt2M) {
+        this.$message.error("图片大小不能超过 1MB!");
+      }
+      return isJPG && isLt2M;
+    }
+  }
+};
+</script>
+<style lang="scss" scoped>
+.goodsCostDetail {
+  // position: relative;
+  .good_info_img_div {
+    ul {
+      width: 100%;
+      li {
+        float: left;
+        width: 55px;
+        height: 55px;
+        padding: 0 5px 0 0;
+        .img-show-li-div {
+          width: 50px;
+          height: 50px;
+          border: 1px solid #dfe4ed;
+          background: #dfe4ed;
+          position: relative;
+          img.img-show {
+            width: 100%;
+            height: 100%;
+            position: relative;
+            display: inline-block;
+          }
+          i.el-icon-close {
+            position: absolute;
+            z-index: 2;
+            top: 0;
+            right: 0;
+            color: #dfe4ed;
+          }
+          &:hover {
+            i.el-icon-close {
+              cursor: pointer;
+              color: #6954f0;
+            }
+          }
+        }
+      }
+    }
+  }
+
+  .goodsCostAdd-title {
+    border-top: 1px solid #ebeef5;
+    span {
+      height: 50px;
+      line-height: 50px;
+      font-family: "微软雅黑", sans-serif;
+      font-weight: 400;
+      font-style: normal;
+      font-size: 16fpx;
+      text-align: left;
+    }
+  }
+}
+</style>

+ 23 - 7
src/views/goodStore/supplierGoodsCost/detail.vue

@@ -3,7 +3,7 @@
     <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'">
-          <base-form
+          <base-form-normal
             v-if="newTime !== ''"
             :type="queryType"
             :id="queryId"
@@ -11,6 +11,8 @@
             :sitem="sitem"
             @refresh="refresh"
           />
+
+          
         </el-tab-pane>
         <el-tab-pane label="商品成本详情" name="1" v-if="queryType !== 'add'">
           <el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
@@ -23,7 +25,16 @@
             >
               <el-collapse-item title="商品成本详情" name="0">
                 <base-form
-                  v-if="newTime !== ''"
+                  v-if="newTime !== '' && createSource === '1'"
+                  :type="queryType"
+                  :id="queryId"
+                  :newTime="newTime"
+                  :sitem="sitem"
+                  @refresh="refresh"
+                />
+
+                <base-form-normal
+                  v-if="newTime !== '' && createSource === '0'"
                   :type="queryType"
                   :id="queryId"
                   :newTime="newTime"
@@ -51,13 +62,13 @@
                   </template>
 
                   <template slot="is_combind">
-                    {{
-                    String(sitem.is_combind) === '1' ? '组合商品' : '非组合商品'
-                    }}
+                    <span v-if="sitem">
+                      {{ String(sitem.is_combind) === '1' ? '组合商品' : '非组合商品'}}
+                    </span>
                   </template>
 
                  <template slot="create_source">
-                    <el-tag size="mini" :type="sitem.create_source === '1' ? 'warning' : ''">
+                    <el-tag size="mini" v-if="sitem" :type="sitem.create_source === '1' ? 'warning' : ''">
                        {{ sitem.create_source === "1" ? "咨询成交商品" : "手动创建商品" }}
                     </el-tag> <span v-if="Number(sitem.create_source) === 1">,咨询采购价 {{ sitem.cgd_price }}</span>
                   </template>
@@ -264,6 +275,7 @@ import asyncRequest from "@/apis/service/goodStore/goodsCost";
 import resToken from "@/mixins/resToken";
 import { mapGetters } from "vuex";
 import baseForm from "./components/baseForm";
+import BaseFormNormal from "./components/baseFormNormal"
 import costForm from "./components/costDetail";
 import ShowDataTable from "@/views/standingBook/components/detail-data-table.vue";
 import {
@@ -285,7 +297,8 @@ export default {
     ShowDataTable,
     baseForm,
     costForm,
-    ProductModal
+    ProductModal,
+    BaseFormNormal
   },
   computed: {
     ...mapGetters([
@@ -295,6 +308,9 @@ export default {
       "private_field",
       "originLevel"
     ]),
+    createSource(){
+      return this.$route.query.createSource
+    },
     powers() {
       const { btnList } = this.$store.getters;
       const tran =

+ 11 - 8
src/views/goodStore/supplierGoodsCost/index.vue

@@ -274,7 +274,7 @@
         >
           <i
             class="el-icon-view tb-icon"
-            @click="getRouter('supplierGoodsCostDetail', scope.row.spuCode)"
+            @click="getRouter('supplierGoodsCostDetail', scope.row.spuCode, scope.row.create_source)"
           ></i>
         </el-tooltip>
         <!-- <el-tooltip
@@ -304,7 +304,8 @@
             @click="
               routeGoto('supplierGoodsCostDetail', {
                 id: scope.row.spuCode,
-                type: 'edit',
+                createSource: scope.row.create_source,
+                type: 'edit'
               })
             "
           ></i>
@@ -320,7 +321,7 @@
         >
           <i
             class="el-icon-c-scale-to-original tb-icon"
-            @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '2')"
+            @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '2',scope.row.create_source)"
           ></i>
         </el-tooltip>
 
@@ -335,7 +336,7 @@
         >
           <i
             class="el-icon-coin tb-icon"
-            @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '3')"
+            @click="wantto(scope.row.is_online, scope.row.spuCode, scope.row.status, '3',scope.row.create_source)"
           ></i>
         </el-tooltip>
         <el-tooltip
@@ -611,11 +612,12 @@ export default {
         this.$message.warning(res.message);
       }
     },
-    getRouter(toRouter, queryId) {
+    getRouter(toRouter, queryId, createSource) {
       if (toRouter && queryId) {
         let model = {
           id: queryId,
-          type: "view"
+          type: "view",
+          createSource
         };
 
         //有多选框的条件
@@ -665,7 +667,7 @@ export default {
       };
       this.searchList();
     },
-    async wantto(isonline, spuCode, ntype, wtype) {
+    async wantto(isonline, spuCode, ntype, wtype, createSource) {
       const { code, data, message } = await asyncRequest.checkIsUpdate({
         spuCode
       });
@@ -674,7 +676,8 @@ export default {
         if (is_allow_update + "" === "1") {
           this.routeGoto("supplierGoodsCostDetail", {
             id: spuCode,
-            type: wtype === "2" ? "editBase" : wtype === "3" ? "editCoin" : ""
+            type: wtype === "2" ? "editBase" : wtype === "3" ? "editCoin" : "",
+            createSource
           });
         } else {
           if (isonline + "" === "1") {

+ 0 - 1
src/views/sellOut/salesOrder/columns.js

@@ -5,7 +5,6 @@ export default [
     label: '订单编号',
     width: '155px'
   },
-
   // {
   //   prop: "good_code",
   //   label: "商品编码",

+ 2 - 3
src/views/sellOut/salesOrder/index.vue

@@ -354,10 +354,9 @@ export default {
   computed: {
     ...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube"]),
     powers() {
-      const tran =
-        this.$store.getters.btnList.find(
+      const tran = this.$store.getters.btnList.find(
           item => item.menu_route == "salesOrder"
-        ) || {};
+          ) || {};
       const { action } = tran ?? {};
       return action ?? [];
     }

+ 5 - 3
src/views/sellOut/zixunOrder/components/buyGoodModal.vue

@@ -146,7 +146,7 @@
                   </el-form-item>
 
                   <el-col :span="12">
-                    <el-form-item label="凭证类型" prop="proof_type" label-width="85px">
+                    <el-form-item label="凭证类型" prop="proof_type" label-width="85px" v-model="proof_type">
                       <el-select
                         v-model="ruleForm.proof_type"
                         placeholder="凭证类型"
@@ -728,14 +728,14 @@ export default {
         ],
         proof_type: [
           {
-            required: false,
+            required: true,
             message: "请选择凭证类型",
             trigger: "change"
           }
         ],
         proof_url: [
           {
-            required: false,
+            required: true,
             message: "请上传凭证文件",
             trigger: "blur,change"
           }
@@ -851,6 +851,8 @@ export default {
     async initForm() {
       this.loading = true;
       this.rulesThis = this.rules;
+
+      console.log(this.rulesThis)
       const { can } = this.sitem;
       this.sitem.can_name = "";
       this.sitem.is_noble = false;

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff