戴艳蓉 %!s(int64=3) %!d(string=hai) anos
pai
achega
a32bf88122

+ 2 - 2
src/apis/service/goodStore/goodsOnline/index.js

@@ -13,8 +13,8 @@ export default {
   // 更新状态
   status: (data, params) => http(api + "goodupexam", data, "post", params),
 
-  // 更改
-  update: (data, params) => http(api + "goodsave", data, "post", params),
+  // 定价岗定价
+  ladderOne: (data, params) => http(api + "goodupeditladder", data, "post", params),
   // 删除
   delete: (data, params) => http(api + "gooddel", data, "post", params),
 

+ 160 - 32
src/views/goodStore/active/components/baseForm.vue

@@ -74,14 +74,21 @@
             </el-row>
           </el-form-item>
         </el-col>
-
         <el-col :span="8">
           <el-form-item label="库存类型" prop="is_stock">
-            <el-input
-              placeholder="商品库存类型"
+            <el-select
               v-model="ruleForm.is_stock"
-              maxlength="100"
-            />
+              style="width: 100%"
+              placeholder="库存类型"
+            >
+              <el-option
+                v-for="item in is_stock"
+                :key="item.id"
+                :label="item.name"
+                :value="item.id"
+              >
+              </el-option>
+            </el-select>
           </el-form-item>
         </el-col>
         <el-col :span="16">
@@ -103,15 +110,15 @@
             prop="good_list"
           >
             <el-table
-              :data="ruleForm.spuCode"
+              :data="ruleForm.good_list"
               stripe
               border
               :size="'mini'"
               style="width: 100%"
             >
-              <el-table-column prop="date" label="日期" width="180">
+              <el-table-column prop="skuCode" label="商品编码" width="180">
               </el-table-column>
-              <el-table-column prop="name" label="姓名" width="180">
+              <el-table-column prop="good_name" label="商品名称" width="180">
               </el-table-column>
               <el-table-column prop="address" label="地址"> </el-table-column>
               <el-table-column fixed="right" width="100">
@@ -131,13 +138,18 @@
                   </el-tooltip>
                 </template>
                 <template slot-scope="scope">
-                  <el-button
-                    @click="handleClick(scope.row)"
-                    type="text"
-                    size="small"
-                    >查看</el-button
-                  >
-                  <el-button type="text" size="small">编辑</el-button>
+                  <el-tooltip effect="dark" content="查看" placement="top">
+                    <i
+                      class="el-icon-view tb-icon"
+                      @click="openEdit(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>
@@ -145,7 +157,24 @@
         </el-col>
       </el-row>
     </el-form>
-    <search-good-online-modal :once="once" :show-model="showModel" />
+    <search-good-online-modal
+      :once="once"
+      :show-model="showModel"
+      @resultList="resultList"
+    />
+    <el-col
+      :span="24"
+      v-if="type === 'editBase' || type === 'add' || type === 'editCoin'"
+      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>
   </div>
 </template>
    <script>
@@ -166,6 +195,10 @@ export default {
     return {
       size: "small",
       activeName: "3",
+      is_stock: [
+        { id: "0", name: "非库存品" },
+        { id: "1", name: "库存品" },
+      ],
       pickerOptions1: {
         disabledDate: (time) => {
           if (
@@ -254,7 +287,7 @@ export default {
           {
             type: "array",
             required: true,
-            message: "请选择活动商品",
+            message: "至少选择一个商品!",
             trigger: "change,blur",
           },
         ],
@@ -282,48 +315,143 @@ export default {
         }
       });
     },
+    openCostEditDelete(index) {
+      this.ruleForm.good_list.splice(index, 1);
+      this.$refs.ruleForm.validateField("good_list");
+    },
     company_idsearchChange(e) {
+      console.log(e);
+      let old = this.ruleForm.company_id;
       if (e) {
         const { id, code, label } = e;
         this.ruleForm.company_id = code || "";
       }
       this.$refs.ruleForm.validateField("company_id");
+      if (old !== this.ruleForm.company_id) {
+        this.ruleForm.good_list = [];
+      }
     },
     platform_codesearchChange(e) {
+      let old = JSON.parse(JSON.stringify(this.ruleForm.platform_code));
+      console.log(e);
       if (e) {
         const { id, code, label } = e;
         this.ruleForm.platform_code = id ? [id] : [];
       }
       this.$refs.ruleForm.validateField("platform_code");
+       let newList = JSON.parse(JSON.stringify(this.ruleForm.platform_code));
+      if (old !== this.ruleForm.platform_code) {
+        this.ruleForm.good_list = [];
+      }
+    },
+    resultList(e) {
+      console.log(e);
+      this.showModel = false;
+      let list = JSON.parse(JSON.stringify(e));
+      let oldList = JSON.parse(JSON.stringify(this.ruleForm.good_list));
+      list.forEach((e, ei) => {
+        let index = oldList.findIndex((a) => e.skucode === a.skucode);
+        if (index === -1) {
+          let item = JSON.parse(JSON.stringify(list[ei]));
+          this.ruleForm.good_list.push(item);
+        }
+      });
     },
     resetFormData() {
       this.ruleForm = {
-        activity_name: "",
-        platform_code: [],
-        company_id: "",
+        activity_name: "活动",
+        platform_code: ["8"],
+        company_id: "GSe61q220222143052",
         activity_start: "",
         activity_end: "",
-        activity_desc: "",
-        is_stock: "",
+        activity_desc: "活动备注",
+        is_stock: "1",
         good_list: [],
       };
     },
     handleClick(row) {
       console.log(row);
     },
-    openEdit(type, id) {
+    openEdit() {
+      const { company_id, platform_code } = this.ruleForm;
+      if (platform_code.length === 0) {
+        this.$message.warning("请选择平台!");
+        return;
+      }
+      if (company_id === "") {
+        this.$message.warning("请选择业务企业!");
+        return;
+      }
       this.showModel = true;
-      console.log(type);
-      console.log(id);
     },
-    async initData() {
-      this.loading = true;
-      let res = await asyncRequest.detail({ id: this.id });
-      this.loading = false;
-      if (res.code === 0) {
-        await this.resetForm(res.data);
-      }
+    async submitForm() {
+      await this.$refs.ruleForm.validate(async (valid) => {
+        if (valid) {
+          this.loading = true;
+          // if (this.spec_tableData.length === 0) {
+          //   this.$message.warning("请录入商品规格信息!");
+          //   this.loading = false;
+          //   return;
+          // }
+          // if (this.ladder_tableData.length === 0) {
+          //   this.$message.warning("请录入阶梯成本!");
+          //   this.loading = false;
+          // }
+          // let model = JSON.parse(JSON.stringify(this.ruleForm));
+          // model.cat_id = model.cat_id[model.cat_id.length - 1];
+          // 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.unit = model.unit.toString();
+          // model.speclist = JSON.parse(JSON.stringify(this.setResData(1)));
+          // model.good_ladder = JSON.parse(JSON.stringify(this.setResData(2)));
+          // let res = {};
+          // delete model["id"];
+          // if (this.type === "add") {
+          //   delete model["id"];
+          //   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 {
+          //   let item2 = this.setModel(model, "2");
+          //   res = await asyncRequest.updateP(item2);
+          // }
+          // console.log(res);
+          // this.loading = false;
+          // if (res && res.code === 0) {
+          //   const { spuCode } = res.data;
+          //   const title =
+          //     this.type === "add"
+          //       ? "新建成功!"
+          //       : this.type === "editBase"
+          //       ? "基础信息修改成功!"
+          //       : "成本信息修改成功!";
+          //   this.$notify.success({
+          //     title: title,
+          //     message: "",
+          //   });
+          //   this.showModelThis = false;
+          //   // 刷新
+          //   this.$emit("refresh", { spuCode: spuCode });
+          // }
+        } else {
+          console.log("error submit!!");
+          return false;
+        }
+      });
     },
+    // async initData() {
+    //   this.loading = true;
+    //   let res = await asyncRequest.detail({ id: this.id });
+    //   this.loading = false;
+    //   if (res.code === 0) {
+    //     await this.resetForm(res.data);
+    //   }
+    // },
   },
 };
 </script>

+ 1 - 0
src/views/goodStore/goodsCost/components/costFormAddEdit.vue

@@ -132,6 +132,7 @@ export default {
     async initForm() {
       this.loading = true;
       await this.resetFormData();
+      this.rulesThis = this.rules;
       console.log(this.index);
       if (this.index + "" === "-1") {
         this.title = "添加成本阶梯";

+ 10 - 8
src/views/goodStore/goodsOnline/ShowDataTableColumns.js

@@ -82,9 +82,9 @@ export default [
     span: 8,
   },
   {
-    prop: "diff_price1",
+    prop: "exclusive",
     label: "专属类型",
-    _slot_: "diff_price1",
+    // _slot_: "exclusive",
     span: 8,
   },
   {
@@ -147,12 +147,12 @@ export default [
     span: 8,
   },
   {
-    prop: "delivery_place",
+    prop: "delivery_place_cn",
     label: "发货地",
     span: 8,
   },
   {
-    prop: "origin_place",
+    prop: "origin_place_cn",
     label: "产地",
     span: 8,
   },
@@ -261,10 +261,12 @@ export default [
     span: 24,
   },
 
-  // {
-  //   prop: "good_price",
-  //   label: "商品单价",
-  // },
+  {
+    prop: "purchase",
+    label: "采购起订量信息",
+    _slot_: "purchase",
+    span: 24,
+  },
 
 
 

+ 225 - 0
src/views/goodStore/goodsOnline/components/costFormAddEdit.vue

@@ -0,0 +1,225 @@
+<template>
+  <el-dialog
+    v-loading="loading"
+    :title="title"
+    :center="true"
+    align="left"
+    top="15vh"
+    width="500px"
+    :close-on-click-modal="false"
+    :visible.sync="showModelThis"
+    element-loading-text="拼命加载中"
+    element-loading-spinner="el-icon-loading"
+    element-loading-background="rgba(0, 0, 0, 0.8)"
+    @close="showModelThis = false"
+  >
+    <el-card style="margin: -20px 0 0 0">
+      <el-row :gutter="10">
+        <el-col :span="24">
+          <el-form
+            ref="ruleForm"
+            :model="ruleForm"
+            status-icon
+            :size="'small'"
+            :rules="rulesThis"
+            label-width="110px"
+            class="demo-ruleForm"
+          >
+            <el-form-item label="起订量" prop="min_num">
+              <digital-input
+                :values="ruleForm.min_num"
+                :placeholder="'起订量'"
+                :min="0"
+                :max="10000000000"
+                :position="'right'"
+                :precision="0"
+                :controls="false"
+                :disabled="id === '007'"
+                :append="''"
+                @reschange="min_num_change"
+              />
+            </el-form-item>
+            <el-form-item label="售价" prop="sale_price">
+              <digital-input
+                :values="ruleForm.sale_price"
+                :placeholder="'售价'"
+                :min="0"
+                :max="10000000000"
+                :position="'right'"
+                :precision="2"
+                :controls="false"
+                :disabled="id === '007'"
+                :append="'元'"
+                @reschange="sale_price_change"
+              />
+            </el-form-item>
+            <el-form-item label="市场价" prop="market_price">
+              <digital-input
+                :values="ruleForm.market_price"
+                :placeholder="'市场价'"
+                :min="0"
+                :max="10000000000"
+                :position="'right'"
+                :precision="2"
+                :controls="false"
+                :disabled="id === '007'"
+                :append="'元'"
+                @reschange="market_price_change"
+              />
+            </el-form-item>
+
+            <el-form-item label="对比平台" prop="market_platform">
+              <el-input
+                placeholder="对比平台"
+                v-model="ruleForm.market_platform"
+                maxlength="20"
+              />
+            </el-form-item>
+            <el-form-item label="阶梯使用状态" prop="status">
+              <el-radio-group v-model="ruleForm.status">
+                <el-radio :label="'1'">启用</el-radio>
+                <el-radio :label="'0'">禁用</el-radio>
+              </el-radio-group>
+            </el-form-item>
+          </el-form>
+        </el-col>
+        <el-col :span="24" style="text-align: right">
+          <el-button :size="'small'" type="primary" @click="submitForm"
+            >保 存
+          </el-button>
+          <el-button @click="showModelThis = false" :size="'small'">{{
+            "取 消"
+          }}</el-button>
+        </el-col>
+      </el-row>
+    </el-card>
+  </el-dialog>
+</template>
+<script>
+import resToken from "@/mixins/resToken";
+export default {
+  name: "brand",
+  props: ["showModel", "index", "sitem"],
+  mixins: [resToken],
+  data() {
+    return {
+      loading: false,
+      title: "",
+      showModelThis: this.showModel,
+      ruleForm: {},
+      rulesThis: this.rules,
+      rules: {
+        min_num: [
+          { required: true, message: "起订量应为合法数字", trigger: "blur" },
+        ],
+        sale_price: [
+          { required: true, message: "工艺费应为合法数字", trigger: "blur" },
+        ],
+        market_price: [
+          { required: true, message: "成本合计应为合法数字", trigger: "blur" },
+        ],
+        market_platform: [
+          { required: true, message: "对比平台不能为空", trigger: "blur" },
+        ],
+        status: [
+          { required: true, message: "请选择使用状态", trigger: "change" },
+        ],
+      },
+    };
+  },
+  watch: {
+    showModel: function (val) {
+      this.showModelThis = val;
+      if (val) {
+        this.initForm();
+      }
+    },
+    showModelThis(val) {
+      if (!val) {
+        this.$emit("cancel");
+      }
+    },
+  },
+  methods: {
+    async initForm() {
+      this.loading = true;
+      await this.resetFormData();
+      console.log(this.index);
+      this.rulesThis = this.rules;
+      if (this.index + "" === "-1") {
+        this.title = "添加销售成本阶梯";
+      } else {
+        this.title = "修改销售成本阶梯";
+      }
+
+      await this.resetForm();
+      this.loading = false;
+    },
+    async resetForm() {
+      // 重置
+      await this.$nextTick(async () => {
+        if (this.$refs.ruleForm) {
+          this.$refs.ruleForm.resetFields();
+          this.$refs.ruleForm.clearValidate();
+          await this.resetFormData();
+        }
+      });
+    },
+    async resetFormData() {
+      const {
+        id,
+        min_num,
+        sale_price,
+        market_price,
+        market_platform,
+        status,
+        is_del,
+      } = this.sitem;
+      this.ruleForm = {
+        id: id || "",
+        index: this.index,
+        min_num: min_num || "",
+        sale_price: sale_price || "",
+        market_price: market_price || "",
+        market_platform: market_platform || "",
+        status: status || "",
+        is_del: is_del || "0",
+      };
+    },
+
+    async submitForm() {
+      await this.$refs.ruleForm.validate(async (valid) => {
+        if (valid) {
+          this.showModelThis = false;
+          // 刷新
+          this.$emit("refresh", this.ruleForm);
+        } else {
+          console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+    min_num_change(e) {
+      this.ruleForm.min_num = e;
+      this.$refs.ruleForm.validateField("min_num");
+    },
+    sale_price_change(e) {
+      this.ruleForm.sale_price = e;
+      this.$refs.ruleForm.validateField("sale_price");
+    },
+    market_price_change(e) {
+      this.ruleForm.market_price = e;
+      this.$refs.ruleForm.validateField("market_price");
+    },
+    reschange(e) {
+      this.ruleForm.price = e;
+      this.$refs.ruleForm.validateField("price");
+    },
+  },
+};
+</script>
+
+   <style lang="scss" scoped>
+.brand {
+}
+</style>

+ 378 - 0
src/views/goodStore/goodsOnline/components/fixed-price-form.vue

@@ -0,0 +1,378 @@
+<template>
+  <el-form
+    v-loading="loading"
+    ref="ruleForm"
+    :model="ruleForm"
+    status-icon
+    :rules="rulesThis"
+    :label-width="labelWidth || '110px'"
+    class="demo-ruleForm-goodsOnline"
+    :size="'mini'"
+  >
+    <el-row>
+      <el-col :span="12"
+        ><el-form-item label="售价凭证类型" prop="proof_type">
+          <el-radio-group v-model="ruleForm.proof_type">
+            <el-radio
+              v-for="item in options"
+              :key="item.value"
+              :label="item.value"
+              >{{ item.label }}</el-radio
+            >
+          </el-radio-group>
+        </el-form-item>
+      </el-col>
+      <el-col :span="12">
+        <el-form-item label="凭证文件" prop="proof_url">
+          <ul class="shangchuan-ul">
+            <li v-if="ruleForm.proof_type === '1'" class="shiping">213132</li>
+            <li v-if="ruleForm.proof_type === '2'" class="tupian">
+              <div class="activity-upload">
+                <div class="btnupload" style="position: relative">
+                  <img
+                    v-if="ruleForm.proof_url"
+                    :src="ruleForm.proof_url"
+                    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="false"
+                    :uploadcondition="beforeAvatarUpload"
+                    @UploadErrorEvent="UploadErrorEventproof_url"
+                    @UploadSuccessEvent="UploadSuccessEventproof_url"
+                  ></file-upload>
+                </div>
+                <div class="txt-tips fl">
+                  <p>建议大小:小于1MB</p>
+                  <p>文件格式:.jpg,.png,.jpeg</p>
+                </div>
+                <div class="show-"></div>
+              </div>
+            </li>
+            <li v-if="ruleForm.proof_type === '3'" class="qita">213132</li>
+          </ul>
+        </el-form-item>
+      </el-col>
+      <el-col :span="24">
+        <el-table
+          :data="ruleForm.good_ladder"
+          :size="'mini'"
+          border
+          stripe
+          style="width: 100%; margin: 0 0 20px 0"
+        >
+          <el-table-column prop="min_num" label="起订量(>=)" />
+          <el-table-column prop="sale_price" label="售价" />
+          <el-table-column prop="market_price" label="市场价" />
+          <el-table-column prop="market_platform" label="对比平台" />
+          <el-table-column prop="status" label="状态" />
+          <el-table-column fixed="right">
+            <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>
+        <!-- 弹窗 新增/修改 -->
+        <cost-form-add-edit
+          :index="costmodelIndex"
+          :show-model="costshowModel"
+          :sitem="costsitem"
+          @refresh="costrefreshEdit"
+          @cancel="costshowModel = false"
+        />
+        <el-form-item class="fr">
+          <el-button
+            v-if="!isDetail"
+            :size="'mini'"
+            type="primary"
+            @click="submitForm"
+            >保 存
+          </el-button>
+        </el-form-item>
+      </el-col>
+    </el-row>
+  </el-form>
+</template>
+
+<script>
+import costFormAddEdit from "./costFormAddEdit";
+import asyncRequest from "@/apis/service/goodStore/goodsOnline";
+export default {
+  name: "exam-form",
+  props: ["size", "statusList", "disabled", "isMust", "labelWidth", "id"],
+  components: {
+    costFormAddEdit,
+  },
+  /**
+   * 属性集合
+   * @param {String}        size             : 组件大小             非必填
+   * @param {Array}         statusList       : 驳回至备选项          必填
+   * @param {Boolean}       disabled         : 是否禁用              必填
+   * @param {Boolean}       isMust           : 是否需要展示驳回节点   必填
+   *
+   *
+   */
+  /**
+   * 事件集合
+   * @searchChange             : 选中值变化调用   抛出选中数据
+   */
+  data() {
+    return {
+      loading: false,
+      options: [
+        {
+          value: "1",
+          label: "视频",
+        },
+        {
+          value: "2",
+          label: "图片",
+        },
+        {
+          value: "3",
+          label: "其他",
+        },
+      ],
+      showModelThis: this.showModel,
+      pickerOptions: {
+        disabledDate(time) {
+          return time.getTime() < Date.now() - 60 * 60 * 24 * 1000;
+        },
+      },
+      costshowModel: false,
+      costmodelIndex: "",
+      costsitem: {},
+      ruleForm: {
+        skuCode: "",
+        proof_type: "1", // 通过or驳回
+        proof_url: "", //驳回至
+        good_ladder: [],
+      },
+      rulesThis: this.rules,
+      rules: {
+        proof_type: [
+          {
+            required: true,
+            message: "请选择审核状态",
+            trigger: "change",
+          },
+        ],
+        proof_url: [
+          {
+            required: true,
+            message: "请上传",
+            trigger: "change",
+          },
+        ],
+        rebut: [
+          {
+            required: true,
+            message: "请选择驳回节点",
+            trigger: "change",
+          },
+        ],
+        remark: [
+          { required: true, message: "请输入审核备注", trigger: "blur" },
+          {
+            min: 1,
+            max: 250,
+            message: "长度在 1 到 250 个字符",
+            trigger: "blur",
+          },
+        ],
+      },
+    };
+  },
+  watch: {
+    isDetail: function (val, old) {
+      if (this.isDetail !== val) {
+        this.options = [];
+        this.selectLoading = false;
+      }
+    },
+  },
+  mounted() {
+    this.initForm();
+  },
+  methods: {
+    async initForm() {
+      this.loading = true;
+      this.rulesThis = this.rules;
+      await this.resetForm();
+      this.loading = false;
+    },
+
+    openCostEdit(index, sitem) {
+      this.costmodelIndex = index;
+      this.costsitem = sitem;
+      this.costshowModel = true;
+    },
+
+    openCostEditDelete(index) {
+      this.ladder_tableData.splice(index, 1);
+    },
+    //阶梯成本修改
+    costrefreshEdit(e) {
+      let item = JSON.parse(JSON.stringify(e));
+      console.log(item);
+      const {
+        index,
+        id,
+        min_num,
+        sale_price,
+        market_price,
+        market_platform,
+        status,
+        is_del,
+      } = item;
+      if (index + "" === "-1") {
+        this.ruleForm.good_ladder.push(item);
+      } else {
+        this.ruleForm.good_ladder.forEach((i, findex) => {
+          if (i.id === id && findex === parseInt(i.index)) {
+            this.ruleForm.good_ladder[findex].id = id;
+            this.ruleForm.good_ladder[findex].sale_price = sale_price;
+            this.ruleForm.good_ladder[findex].market_price = market_price;
+            this.ruleForm.good_ladder[findex].min_num = min_num;
+            this.ruleForm.good_ladder[findex].market_platform = market_platform;
+            this.ruleForm.good_ladder[findex].status = status;
+            this.ruleForm.good_ladder[findex].id_del = is_del;
+          }
+        });
+        // this.ladder_tableData = this.ladder_tableData.sort(
+        //   this.dataSort("min_num")
+        // );
+      }
+      this.showModel = false;
+    },
+
+    async resetForm() {
+      // 重置
+      await this.$nextTick(() => {
+        if (this.$refs.ruleForm) {
+          this.$refs.ruleForm.resetFields();
+          this.$refs.ruleForm.clearValidate();
+
+          this.ruleForm = {
+            skuCode: this.id,
+            proof_type: "1", // 通过or驳回
+            proof_url: "", //驳回至
+            good_ladder: [],
+          };
+        }
+      });
+    },
+    async submitForm() {
+      await this.$refs.ruleForm.validate(async (valid) => {
+        if (valid) {
+          let model = JSON.parse(JSON.stringify(this.ruleForm));
+          let list = JSON.parse(JSON.stringify(model.good_ladder));
+          let list2 = [];
+          list.forEach((e) => {
+            let n = JSON.parse(JSON.stringify(e));
+            for (let key in n) {
+              n[key] += "";
+            }
+            delete n["index"];
+            list2.push(n);
+          });
+          model.good_ladder = list2;
+          model.skuCode = this.id;
+          let res = await asyncRequest.ladderOne(model);
+          this.loading = false;
+          if (res && res.code === 0) {
+            const { spuCode } = res.data;
+            this.$notify.success({
+              title: "信息提交成功",
+              message: "",
+            });
+            // this.showModelThis = false;
+            // 刷新
+            this.$emit("resSuccess", true);
+            // this.routeReGoto("goodsOnline", {});
+          }
+        } else {
+          console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+    //图片上传成功
+    async UploadSuccessEventproof_url(data) {
+      const { url } = data;
+      if (url === "noToken") {
+        await this.logout();
+      } else {
+        this.ruleForm.proof_url = url;
+        this.$refs.ruleForm.validateField("proof_url");
+        this.$message.success("图片上传成功!");
+      }
+    },
+
+    //图片上传失败
+    UploadErrorEventproof_url(res) {
+      if (res !== "break") {
+        this.$message.error("图片上传失败!");
+        this.$refs.ruleForm.validateField("proof_url");
+      }
+    },
+
+    //判断图片规格
+    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>
+.demo-ruleForm-goodsOnline {
+  .shangchuan-ul {
+    li {
+      position: relative;
+      width: 100%;
+      &.tupian {
+      }
+    }
+  }
+}
+</style>

+ 44 - 12
src/views/goodStore/goodsOnline/detail.vue

@@ -1,5 +1,6 @@
 <template>
   <div class="goodsOnlineDetail">
+    {{ status }}
     <div
       class="goodsOnlineDetail-main"
       v-if="powers && powers.length > 0 && powers.some((item) => item == '007')"
@@ -17,7 +18,7 @@
                 <template slot="good_name">
                   <img
                     v-viewer
-                    style="width: 30px; heigth: 30px; margin: 3px 5px 0 0"
+                    style="width: 26px; height: 26px; margin: 5px 5px 0 0"
                     class="fl"
                     v-if="sitem.good_thumb_img"
                     :src="sitem.good_thumb_img"
@@ -34,7 +35,7 @@
                 <template slot="good_info_img">
                   <img
                     class="fl"
-                    style="width: 30px; heigth: 30px; margin: 3px 5px 2px 0"
+                    style="width: 26px; height: 26px; margin: 5px 5px 2px 0"
                     v-viewer
                     v-for="(si, i) in sitem.good_info_img"
                     :src="si"
@@ -50,7 +51,15 @@
                     "
                   />
                 </template>
-                <template slot="diff_price1"> ???? </template>
+                <!-- <template slot="exclusive">
+                  <el-tag
+                    :size="'mini'"
+                    v-text="
+                      (options2.find((item) => item.id == sitem.exclusive) || {})
+                        .name || '--'
+                    "
+                  />
+                </template> -->
                 <template slot="is_stock">
                   <el-tag
                     :size="'mini'"
@@ -108,6 +117,20 @@
                     "
                   />
                 </template>
+                <template slot="purchase">
+                  <el-table
+                    :data="sitem.ladderlist"
+                    :size="'mini'"
+                    border
+                    stripe
+                    style="width: 99%; margin: 10px 10px 10px 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>
+                </template>
               </show-data-table>
             </el-collapse-item>
             <el-collapse-item
@@ -116,19 +139,26 @@
               v-if="status === '2'"
             >
               <online-exam-form
-                :options8="options8"
                 :newTime="newTime"
+                v-if="newTime !== ''"
+                :options8="options8"
                 :disabled="false"
                 :isMust="false"
                 @searchChange="examForm"
               />
             </el-collapse-item>
-                <el-collapse-item
-              title="财务定价"
-              name="2"
-              v-if="status === '3'"
+            <el-collapse-item title="财务定价" name="2" v-if="status === '3'">
+              <fixed-price-form
+                :newTime="newTime"
+                :id="queryId"
+                v-if="newTime !== ''"
+                :options8="options8"
+                :disabled="false"
+                :isMust="false"
+                @resSuccess="initForm"
+              />
+              财务定价</el-collapse-item
             >
-            财务定价</el-collapse-item>
           </el-collapse>
         </el-tab-pane>
         <el-tab-pane label="审批记录" name="2"> 111 </el-tab-pane>
@@ -145,6 +175,7 @@ import resToken from "@/mixins/resToken";
 import { mapGetters } from "vuex";
 import ShowDataTableColumns from "./ShowDataTableColumns";
 import onlineExamForm from "./components/online-exam-form";
+import fixedPriceForm from "./components/fixed-price-form";
 import {
   options1,
   options2,
@@ -160,6 +191,7 @@ export default {
   mixins: [resToken],
   components: {
     onlineExamForm,
+    fixedPriceForm,
   },
   computed: {
     ...mapGetters(["tablebtnSize", "searchSize", "size"]),
@@ -189,7 +221,7 @@ export default {
       options8: options8,
       size: "small",
       activeTabs: "1",
-      activeNames: ["0", "1"],
+      activeNames: ["0", "1", "2", "3", "4", "5", "6", "7"],
       newTime: "",
       loading: false,
       queryType: "",
@@ -274,7 +306,7 @@ export default {
       this.loading = false;
       if (code === 0) {
         this.sitem = JSON.parse(JSON.stringify(data));
-        const { status, cat_info } = this.sitem;
+        const { exam_status, cat_info } = this.sitem;
         let cat = "";
         if (cat_info && cat_info.length > 0) {
           cat_info.forEach((e, i) => {
@@ -283,7 +315,7 @@ export default {
         }
         this.sitem.cat = cat;
         this.sitem.good_info_img = this.sitem.good_info_img.split(",");
-        this.status = status;
+        this.status = exam_status;
         this.getNewTime();
       } else if (code >= 100 && code <= 104) {
         await this.logout();