xiaodai2022 2 سال پیش
والد
کامیت
46973d66a4

+ 7 - 0
src/apis/service/youzan/othGoodFieldLog/index.js

@@ -0,0 +1,7 @@
+// 物业管理员
+import http from "@/apis/axios";
+export default {
+ 
+  // 分页查询
+  list: (data, params) => http("youzan/yz_get_update_good_log_by_caixiao", data, "post", params),
+};

+ 11 - 32
src/views/interest/account/addEdit.vue

@@ -118,11 +118,7 @@
                         class="“fl"
                       >
                         <el-checkbox
-                          style="
-                            display: block;
-                            margin: 0;
-                            box-sizing: border-box;
-                          "
+                          style="display: block; margin: 0; box-sizing: border-box"
                           v-for="(item, i) in coptions"
                           :key="item.id + i"
                           :label="item.id"
@@ -173,11 +169,7 @@
           </el-form>
         </el-col>
         <el-col :span="6" class="bottom-btn">
-          <el-button
-            v-if="!isDetail"
-            type="primary"
-            @click="submitForm"
-            :size="'mini'"
+          <el-button v-if="!isDetail" type="primary" @click="submitForm" :size="'mini'"
             >保 存
           </el-button>
           <el-button @click="showModelThis = false" :size="'mini'">{{
@@ -455,8 +447,7 @@ export default {
     },
     handleCheckAllChange(val) {
       let checkedCount = val ? this.coptions.length : 0;
-      this.isIndeterminate =
-        checkedCount > 0 && checkedCount < this.coptions.length;
+      this.isIndeterminate = checkedCount > 0 && checkedCount < this.coptions.length;
       this.ruleForm.companyArr = [];
       if (checkedCount !== 0) {
         this.coptions.forEach((e) => {
@@ -470,8 +461,7 @@ export default {
       console.log(value);
       let checkedCount = value.length;
       this.ruleForm.is_all = checkedCount === this.coptions.length;
-      this.isIndeterminate =
-        checkedCount > 0 && checkedCount < this.coptions.length;
+      this.isIndeterminate = checkedCount > 0 && checkedCount < this.coptions.length;
     },
     recursion(list) {
       list.map((v) => {
@@ -540,14 +530,10 @@ export default {
               });
             }
             let copyBusiness =
-              business && business.length > 0
-                ? JSON.parse(JSON.stringify(business))
-                : [];
+              business && business.length > 0 ? JSON.parse(JSON.stringify(business)) : [];
 
             let businessList =
-              business && business.length > 0
-                ? JSON.parse(JSON.stringify(business))
-                : [];
+              business && business.length > 0 ? JSON.parse(JSON.stringify(business)) : [];
             businessList.forEach((a, ai) => {
               let sindex = this.coptions.findIndex((b) => b.id == a.businessid);
               if (sindex === -1) {
@@ -570,13 +556,9 @@ export default {
             }
 
             let copyplatform =
-              platform && platform.length > 0
-                ? JSON.parse(JSON.stringify(platform))
-                : [];
+              platform && platform.length > 0 ? JSON.parse(JSON.stringify(platform)) : [];
             let platformList =
-              platform && platform.length > 0
-                ? JSON.parse(JSON.stringify(platform))
-                : [];
+              platform && platform.length > 0 ? JSON.parse(JSON.stringify(platform)) : [];
             platformList.forEach((a, ai) => {
               let sindex = this.platformoptions.findIndex((b) => b.id == a.id);
               if (sindex === -1) {
@@ -604,8 +586,7 @@ export default {
               is_all: resbusinesslist.length === this.coptions.length,
             };
             this.isIndeterminate =
-              resbusinesslist.length > 0 &&
-              resbusinesslist.length < this.coptions.length;
+              resbusinesslist.length > 0 && resbusinesslist.length < this.coptions.length;
           } else {
             this.ruleForm = {
               username: "", // 账号
@@ -651,9 +632,7 @@ export default {
                 is_main: is_main === e ? "1" : "0",
               };
               list.push(item);
-              let findex = this.coptions.findIndex(
-                (a) => a.id === e && a.status === "0"
-              );
+              let findex = this.coptions.findIndex((a) => a.id === e && a.status === "0");
               if (findex !== -1) {
                 isok = false;
               }
@@ -709,7 +688,7 @@ export default {
 };
 </script>
 
-   <style lang="scss" scoped>
+<style lang="scss" scoped>
 .account {
   .bottom-btn {
     position: absolute;

+ 10 - 21
src/views/interest/account/index.vue

@@ -1,8 +1,6 @@
 <template>
   <div class="account pagePadding">
-    <div
-      v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
-    >
+    <div v-if="powers && powers.length > 0 && powers.some((item) => item == '001')">
       <ex-table
         v-loading="loading"
         :table="table"
@@ -106,10 +104,7 @@
             v-for="(ditem, dindex) in scope.row.depart_info"
             :key="ditem + dindex"
           >
-            <span
-              v-for="(cItem, cindex) in ditem"
-              :key="cItem + dindex + cindex"
-            >
+            <span v-for="(cItem, cindex) in ditem" :key="cItem + dindex + cindex">
               <span v-show="cindex > 0">/</span><span>{{ cItem }}</span>
             </span>
             {{ ditem.name }}</el-tag
@@ -120,8 +115,8 @@
             :size="tablebtnSize"
             :type="scope.row.status == '0' ? 'warning' : ''"
             v-text="
-              (statusOptions.find((item) => item.id == scope.row.status) || {})
-                .label || '--'
+              (statusOptions.find((item) => item.id == scope.row.status) || {}).label ||
+              '--'
             "
           ></el-tag>
         </template>
@@ -161,9 +156,7 @@
             ></i>
           </el-tooltip>
           <el-tooltip
-            v-if="
-              powers.some((item) => item == '004') && scope.row.status === '1'
-            "
+            v-if="powers.some((item) => item == '004') && scope.row.status === '1'"
             effect="dark"
             content="禁用"
             placement="top"
@@ -174,9 +167,7 @@
             ></i>
           </el-tooltip>
           <el-tooltip
-            v-if="
-              powers.some((item) => item == '004') && scope.row.status === '0'
-            "
+            v-if="powers.some((item) => item == '004') && scope.row.status === '0'"
             effect="dark"
             content="启用"
             placement="top"
@@ -215,7 +206,7 @@ import mixinPage from "@/mixins/elPaginationHandle";
 import asyncRequest from "@/apis/service/interest/account";
 import addEdit from "./addEdit";
 import resetPassword from "./resetPassword";
-import {statusList} from "@/assets/js/statusList";
+import { statusList } from "@/assets/js/statusList";
 import { mapGetters } from "vuex";
 import resToken from "@/mixins/resToken";
 export default {
@@ -229,9 +220,7 @@ export default {
     ...mapGetters(["tablebtnSize", "searchSize", "size"]),
     powers() {
       let tran =
-        this.$store.getters.btnList.find(
-          (item) => item.menu_route == "account"
-        ) || {};
+        this.$store.getters.btnList.find((item) => item.menu_route == "account") || {};
       if (tran && tran.action && tran.action.length > 0) {
         return tran.action;
       } else {
@@ -339,7 +328,7 @@ export default {
         page: 1, // 页码
         size: 15, // 每页显示条数
       };
-       // 表格 - 分页
+      // 表格 - 分页
       this.pageInfo = {
         size: 15,
         curr: 1,
@@ -434,7 +423,7 @@ export default {
   },
 };
 </script>
-   <style lang="scss" scoped>
+<style lang="scss" scoped>
 .account {
 }
 </style>

+ 71 - 0
src/views/youzan/othGoodFieldLog/addEdit.vue

@@ -0,0 +1,71 @@
+<template>
+  <el-dialog
+    v-loading="loading"
+    :title="title"
+    :center="true"
+    align="left"
+    top="10vh"
+    width="750px"
+    :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-top: -20px">
+      <el-row :gutter="10">
+        <el-col :span="24"> 111</el-col>
+        <el-col :span="6" class="bottom-btn">
+          <el-button @click="showModelThis = false" :size="'mini'">关 闭</el-button>
+        </el-col>
+      </el-row>
+    </el-card>
+  </el-dialog>
+</template>
+<script>
+export default {
+  props: ["showModel", "sitem"],
+  mixins: [resToken],
+  data() {
+    return {
+      loading: false,
+      title: "商品字段修改展示",
+      showModelThis: this.showModel,
+    };
+  },
+  watch: {
+    showModel: function (val) {
+      this.showModelThis = val;
+      if (val) {
+        this.initForm();
+      }
+    },
+    showModelThis(val) {
+      if (!val) {
+        this.$emit("cancel");
+      }
+    },
+  },
+  mounted() {},
+  methods: {
+    async initForm() {
+      this.loading = true;
+
+      this.loading = false;
+    },
+  },
+};
+</script>
+
+<style lang="scss" scoped>
+.account {
+  .bottom-btn {
+    position: absolute;
+    bottom: 0px;
+    right: 0;
+    text-align: right;
+    z-index: 2;
+  }
+}
+</style>

+ 287 - 0
src/views/youzan/othGoodFieldLog/index.vue

@@ -0,0 +1,287 @@
+<template>
+  <div class="sort pagePadding">
+    <div v-if="powers && powers.length > 0 && powers.some((item) => item == '001')">
+      <ex-table
+        v-loading="loading"
+        :table="table"
+        :data="tableData"
+        :columns="columns"
+        :page="pageInfo"
+        :size="size"
+        @page-curr-change="handlePageChange"
+        @page-size-change="handleSizeChange"
+        @screen-reset="
+          pageInfo.curr = 1;
+          parmValue.page = 1;
+          searchList();
+        "
+        @screen-submit="
+          pageInfo.curr = 1;
+          parmValue.page = 1;
+          searchList();
+        "
+      >
+        <template #table-header="{}">
+          <div style="width: 100%">
+            <el-row style="padding: 0 0 0 80px">
+              <el-col :span="6" style="width: 303px; padding: 0 0 0 10px">
+                <period-date-picker
+                  :type="1"
+                  :width="'135px'"
+                  :size="searchSize"
+                  :start="parmValue.start_date"
+                  :end="parmValue.end_date"
+                  @timeReturned="handleTime"
+                />
+              </el-col>
+              <el-col :span="6" style="width: 230px; padding: 0 0 0 10px">
+                <el-input
+                  placeholder="上线商品编号"
+                  v-model="parmValue.skuCode"
+                  :size="searchSize"
+                  @bulr="
+                    pageInfo.curr = 1;
+                    parmValue.page = 1;
+                    searchList();
+                  "
+                  clearable
+                >
+                </el-input>
+              </el-col>
+              <el-col :span="6" style="width: 160px; padding: 0 0 0 10px">
+                <el-input
+                  placeholder="修改人"
+                  :size="searchSize"
+                  @bulr="
+                    pageInfo.curr = 1;
+                    parmValue.page = 1;
+                    searchList();
+                  "
+                  v-model="parmValue.creater"
+                  clearable
+                >
+                </el-input>
+              </el-col>
+              <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
+                <el-button type="primary" :size="searchSize" @click="searchList">
+                  刷新
+                </el-button>
+              </el-col>
+              <el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
+                <el-button type="warning" :size="searchSize" @click="restSearch">
+                  重置
+                </el-button>
+              </el-col>
+            </el-row>
+          </div></template
+        >
+        <template #operation="{ scope }">
+          <el-tooltip effect="dark" content="详情" placement="top">
+            <i
+              class="el-icon-view tb-icon"
+              @click="@click="handleEdit(scope.$index)""
+            ></i>
+          </el-tooltip>
+        </template>
+      </ex-table>
+         <add-edit
+         :sitem="sitem"
+        :show-model="showModel"
+        @refresh="searchList"
+        @cancel="showModel = false"
+      />
+    </div>
+    <no-auth v-else></no-auth>
+  </div>
+</template>
+<script>
+import asyncRequest from "@/apis/service/youzan/othGoodFieldLog";
+import mixinPage from "@/mixins/elPaginationHandle";
+import { mapGetters } from "vuex";
+import resToken from "@/mixins/resToken";
+import addEdit from "./addEdit";
+export default {
+  name: "othGoodFieldLog",
+  mixins: [mixinPage, resToken],
+components: {
+    addEdit,
+  },
+  computed: {
+    //组件SIZE设置
+    ...mapGetters(["tablebtnSize", "searchSize", "size"]),
+    powers() {
+      let tran =
+        this.$store.getters.btnList.find(
+          (item) => item.menu_route == "othGoodFieldLog"
+        ) || {};
+      if (tran && tran.action && tran.action.length > 0) {
+        return tran.action;
+      } else {
+        return [];
+      }
+    },
+  },
+  data() {
+    return {
+      loading: false,
+      showModel: false,
+      sitem:null,
+      parmValue: {
+        page: 1, // 页码
+        size: 15, // 每页显示条数
+        skuCode: "",
+        creater: "",
+        start_date: "",
+        end_date: "",
+      },
+      // 表格 - 数据
+      tableData: [],
+      // 表格 - 参数
+      table: {
+        stripe: true,
+        border: true,
+        _defaultHeader_: ["setcol"],
+      },
+      // 表格 - 分页
+      pageInfo: {
+        size: 15,
+        curr: 1,
+        total: 0,
+      },
+      // 表格 - 列参数
+      columns: [
+        {
+          prop: "id",
+          label: "记录ID",
+        },
+        {
+          prop: "skuCode",
+          label: "数据类型",
+        },
+        {
+          prop: "item_id",
+          label: "有赞商品ID",
+        },
+        {
+          prop: "creater",
+          label: "修改人", //商品编码,商家可以自定义参数,支持英文和数字组合
+        },
+        {
+          prop: "addtime",
+          label: "修改时间",
+        },
+        {
+          prop: "",
+          label: "操作",
+          fixed: "right",
+          _noset_: true,
+          width: "60px",
+          _slot_: "operation",
+        },
+      ],
+    };
+  },
+  mounted() {
+    this.searchList();
+  },
+  methods: {
+    handleEdit(index){
+    this.sitem=JSON.parse(JSON.stringify(this.tableData[index]))
+
+    },
+    restSearch() {
+      // 表格 - 分页
+      this.pageInfo = {
+        size: 15,
+        curr: 1,
+        total: 0,
+      };
+      this.parmValue = {
+        page: 1, // 页码
+        size: 15, // 每页显示条数
+        skuCode: "",
+        creater: "",
+        start_date: "",
+        end_date: "",
+      };
+      this.searchList();
+    },
+    async handleTime(e) {
+      this.parmValue.start_date = e.startTime || "";
+      this.parmValue.end_date = e.endTime || "";
+      if (
+        (this.parmValue.start_date !== "" && this.parmValue.end_date !== "") ||
+        (this.parmValue.start_date === "" && this.parmValue.end_date === "")
+      ) {
+        this.pageInfo.curr = 1;
+        this.parmValue.page = 1;
+        await this.searchList();
+      }
+    },
+    // 刷新表格
+    async searchList() {
+      if (this.loading) return;
+      if (
+        (this.parmValue.start !== "" && this.parmValue.end === "") ||
+        (this.parmValue.start === "" && this.parmValue.end !== "")
+      ) {
+        this.$message.warning("时间区间不完整!");
+        return;
+      }
+      this.loading = true;
+      const { code, data } = await asyncRequest.list(this.parmValue);
+      if (code === 0) {
+        const { list, count } = data;
+        this.tableData= list;
+        this.pageInfo.total = count;
+      } else if (code >= 100 && code <= 104) {
+        await this.logout();
+      } else {
+        this.tableData = [];
+        this.pageInfo.total = 0;
+      }
+      this.loading = false;
+    },
+  },
+};
+</script>
+
+<style lang="scss" scoped>
+.sort {
+  .my-breadcrumb {
+    .my-breadcrumb-item {
+      float: left;
+      span {
+        height: 32px;
+        line-height: 32px;
+      }
+      .label {
+        padding: 0 5px 0 0;
+        color: 010101;
+      }
+      .separator {
+        color: #787878;
+        font-size: 13px;
+        padding: 0 5px 0 0;
+      }
+      &:last-child {
+        .label {
+          color: #787878;
+        }
+      }
+      &:hover {
+        cursor: pointer;
+      }
+      &:last-child {
+        cursor: default;
+      }
+      &:only-child {
+        cursor: pointer;
+      }
+      // &.chover {
+      //   cursor: pointer;
+      // }
+    }
+  }
+}
+</style>

+ 0 - 0
src/views/youzan/othGoodFieldLog/有赞商品字段消息


+ 5 - 5
src/views/youzan/othGoodLog/index.vue

@@ -194,11 +194,11 @@ export default {
         //   prop: "key_kdt_id",
         //   label: "有赞店铺ID",
         // },
-        {
-          prop: "key_is_display",
-          label: "推送前状态",
-          _slot_: "key_is_display",
-        },
+        // {
+        //   prop: "key_is_display",
+        //   label: "推送前状态",
+        //   _slot_: "key_is_display",
+        // },
         {
           prop: "key_title",
           label: "有赞商品名称",

+ 172 - 93
src/views/youzan/othgoodsOnline/components/online-exam-form.vue

@@ -102,14 +102,13 @@
             </el-form-item>
           </el-col>
           <el-col :span="10">
-            <el-form-item
-              label="开始出售时间"
-              prop="auto_listing_time"
-              label-width="120px"
-            >
+            <el-form-item label="开始出售时间" prop="time" label-width="120px">
               <ul class="item_auto_listing_time clearfix">
                 <li class="fl" style="width: 100px">
-                  <el-radio v-model="ruleForm.item_auto_listing_time" label="0"
+                  <el-radio
+                    v-model="ruleForm.item_auto_listing_time"
+                    label="0"
+                    @change="item_auto_change"
                     >立即出售</el-radio
                   >
                 </li>
@@ -121,6 +120,7 @@
                     value-format="yyyy-MM-dd HH:mm:ss"
                     placeholder="选择开始出售时间"
                     default-time="12:00:00"
+                    @change="time_change"
                     :picker-options="pickerOptions"
                   >
                   </el-date-picker>
@@ -140,7 +140,7 @@
                 :controls="false"
                 :append="''"
                 :newTime="''"
-                :size="'mini'"
+                :size="''"
                 :disabled="false"
                 @reschange="num_change($event, 'origin', -1)"
               />
@@ -265,6 +265,35 @@ export default {
    * @searchChange             : 选中值变化调用   抛出选中数据
    */
   data() {
+    const validatetime = (rule, value, callback) => {
+      const { item_auto_listing_time, auto_listing_time } = this.ruleForm;
+      const type = item_auto_listing_time ?? "";
+      const time = auto_listing_time ?? "";
+      // console.log(item_auto_listing_time, auto_listing_time);
+      if (type === "" && time === "") {
+        callback(new Error("请选择开始出售时间!"));
+      } else {
+        callback();
+      }
+    };
+    const validate_num_0 = (rule, value, callback) => {
+      const val = value ?? "";
+      const { required } = rule;
+      if (required && val === "") {
+        callback(new Error("不能为空!"));
+      } else if (
+        required &&
+        (val === "0" ||
+          val === "0." ||
+          val === "0.0" ||
+          val === "0.00" ||
+          val === "0.000")
+      ) {
+        callback(new Error("不能为零!"));
+      } else {
+        callback();
+      }
+    };
     return {
       platform_id: "",
       spuCode: "",
@@ -296,7 +325,7 @@ export default {
       showModelThis: this.showModel,
       pickerOptions: {
         disabledDate: (time) => {
-          return time.getTime() > new Date().valueOf();
+          return time.getTime() < new Date().valueOf() - 1000 * 60 * 60 * 24;
         },
       },
       ruleForm: {
@@ -308,7 +337,8 @@ export default {
         item_type: "0",
         item_auto_listing_time: "0",
         auto_listing_time: "",
-        origin: 0,
+        origin: "0",
+        time: "0",
       },
       rulesThis: this.rules,
       rules: {
@@ -354,15 +384,15 @@ export default {
         origin: [
           {
             required: true,
-            message: "请输入划线价",
+            validator: validate_num_0,
             trigger: "blur",
           },
         ],
-        auto_listing_time: [
+        time: [
           {
             required: true,
-            message: "请选择开始出售时间",
-            trigger: "change",
+            validator: validatetime,
+            trigger: "change,blur",
           },
         ],
         item_type: [
@@ -422,6 +452,23 @@ export default {
       this.setCurrent(this.nakelist[0]);
       this.loading = false;
     },
+    item_auto_change() {
+      const { item_auto_listing_time } = this.ruleForm;
+      if (item_auto_listing_time === "0") {
+      }
+      this.ruleForm.auto_listing_time =
+        item_auto_listing_time === "0" ? "" : this.ruleForm.auto_listing_time;
+      this.ruleForm.time =
+        this.ruleForm.item_auto_listing_time || this.ruleForm.auto_listing_time;
+      this.$refs.ruleForm.validateField("time");
+    },
+    time_change() {
+      const { auto_listing_time } = this.ruleForm;
+      this.ruleForm.item_auto_listing_time = auto_listing_time === "" ? "0" : "";
+      this.ruleForm.time =
+        this.ruleForm.item_auto_listing_time || this.ruleForm.auto_listing_time;
+      this.$refs.ruleForm.validateField("time");
+    },
     async get_tags() {
       const { code, data, message } = await asyncRequest.tag_list({});
       if (code === 0) {
@@ -440,12 +487,13 @@ export default {
       this.rulesThis.is_support_barter[0].required = isok;
       this.rulesThis.yz_cat_id[0].required = isok;
       this.rulesThis.item_type[0].required = isok;
-      this.rulesThis.auto_listing_time[0].required = isok;
+      this.rulesThis.time[0].required = isok;
       this.rulesThis.origin[0].required = isok;
       this.rulesThis.reject_reason[0].required = !isok;
     },
     num_change(e, key, index) {
       if (index === -1) {
+        // console.log(key, e);
         this.ruleForm[key] = e;
         this.$refs.ruleForm.validateField(key);
       } else {
@@ -503,7 +551,8 @@ export default {
             item_type: "0",
             item_auto_listing_time: "0",
             auto_listing_time: "",
-            origin: 0,
+            origin: "0",
+            time: "0",
           };
         }
       });
@@ -511,93 +560,123 @@ export default {
     async submitForm() {
       await this.$refs.ruleForm.validate(async (valid) => {
         if (valid) {
-          let model = JSON.parse(JSON.stringify(this.ruleForm));
-          const { yz_cat_id } = this.ruleForm;
+          if (this.loading) return;
+          await this.$confirm(`确定要提交?`, {
+            confirmButtonText: "确定",
+            cancelButtonText: "取消",
+            type: "warning",
+          })
+            .then(async () => {
+              this.loading = true;
+              let model = JSON.parse(JSON.stringify(this.ruleForm));
+              const {
+                yz_cat_id,
+                item_auto_listing_time,
+                auto_listing_time,
+                origin,
+              } = this.ruleForm;
 
-          // console.log(yz_cat_id);
-          model.platform_youzan_id = this.sitem.platform_youzan_id;
-          model.yz_cat_id = "";
-          model.good_ladder_id = "";
-          model.final_price = "";
-          model.start_sale_num = "";
-          const { exam_status } = this.ruleForm;
-          const isok = exam_status === "1";
-          if (isok) {
-            const { id } = this.currentRow;
-            if (!id) {
-              this.$message.warning("请选择一个系统阶梯!");
-              return;
-            }
-            let is_ok = true;
-            this.nakelist.forEach((e) => {
-              if (e.sale_good_price + "" === "0" && e.sale_cost_fee + "" === "0") {
-                is_ok = false;
+              // console.log(yz_cat_id);
+              model.platform_youzan_id = this.sitem.platform_youzan_id;
+              model.yz_cat_id = "";
+              model.good_ladder_id = "";
+              model.final_price = "";
+              model.start_sale_num = "";
+              const { exam_status } = this.ruleForm;
+              const isok = exam_status === "1";
+              if (isok) {
+                const { id } = this.currentRow;
+                if (!id) {
+                  this.$message.warning("请选择一个系统阶梯!");
+                  this.loading = false;
+                  return;
+                }
+                let is_ok = true;
+                this.nakelist.forEach((e) => {
+                  if (e.sale_good_price + "" === "0" && e.sale_cost_fee + "" === "0") {
+                    is_ok = false;
+                  }
+                });
+                if (!is_ok) {
+                  this.$message.warning("暂无系统售价,请设置毛利率!");
+                  this.loading = false;
+                  return;
+                }
+
+                let index = this.nakelist.findIndex((si) => si.id === id);
+                const {
+                  min_num,
+                  start_sale_num,
+                  sale_good_price,
+                  sale_cost_fee,
+                  final_price,
+                } = this.nakelist[index];
+                if (parseInt(start_sale_num) < parseInt(min_num)) {
+                  this.$message.warning("销售起订量不小于采购起订量!");
+                  this.loading = false;
+                  return;
+                }
+                if (!final_price) {
+                  this.$message.warning("最终售价不能为空!");
+                  this.loading = false;
+                  return;
+                }
+                if (sale_good_price * 100 > final_price * 100) {
+                  this.$message.warning("销售起订量不小于采购起订量!");
+                  this.loading = false;
+                  return;
+                }
+                let am = 0;
+                const m = auto_listing_time ?? "",
+                  nm = new Date().valueOf(),
+                  fp = final_price * 100,
+                  op = origin * 100;
+                if (m !== "0") {
+                  am = new Date(auto_listing_time).valueOf();
+                }
+                if (am !== 0 && nm >= am) {
+                  this.$message.warning("开始出售时间不能小于当前时间!");
+                  this.loading = false;
+                  return;
+                }
+                if (op < fp) {
+                  this.$message.warning("划线价不能小于最终售价!");
+                  this.loading = false;
+                  return;
+                }
+                model.platform_youzan_id = this.sitem.platform_youzan_id;
+                model.yz_cat_id = yz_cat_id[yz_cat_id.length - 1];
+                model.good_ladder_id = id;
+                model.final_price = final_price;
+                model.start_sale_num = start_sale_num;
+                model.auto_listing_time =
+                  model.time !== "0" ? new Date(model.time).valueOf() : "0";
+                delete model["time"];
+                delete model["item_auto_listing_time"];
+              }
+              const { code, message } = await asyncRequest.goodupexam(model);
+              if (code === 0) {
+                this.$notify.success({
+                  title: "提交成功!",
+                  message: "",
+                });
+                this.$emit("searchChange");
+              } else if (code >= 100 && code <= 104) {
+                await this.logout();
+              } else {
+                this.$message.warning(message);
               }
+            })
+            .catch(() => {
+              console.log("取消");
             });
-            if (!is_ok) {
-              this.$message.warning("暂无系统售价,请设置毛利率!");
-              return;
-            }
-
-            let index = this.nakelist.findIndex((si) => si.id === id);
-            const {
-              min_num,
-              start_sale_num,
-              sale_good_price,
-              sale_cost_fee,
-              final_price,
-            } = this.nakelist[index];
-            if (parseInt(start_sale_num) < parseInt(min_num)) {
-              this.$message.warning("销售起订量不小于采购起订量!");
-              return;
-            }
-            if (!final_price) {
-              this.$message.warning("最终售价不能为空!");
-              return;
-            }
-            if (sale_good_price * 100 > final_price * 100) {
-              this.$message.warning("销售起订量不小于采购起订量!");
-              return;
-            }
-
-            model.platform_youzan_id = this.sitem.platform_youzan_id;
-            model.yz_cat_id = yz_cat_id[yz_cat_id.length - 1];
-            model.good_ladder_id = id;
-            model.final_price = final_price;
-            model.start_sale_num = start_sale_num;
-            console.log(min_num);
-          }
-          await this.setstatus(model);
         } else {
           console.log("error submit!!");
           return false;
         }
       });
     },
-    async setstatus(model) {
-      await this.$confirm(`确定要提交?`, {
-        confirmButtonText: "确定",
-        cancelButtonText: "取消",
-        type: "warning",
-      })
-        .then(async () => {
-          const { code, message } = await asyncRequest.goodupexam(model);
-          if (code === 0) {
-            this.$notify.success({
-              title: "提交成功!",
-              message: "",
-            });
-            this.$emit("searchChange");
-          } else if (code >= 100 && code <= 104) {
-            await this.logout();
-          } else {
-            this.$message.warning(message);
-          }
-        })
-        .catch(() => {
-          console.log("取消");
-        });
-    },
+    async setstatus(model) {},
   },
 };
 </script>