Ver código fonte

feat:泰行销直播商品

snow 1 ano atrás
pai
commit
9fd2d2bc47

+ 3 - 1
src/apis/service/system/menu/index.js

@@ -21,6 +21,8 @@ export default {
   // 状态
   actionstatus: (data, params) =>
     http(api + 'menuactionstatus', data, 'post', params),
-      // 删除
+  // 删除
   actiondel: (data, params) => http(api + 'menuactiondel', data, 'post', params),
+
+  actionlistcreate: (data, params) => http(api + 'actionlistcreate', data, 'post', params)
 }

+ 5 - 3
src/apis/service/youzan/othgoodsOnline/index.js

@@ -40,8 +40,10 @@ export default {
   goodupreject: (data, params) => http(api + "goodupreject", data, "post", params),
   // 异常原因列表
   resultlist: (data, params) => http(api + "resultlist", data, "post", params),
-    //商品下线
+  //商品下线
   yz_goodoff: (data, params) => http("youzan/yz_goodoff", data, "post", params),
-    //获取全部标签
-    tag_list: (data, params) => http("youzan/yz_tag_list", data, "post", params),
+  //获取全部标签
+  tag_list: (data, params) => http("youzan/yz_tag_list", data, "post", params),
+   addCouponUrl: (data, params) => http("/txx/txGood/AddCouponUrl", data, "post", params),
+   txxList: (data, params) => http("/txx/txGood/list", data, "post", params),
 };

+ 2 - 1
src/assets/js/btnList.js

@@ -98,7 +98,8 @@ const btnList = [
   { code: '097',name: '设置部门' },
   { code: '098',name: '关联采购单' },
   { code: '099',name: '解除关联' },
-  { code: '100',name: '业务经理修改导入' }
+  { code: '100',name: '业务经理修改导入' },
+  { code: '102',name: '设置活动url' }
   // { code: '098',name: '采购单情况表' },
   // { code: '099',name: '竞价单反馈情况表' },
   // { code: '100',name: '当日库存销售情况表' },

+ 1 - 0
src/components/globalComponents/search-terrace/main.vue

@@ -90,6 +90,7 @@ export default {
     this.options = [];
     this.selectLoading = false;
     this.remoteMethod();
+    console.log("---search:" + this.disabled)
   },
   methods: {
     async selectChange(e) {

+ 5 - 5
src/views/system/menuOperator/addEdit.vue

@@ -6,19 +6,19 @@
     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)"
-    append-to-body
+    element-loading-text="拼命加载中"
     @close="showModelThis = false"
+    :close-on-click-modal="false"
+    :visible.sync="showModelThis"
+    append-to-body
   >
     <el-card style="margin-top: -20px">
       <el-form
+        is_show-icon
         ref="ruleForm"
         :model="ruleForm"
-        is_show-icon
         :rules="rulesThis"
         label-width="100px"
         class="demo-ruleForm"

+ 73 - 0
src/views/system/menuOperator/button-modal.vue

@@ -0,0 +1,73 @@
+<template>
+  <el-dialog title="添加按钮" center :visible.sync="visible" @close="handleClose" :close-on-click-modal="false">
+    <el-form :model="formData" :rules="rules" ref="formRef" size="mini">
+      <el-form-item label="按钮编号" label-width="100px" prop="action_code">
+        <el-input v-model="formData.action_code" placeholder="按钮名称"></el-input>
+      </el-form-item>
+
+      <el-form-item label="按钮名称" label-width="100px" prop="action_name">
+        <el-input v-model="formData.action_name" placeholder="按钮名称"></el-input>
+      </el-form-item>
+
+      <el-form-item style="display:flex;justify-content: flex-end;">
+        <el-button type="primary" @click="handleSubmit" size="mini" :laoding="loading">确定</el-button>
+      </el-form-item>
+    </el-form>
+  </el-dialog>
+</template>
+
+<script>
+import asyncRequest from '@/apis/service/system/menu'
+export default {
+  props: ['visible'],
+  data() {
+    return {
+      loading: false,
+      formData: {
+        action_name: '',
+        action_code: ''
+      },
+      rules: {
+        action_name: [{ required: true, message: '请输入按钮名称', trigger: 'blur' }],
+        action_code: [{ required: true, message: '请输入按钮编号', trigger: 'blur' }]
+      }
+    }
+  },
+  computed: {
+    _visible: {
+      get() {
+        return this.visible
+      },
+      set(newVal) {
+        this.$emit('update:visible', newVal)
+      }
+    }
+  },
+  methods: {
+    handleClose() {
+      this._visible = false
+      this.formData.action_name = ''
+      this.formData.action_code = ''
+    },
+    async handleSubmit() {
+      this.laoding = true
+      try {
+        await this.$refs.formRef.validate()
+        const response = asyncRequest.actionlistcreate(this.formData)
+        if (Number(response.code) === 0) {
+          // this.$message.success('新增成功')
+          this.handleClose()
+        } else {
+          // this.$message.warning(response.messsage)
+        }
+
+        this._visible = false
+      } catch (err) {
+        console.log(err)
+      } finally {
+        this.laoding = false
+      }
+    }
+  }
+}
+</script>

+ 17 - 0
src/views/system/menuOperator/index.vue

@@ -2,6 +2,17 @@
   <div class="box pagePadding MenuOperator">
     <div class="MenuOperator-main" v-if="powers.some((i) => i == '001')">
       <el-row class="MenuOperator-search clear" style="padding: 10px 0">
+        <!-- <el-col :span="24" style="width: 90px; float: right">
+          <el-button
+            type="success"
+            :size="searchSize"
+            style="float: right"
+            @click="btnVisible = true"
+          >
+            添加按钮
+          </el-button>
+        </el-col> -->
+
         <el-col :span="24" style="width: 66px; float: right">
           <el-button
             v-if="powers.some((i) => i == '003')"
@@ -13,6 +24,7 @@
             添加
           </el-button>
         </el-col>
+
         <el-col :span="3" style="width: 66px; float: right">
           <el-button
             type="primary"
@@ -198,6 +210,8 @@
     <div v-else>
       <no-auth></no-auth>
     </div>
+
+    <ButtonModal :visible.sync="btnVisible" />
   </div>
 </template>
 
@@ -205,6 +219,7 @@
 import mixinPage from "@/mixins/elPaginationHandle";
 import asyncRequest from "@/apis/service/system/menu";
 import addEdit from "@/views/system/menuOperator/addEdit";
+import ButtonModal from "./button-modal.vue"
 import resToken from "@/mixins/resToken";
 import { mapGetters } from "vuex";
 
@@ -212,6 +227,7 @@ export default {
   name: "MenuOperator",
   components: {
     addEdit,
+    ButtonModal
   },
   mixins: [mixinPage, resToken],
   computed: {
@@ -225,6 +241,7 @@ export default {
   },
   data() {
     return {
+      btnVisible:false,
       // 状态
       statusOptions: [
         { id: 0, label: "禁用" },

+ 472 - 0
src/views/youzan/othLiveGoods/columns.js

@@ -0,0 +1,472 @@
+
+// 是否定制
+const options1 = [
+  { id: '0', name: '否' },
+  { id: '1', name: '是' }
+]
+// 专属类型
+const options2 = [
+  { id: '0', name: '非泰康' },
+  { id: '1', name: '泰康' }
+]
+// 销售权限
+const options3 = [
+  { id: '0', name: '无销售权限' },
+  { id: '1', name: '有销售权限' }
+]
+
+// 是否库存品
+const options4 = [
+  { id: '0', name: '非库存品' },
+  { id: '1', name: '库存品' }
+]
+// 是否启用实时金价
+const options5 = [
+  { id: '0', name: '否' },
+  { id: '1', name: '是' }
+]
+// 供货区域
+const options6 = [
+  { id: '1', name: '全国' },
+  { id: '2', name: '全国除偏远' }
+]
+// 是否启用阶梯
+const options7 = [
+  { id: '0', name: '否' },
+  { id: '1', name: '是' }
+]
+const options8 = [
+  { id: '0', name: '待产品审核' },
+  { id: '1', name: '待执行上线' },
+  { id: '2', name: '审核驳回' },
+  { id: '6', name: '上线成功' },
+  { id: '7', name: '上线失败' },
+  { id: '8', name: '已下线' }
+]
+const listCol = [
+  {
+    prop: 'skuCode',
+    label: '上线商品编号',
+    fixed: 'left',
+    width: '160px'
+  },
+  {
+    prop: 'spuCode',
+    label: '成本商品编号',
+    width: '160px'
+  },
+  {
+    prop: 'good_thumb_img',
+    label: '图片',
+    _slot_: 'good_thumb_img',
+    width: '45px'
+  },
+  {
+    prop: 'good_name',
+    label: '名称',
+    'min-width': '160px'
+  },
+  // {
+  //   prop: "platform_code_en",
+  //   label: "平台编号",
+  //   width: "170px",
+  // },
+  {
+    prop: 'platform_name',
+    label: '平台名称',
+    width: '100px'
+  },
+
+  {
+    prop: 'status',
+    label: '状态',
+    _slot_: 'status',
+    width: '118px'
+  },
+  {
+    prop: 'cat_name',
+    label: '分类',
+    width: '118px'
+  },
+  {
+    prop: 'good_type',
+    label: '是否定制',
+    _slot_: 'good_type',
+    width: '70px'
+  },
+  {
+    prop: 'brand_name',
+    label: '品牌'
+  },
+  {
+    prop: 'is_act_url',
+    label: '活动链接'
+  },
+  {
+    prop: 'companyNo',
+    label: '业务公司编号',
+    width: '160px'
+  },
+  {
+    prop: 'company',
+    label: '业务公司名称',
+    width: '150px'
+  },
+  {
+    prop: 'plat_code',
+    label: '平台商品编号',
+    width: '150px'
+  },
+  {
+    prop: 'purchase',
+    label: '成本创建人',
+    width: '95'
+  },
+  {
+    prop: 'company_name',
+    label: '创建人部门',
+    minWidth: '150px'
+  },
+  {
+    prop: 'creater',
+    label: '上线创建人',
+    width: '95px'
+  },
+  {
+    prop: 'addtime',
+    label: '创建时间',
+    width: '140px'
+  },
+  {
+    prop: '',
+    label: '操作',
+    fixed: 'right',
+    _noset_: true,
+    width: '110px',
+    _slot_: 'operation'
+  }
+]
+const rules = {
+  platform: [
+    {
+      required: true,
+      message: '请选择所属平台',
+      trigger: 'change'
+    }
+  ],
+  online_reason: [
+    {
+      required: true,
+      message: '上线原因不能为空',
+      trigger: 'blur'
+    }
+  ],
+  online_remark: [
+    {
+      required: true,
+      message: '上线备注不能为空',
+      trigger: 'blur'
+    }
+  ]
+
+}
+const public_listCol = [
+  {
+    prop: 'good_name',
+    label: '商品名称',
+    _slot_: 'good_name',
+    span: 24
+  },
+  {
+    prop: 'company',
+    label: '业务企业名称',
+    _slot_: 'company'
+  },
+  {
+    prop: 'good_info_img',
+    _slot_: 'good_info_img',
+    label: '详情图'
+  },
+  {
+    prop: 'cat',
+    label: '分类',
+    span: 8
+  },
+
+  {
+    prop: 'creater',
+    label: '申请人',
+    span: 4
+  },
+  {
+    prop: 'platform_name',
+    label: '上线平台',
+    span: 6
+  },
+  {
+    prop: 'online_time',
+    label: '上线时间',
+    span: 6
+  },
+  {
+    prop: 'online_reason',
+    label: '上线原因'
+  },
+
+  {
+    prop: 'online_remark',
+    label: '上线备注',
+    span: 12
+  },
+  {
+    prop: 'brand_name',
+    label: '品牌',
+    span: 6
+  },
+
+  {
+    prop: 'exclusive',
+    label: '专属类型',
+    _slot_: 'exclusive',
+    span: 6
+  },
+  {
+    prop: 'weight',
+    label: '商品总克重',
+    append: 'g',
+    span: 6
+  },
+
+  {
+    prop: 'packing_list',
+    label: '包装清单',
+    span: 6
+  },
+  {
+    prop: 'packing_way',
+    label: '包装方式',
+    span: 6
+  },
+  {
+    prop: 'packing_spec',
+    label: '装箱规格',
+    span: 6
+  },
+  {
+    prop: 'packing_weight',
+    label: '装箱重量',
+    append: 'g',
+    span: 6
+  },
+  {
+    prop: 'packing_size',
+    label: '装箱尺寸',
+    span: 6
+  },
+  {
+    prop: 'origin_place_cn',
+    label: '产地',
+    span: 8
+  },
+  {
+    prop: 'unit',
+    label: '单位',
+    span: 4
+  },
+  {
+    prop: 'good_bar',
+    label: '商品条形码',
+    span: 6
+  },
+  {
+    prop: 'supply_area',
+    label: '供货区域',
+    _slot_: 'supply_area',
+    span: 6
+  },
+  {
+    prop: 'delivery_place_cn',
+    label: '发货地',
+    span: 8
+  },
+  {
+    prop: 'is_stock',
+    label: '是否库存品',
+    _slot_: 'is_stock',
+    span: 4
+  },
+  {
+    prop: 'exam_status',
+    label: '状态',
+    _slot_: 'exam_status',
+    span: 6
+  },
+  {
+    prop: 'good_type',
+    label: '是否定制',
+    _slot_: 'good_type',
+    span: 6
+  },
+
+  {
+    prop: 'addtime',
+    label: '创建时间',
+    span: 8
+  },
+  {
+    prop: 'tax',
+    label: '税点',
+    append: '%',
+    span: 4
+  },
+
+  {
+    prop: 'delivery_day',
+    label: '物流时间',
+    append: '天',
+    span: 4
+  },
+  {
+    prop: 'lead_time',
+    label: '供货周期',
+    append: '天',
+    span: 4
+  },
+  {
+    prop: 'sample_day',
+    label: '调样周期',
+    append: '天',
+    span: 4
+  },
+
+  {
+    prop: 'noble',
+    label: '贵金属信息',
+    _slot_: 'noble',
+    span: 24
+  },
+  {
+    prop: 'good_remark',
+    label: '商品备注',
+    span: 24
+  },
+
+  {
+    prop: 'after_sales',
+    label: '售后说明',
+    span: 24
+  },
+  {
+    prop: 'craft_desc',
+    label: '工艺说明',
+    span: 24
+  }
+]
+const sale_listCol = [
+  {
+    prop: 'yz_cat_info',
+    label: '有赞公有分类',
+    _slot_: 'yz_cat_info',
+    span: 6
+  },
+  {
+    prop: 'is_support_barter',
+    label: '是否支持退货',
+    _slot_: 'is_support_barter',
+    span: 6
+  },
+  {
+    prop: 'reject_reason',
+    label: '驳回原因',
+    span: 12
+  },
+  {
+    prop: 'nakelist',
+    label: '销售起订量',
+    _slot_: 'nakelist',
+    span: 24
+  }
+]
+const is_support_barter_list = [
+  {
+    value: '1',
+    label: '支持'
+  },
+  {
+    value: '0',
+    label: '不支持'
+  }
+]
+const item_type_options = [
+  {
+    value: '0',
+    label: '普通商品',
+    status: '1'
+  },
+  {
+    value: '3',
+    label: 'UMP降价拍',
+    status: '0'
+  },
+  {
+    value: '5',
+    label: '外卖商品',
+    status: '0'
+  },
+  {
+    value: '10',
+    label: '分销商品',
+    status: '0'
+  },
+  {
+    value: '20',
+    label: '会员卡商品',
+    status: '0'
+  },
+  {
+    value: '21',
+    label: '礼品卡商品',
+    status: '0'
+  },
+  {
+    value: '22',
+    label: '团购券',
+    status: '0'
+  },
+  {
+    value: '25',
+    label: '批发商品',
+    status: '0'
+  },
+  {
+    value: '30',
+    label: '收银台商品',
+    status: '0'
+  },
+  {
+    value: '31',
+    label: '知识付费商品',
+    status: '0'
+  },
+  {
+    value: '35',
+    label: '酒店商品',
+    status: '0'
+  },
+  {
+    value: '40',
+    label: '美业商品',
+    status: '0'
+  },
+  {
+    value: '60',
+    label: '虚拟商品',
+    status: '0'
+  },
+  {
+    value: '61',
+    label: '电子卡券',
+    status: '0'
+  }
+]
+export { options1, options2, options3, options4, options5, options6, options7, options8, listCol, rules, public_listCol, sale_listCol, is_support_barter_list, item_type_options }

+ 76 - 0
src/views/youzan/othLiveGoods/components/activity-modal.vue

@@ -0,0 +1,76 @@
+<template>
+  <el-dialog title="设置活动链接" center :visible.sync="visible" @close="handleClose" :close-on-click-modal="false">
+    <el-form :model="formData" :rules="rules" ref="formRef" size="mini">
+      <el-form-item label="活动链接" label-width="100px" prop="activityUrl">
+        <el-input v-model="formData.activityUrl" placeholder="活动链接"></el-input>
+      </el-form-item>
+
+      <el-form-item style="display:flex;justify-content: flex-end;">
+        <el-button type="primary" @click="handleSubmit" size="mini" :loading="loading">确定</el-button>
+      </el-form-item>
+    </el-form>
+  </el-dialog>
+</template>
+
+<script>
+import asyncRequest from "@/apis/service/youzan/othgoodsOnline";
+
+export default {
+  props: ['visible', 'skuCode', 'actUrl'],
+  data() {
+    return {
+      loading: false,
+      formData: {
+        activityUrl: ''
+      },
+      rules: {
+        activityUrl: [{ required: true, message: '请输入活动链接', trigger: 'blur' }]
+      }
+    }
+  },
+  computed: {
+    _visible: {
+      get() {
+        return this.visible
+      },
+      set(newVal) {
+        this.$emit('update:visible', newVal)
+      }
+    }
+  },
+  watch: {
+    actUrl: {
+      handler() {
+        console.log(this.actUrl);
+        this.formData.activityUrl = this.actUrl
+      }
+    }
+  },
+  methods: {
+    handleClose() {
+      this._visible = false
+      this.formData.activityUrl = ''
+    },
+    async handleSubmit() {
+      this.laoding = true
+      try {
+        await this.$refs.formRef.validate()
+        this._visible = false
+        const response = await asyncRequest.addCouponUrl({
+          coupon_url: this.formData.activityUrl,
+          skuCode: this.skuCode
+        })
+        if (Number(response.code) === 0) {
+          this.$emit('refresh')
+        } else {
+          this.$message.warning(response.message)
+        }
+      } catch (err) {
+        console.log(err)
+      } finally {
+        this.laoding = false
+      }
+    }
+  }
+}
+</script>

+ 700 - 0
src/views/youzan/othLiveGoods/components/online-exam-form.vue

@@ -0,0 +1,700 @@
+<template>
+  <el-form
+    v-loading="loading"
+    ref="ruleForm"
+    :model="ruleForm"
+    status-icon
+    :rules="rulesThis"
+    :label-width="labelWidth || '100px'"
+    class="demo-ruleForm"
+    :size="size || 'medium'"
+  >
+    <el-row>
+      <el-col :span="24" style="padding: 0 0 20px 0">
+        <el-row>
+          <el-col :span="20">
+            <el-alert
+              title="特别关注:手动到对接平台修改商品信息,会被本系统强制覆盖,请谨慎操作!"
+              type="error"
+              show-icon
+              description=""
+              :size="'mini'"
+              :closable="false"
+            >
+            </el-alert
+          ></el-col>
+          <el-col :span="4">
+            <el-button
+              v-if="!isDetail"
+              :size="'mini'"
+              type="primary"
+              class="fr"
+              @click="submitForm()"
+              >保 存
+            </el-button>
+          </el-col>
+        </el-row>
+      </el-col>
+
+      <el-col :span="6"
+        ><el-form-item label="审核状态" prop="exam_status">
+          <el-radio-group
+            v-model="ruleForm.exam_status"
+            placeholder="请选择审核状态"
+            style="width: 100%"
+            :size="size || 'medium'"
+            @change="exam_statusChange"
+          >
+            <el-radio
+              v-for="item in exam_statusList"
+              :key="item.value"
+              :label="item.value"
+              >{{ item.label }}</el-radio
+            >
+          </el-radio-group>
+        </el-form-item>
+      </el-col>
+      
+      <el-col :span="18" v-if="String(ruleForm.exam_status) === '1'">
+        <el-row>
+          <el-col :span="24">
+            <el-form-item label="有赞公用分类" prop="yz_cat_id" label-width="120px">
+              <good-class-youzan
+                :value="ruleForm.yz_cat_id"
+                :placeholder="'请选择分类'"
+                @handleChange="handleChange"
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-col>
+
+      <el-col
+        :span="24"
+        v-show="String(ruleForm.exam_status) === '1'"
+        style="padding: 0 0 10px 0"
+      >
+        <el-row>
+          <el-col :span="6">
+            <el-form-item label="商品类型" prop="item_type">
+              <el-select
+                v-model="ruleForm.item_type"
+                placeholder="请选择商品类型"
+                style="width: 100%"
+              >
+                <el-option
+                  v-for="item in item_type_options"
+                  :key="item.label + item.value"
+                  :label="item.label"
+                  :value="item.value"
+                  :disabled="String(item.status) === '0'"
+                >
+                </el-option>
+              </el-select>
+            </el-form-item>
+          </el-col>
+          <el-col :span="10">
+            <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"
+                    @change="item_auto_change"
+                    >立即出售</el-radio
+                  >
+                </li>
+                <li class="fl">
+                  <el-date-picker
+                    v-model="ruleForm.auto_listing_time"
+                    type="datetime"
+                    style="width: 100%"
+                    value-format="yyyy-MM-dd HH:mm:ss"
+                    placeholder="选择开始出售时间"
+                    default-time="12:00:00"
+                    @change="time_change"
+                    :picker-options="pickerOptions"
+                  >
+                  </el-date-picker>
+                </li>
+              </ul>
+            </el-form-item>
+          </el-col>
+          <el-col :span="8">
+            <el-form-item label="划线价" prop="origin">
+              <digital-input
+                :values="ruleForm.origin"
+                :placeholder="'起订量'"
+                :min="0"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :controls="false"
+                :append="''"
+                :newTime="''"
+                :size="''"
+                :disabled="false"
+                @reschange="num_change($event, 'origin', -1)"
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-col>
+
+      <el-col :span="24">
+        <el-form-item label-width="140px" prop="distribution" label="支持的配送方式">
+          <el-checkbox-group v-model="ruleForm.distribution" @change="handleChange">
+            <el-checkbox label="1" key="1">快递发货</el-checkbox>
+            <el-checkbox label="2" key="2" >同城配送</el-checkbox>
+            <el-checkbox label="3" key="3">到店自提</el-checkbox>
+          </el-checkbox-group>
+        </el-form-item>
+      </el-col>
+
+      <el-col
+        :span="24"
+        v-show="String(ruleForm.exam_status) === '1'"
+        style="padding: 0 0 10px 0"
+      >
+        <!-- @current-change="handleCurrentChange" -->
+        <el-table
+          :data="nakelist"
+          :size="'mini'"
+          border
+          stripe
+          highlight-current-row
+          ref="singleTable"
+        >
+          <el-table-column label="系统阶梯" width="80px">
+            <template slot-scope="scope">
+              <i
+                v-if="currentRow && String(currentRow.id) === String(scope.row.id)"
+                class="el-icon-check"
+                style="color: #1890ff; font-size: 16px; font-weight: bolder"
+              /> </template
+          ></el-table-column>
+          <el-table-column prop="min_num" label="采购起订量" />
+          <el-table-column label="销售">
+            <el-table-column prop="start_sale_num" label="起订量">
+              <template slot-scope="scope">
+                <span>
+                  {{ scope.row.start_sale_num }}
+                </span>
+              </template>
+            </el-table-column>
+            <el-table-column prop="sale_good_price" label="系统售价" />
+            <el-table-column prop="sale_cost_fee" label="系统工艺费" />
+            <el-table-column prop="final_price" label="最终售价">
+              <template slot-scope="scope">
+                <digital-input
+                  v-show="scope.row.edit"
+                  :values="scope.row.final_price"
+                  :placeholder="'最终售价'"
+                  :min="scope.row.sale_good_price"
+                  :max="9999999"
+                  :position="'right'"
+                  :precision="2"
+                  :controls="false"
+                  :append="''"
+                  :newTime="scope.row.newTime"
+                  :size="'mini'"
+                  :disabled="false"
+                  @reschange="num_change($event, 'final_price', scope.$index)"
+                />
+                <span v-show="!scope.row.edit">
+                  {{ scope.row.final_price }}
+                </span>
+              </template>
+            </el-table-column>
+          </el-table-column>
+        </el-table>
+      </el-col>
+      <el-col :span="18" v-show="ruleForm.exam_status + '' !== '1'">
+        <el-form-item label="审核备注" prop="reject_reason">
+          <el-input
+            type="textarea"
+            placeholder="审核备注"
+            v-model="ruleForm.reject_reason"
+            :disabled="disabled"
+            maxlength="250"
+            show-word-limit
+            :autosize="{ minRows: 3, maxRows: 3 }"
+          />
+        </el-form-item>
+      </el-col>
+    </el-row>
+  </el-form>
+</template>
+
+<script>
+import asyncRequest from "@/apis/service/youzan/othgoodsOnline";
+import { item_type_options } from "../columns";
+export default {
+  name: "exam-form",
+  props: ["size", "statusList", "disabled", "isMust", "labelWidth", "time", "sitem"],
+  /**
+   * 属性集合
+   * @param {String}        size             : 组件大小             非必填
+   * @param {Array}         statusList       : 驳回至备选项          必填
+   * @param {Boolean}       disabled         : 是否禁用              必填
+   * @param {Boolean}       isMust           : 是否需要展示驳回节点   必填
+   */
+  /**
+   * 事件集合
+   * @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: "",
+      loading: true,
+      currentRow: null,
+      nakelist: [],
+      tags_options: [],
+      item_type_options,
+      exam_statusList: [
+        {
+          value: "1",
+          label: "通过",
+        },
+        {
+          value: "2",
+          label: "驳回",
+        },
+      ],
+      is_support_barter_list: [
+        {
+          value: "1",
+          label: "支持",
+        },
+        {
+          value: "0",
+          label: "不支持",
+        },
+      ],
+      showModelThis: this.showModel,
+      pickerOptions: {
+        disabledDate: (time) => {
+          return time.getTime() < new Date().valueOf() - 1000 * 60 * 60 * 24;
+        },
+      },
+      ruleForm: {
+        exam_status: "1", // 通过or驳回
+        yz_cat_id: [],
+        rebut: "", //驳回至
+        reject_reason: "",
+        tags: [],
+        item_type: "0",
+        item_auto_listing_time: "0",
+        auto_listing_time: "",
+        origin: "0",
+        time: "0",
+        distribution: ['1']
+      },
+      rulesThis: this.rules,
+      rules: {
+        exam_status: [
+          {
+            required: true,
+            message: "请选择审核状态",
+            trigger: "change",
+          },
+        ],
+
+        is_support_barter: [
+          {
+            required: false,
+            message: "请选择是否可退",
+            trigger: "change",
+          },
+        ],
+        tags: [
+          {
+            required: false,
+            type: "array",
+            trigger: "change",
+          },
+        ],
+        yz_cat_id: [
+          {
+            required: true,
+            type: "array",
+            message: "请选择有赞公用分类",
+            trigger: "change",
+          },
+        ],
+        reject_reason: [
+          { required: true, message: "请输入审核备注", trigger: "blur" },
+          {
+            min: 1,
+            max: 250,
+            message: "长度在 1 到 250 个字符",
+            trigger: "blur",
+          },
+        ],
+        origin: [
+          {
+            required: true,
+            validator: validate_num_0,
+            trigger: "blur",
+          },
+        ],
+        distribution:[
+          {
+            type:'array',
+            required: true,
+            trigger:'change',
+            message:'请选择支持的配送方式'
+          }
+        ],
+        time: [
+          {
+            required: true,
+            validator: validatetime,
+            trigger: "change,blur",
+          },
+        ],
+        item_type: [
+          {
+            required: true,
+            message: "请选择商品类型",
+            trigger: "change",
+          },
+        ],
+      },
+    };
+  },
+  watch: {
+    isDetail: function (val, old) {
+      if (this.isDetail !== val) {
+        this.options = [];
+        this.selectLoading = false;
+      }
+    },
+    newTime: function (val) {
+      if (val) {
+        this.initForm();
+      }
+    },
+  },
+  mounted() {
+    this.initForm();
+  },
+  methods: {
+    handleChange(values){
+      console.log(values)
+    },
+    async initForm() {
+      // this.loading = true;
+      this.rulesThis = this.rules;
+      await this.resetForm();
+      this.exam_statusChange();
+      await this.get_tags();
+      const { nakelist, spuCode, platform_id } = this.sitem;
+      this.spuCode = spuCode;
+      this.platform_id = platform_id;
+
+      const _nakelist = JSON.parse(JSON.stringify(nakelist));
+      let hasEdit = false
+      _nakelist.forEach(async (si, sii) => {
+        si.start_sale_num = si.min_num;
+        let { isok, price, sale_cost_fee } = await this.get_new(sii,si.min_num);
+        if (isok === 0) {
+          _nakelist[sii].sale_good_price = price;
+          _nakelist[sii].sale_cost_fee = sale_cost_fee;
+          _nakelist[sii].newTime = new Date().valueOf() + "";
+        } else if (isok >= 100 && isok <= 104) {
+          await this.logout();
+        } else {
+          _nakelist[sii].sale_good_price = price;
+          _nakelist[sii].sale_cost_fee = sale_cost_fee;
+          _nakelist[sii].newTime = new Date().valueOf() + "";
+        }
+        if(String(si.min_num) === "1" && !hasEdit){
+          this.currentRow = si
+          this.$set(this.nakelist, sii, {
+            ..._nakelist[sii],
+            edit:true
+          });
+          hasEdit = true
+        }else{
+          this.$set(this.nakelist, sii, {
+            ..._nakelist[sii],
+          });
+        }
+      });
+
+      // this.nakelist = _nakelist
+
+      // this.setCurrent(this.nakelist[0]);
+      // let index = _nakelist.findIndex((e) => e.min_num + "" === "1");
+      // if (index !== -1) {
+      //   this.handleCurrentChange(this.nakelist[index]);
+      // }
+
+      this.loading = false;
+    },
+    item_auto_change() {
+      const { item_auto_listing_time } = this.ruleForm;
+      if (String(item_auto_listing_time) === "0") {
+      }
+      this.ruleForm.auto_listing_time =
+        String(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 = String(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) {
+        this.tags_options = data;
+      } else if (code >= 100 && code <= 104) {
+        this.tags_options = [];
+        await this.logout();
+      } else {
+        this.tags_options = [];
+        this.$message.warning(message);
+      }
+    },
+    exam_statusChange() {
+      const { exam_status } = this.ruleForm;
+      const isok = String(exam_status) === "1";
+      // 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.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 {
+        this.nakelist[index][key] = e;
+        this.nakelist[index].newTime = new Date().valueOf() + "";
+        // this.$set(this.nakelist, index, this.nakelist[index]);
+      }
+    },
+    handleChange(e) {
+      this.ruleForm.yz_cat_id = e;
+      this.$refs.ruleForm.validateField("yz_cat_id");
+    },
+    // setCurrent(row) {
+    //   this.$refs.singleTable.setCurrentRow(row);
+    // },
+    async get_new(index,min_num) {
+      const { code, data, message } = await asyncRequest.goodupprice({
+        min_num: min_num,
+        platform_id: this.platform_id,
+        spuCode: this.spuCode,
+      });
+      const resModel = {
+        isok: code,
+        price: code === 0 ? data.sale_price : "0",
+        sale_cost_fee: code === 0 ? data.new_cost_fee : "0",
+        message: message,
+      };
+      return resModel;
+    },
+    handleCurrentChange(val) {
+      this.currentRow = val;
+      const { id } = val;
+      this.nakelist.forEach((si, sii) => {
+        this.nakelist[sii].edit = false;
+        if (id && id === si.id) {
+          this.nakelist[sii].edit = true;
+        }
+        this.$set(this.nakelist, sii, this.nakelist[sii]);
+      });
+    },
+    async resetForm() {
+      // 重置
+      await this.$nextTick(() => {
+        if (this.$refs.ruleForm) {
+          this.$refs.ruleForm.resetFields();
+          this.$refs.ruleForm.clearValidate();
+          this.ruleForm = {
+            exam_status: "1", // 通过or驳回
+            yz_cat_id: [],
+            is_support_barter: "1",
+            reject_reason: "",
+            tags: [],
+            item_type: "0",
+            item_auto_listing_time: "0",
+            auto_listing_time: "",
+            origin: "0",
+            time: "0",
+            distribution : ['1']
+          };
+        }
+      });
+    },
+    async submitForm() {
+      await this.$refs.ruleForm.validate(async (valid) => {
+        if (valid) {
+          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 = String(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;
+                }
+                console.log(sale_good_price * 100,final_price * 100)
+                if (sale_good_price * 100 > final_price * 100) {
+                  console.log('join----')
+                  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((err) => {
+              console.log(err)
+              console.log("取消");
+            });
+        } else {
+          console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+    async setstatus(model) {},
+  },
+};
+</script>
+
+<style>
+.item_auto_listing_time .fl:last-child {
+  width: calc(100% - 115px);
+}
+</style>

+ 559 - 0
src/views/youzan/othLiveGoods/detail.vue

@@ -0,0 +1,559 @@
+<template>
+  <div class="othgoodsOnlineDetail">
+    <div class="othgoodsOnlineDetail-main" v-if="powers.some((i) => i == '007')">
+      <el-tabs v-model="activeTabs">
+        <el-tab-pane label="商品上线详情" name="1" v-if="queryType !== 'add'">
+          <el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
+            <el-collapse-item title="商品上线详情" name="0">
+              <show-data-table
+                :newTime="newTime"
+                v-if="newTime !== ''"
+                :sitem="sitem"
+                :columns="public_listCol"
+              >
+                <template slot="good_name">
+                  <img
+                    v-viewer
+                    style="width: 23px; height: 23px; margin: 0 5px 0 0"
+                    class="fl"
+                    v-if="sitem.good_thumb_img"
+                    :src="sitem.good_thumb_img"
+                    alt=""
+                  />
+                  <span>{{ sitem.good_name }}</span>
+                  <span v-for="(si, i) in sitem.speclist" :key="si.spec_id + i">
+                    <span v-if="i !== 0">-</span>
+                    <span v-else>_</span>
+                    <span>{{ si.spec_name }}[{{ si.spec_value }}]</span>
+                  </span>
+                  <el-popover placement="top" width="300" trigger="hover">
+                    <ul>
+                      <li>
+                        <span>上线商品编号:</span><span>{{ sitem.skuCode }}</span>
+                      </li>
+                      <li
+                        v-if="
+                          newTime !== '' &&
+                          private_field &&
+                          private_field.length > 0 &&
+                          private_field.some((item) => item == '1')
+                        "
+                      >
+                        <span>成本商品编号:</span><span>{{ sitem.spuCode }}</span>
+                      </li>
+                      <li>
+                        <span>平台商品编码:</span><span>{{ sitem.plat_code }}</span>
+                      </li>
+                    </ul>
+                    <i class="el-icon-warning-outline fr" slot="reference"></i>
+                  </el-popover>
+                </template>
+                <template slot="company">
+                  <span>{{ sitem.company }}</span>
+                  <el-popover placement="top" width="300" trigger="hover">
+                    <ul>
+                      <li>
+                        <span>业务企业编号:</span><span>{{ sitem.companyNo }}</span>
+                      </li>
+                    </ul>
+                    <i class="el-icon-warning-outline fr" slot="reference"></i>
+                  </el-popover>
+                </template>
+                <template slot="good_info_img">
+                  <img
+                    class="fl"
+                    style="width: 23px; height: 23px; margin: 0 5px 0 0"
+                    v-viewer
+                    v-for="(si, i) in sitem.good_info_img"
+                    :src="si"
+                    :key="si + i"
+                  />
+                </template>
+                <template slot="exclusive">
+                  <span v-for="(si, sii) in sitem.exclusive" :key="si.id">
+                    <span v-if="sii !== 0">/</span> <span>{{ si.name }}</span>
+                  </span>
+                </template>
+                <template slot="supply_area">
+                  <el-tag
+                    :size="'mini'"
+                    v-text="
+                      (options6.find((item) => item.id == sitem.supply_area) || {})
+                        .name || '--'
+                    "
+                  />
+                </template>
+                <template slot="is_stock">
+                  <el-tag
+                    :size="'mini'"
+                    v-text="
+                      (options4.find((item) => item.id == sitem.is_stock) || {}).name ||
+                      '--'
+                    "
+                  />
+                </template>
+                <template slot="exam_status">
+                  <el-tag
+                    :size="'mini'"
+                    v-text="
+                      (options8.find((item) => item.id == sitem.exam_status) || {})
+                        .name || '--'
+                    "
+                  />
+                </template>
+                <template slot="good_type">
+                  <el-tag
+                    :size="'mini'"
+                    v-text="
+                      (options1.find((item) => item.id == sitem.good_type) || {}).name ||
+                      '--'
+                    "
+                  />
+                  <span v-if="String(sitem.good_type) === '1'" style="padding: 0 0 0 5px"
+                    >{{ sitem.moq }}起订/工期{{ sitem.customized }}天</span
+                  >
+                </template>
+                <template slot="noble">
+                  <span v-if="sitem.noble_metal"
+                    >{{ sitem.noble_weight ? sitem.noble_weight : "0" }}g-{{
+                      sitem.noble_name
+                    }}-{{ sitem.gold_price ? sitem.gold_price : "0" }}元/g-{{
+                      String(sitem.is_gold_price) === "0" ? "不" : ""
+                    }}启用实时金价-{{ String(sitem.is_diff) === "1" ? "有" : "无" }}工差-{{
+                      sitem.config
+                    }}-{{ sitem.other_config }}</span
+                  >
+                </template>
+              </show-data-table>
+
+              <show-data-table
+                :newTime="newTime"
+                v-if="
+                  newTime !== '' &&
+                  private_field &&
+                  private_field.length > 0 &&
+                  private_field.some((item) => item == '2') &&
+                  nakelist &&
+                  nakelist.length > 0 &&
+                  status + '' !== '0'
+                "
+                :sitem="sitem"
+                :columns="sale_listCol"
+              >
+                <template slot="yz_cat_info">
+                  <span v-for="(si, sii) in sitem.yz_cat_info" :key="si.yz_cat_id">
+                    <span v-if="sii !== 0">/</span> <span>{{ si.yz_cat_name }}</span>
+                  </span>
+                </template>
+                <template slot="is_support_barter">
+                  <el-tag
+                    :size="'mini'"
+                    v-text="
+                      (
+                        is_support_barter_list.find(
+                          (item) => item.value == sitem.is_support_barter
+                        ) || {}
+                      ).label || '--'
+                    "
+                  />
+                </template>
+                <template slot="nakelist">
+                  <el-table
+                    :data="nakelist"
+                    :size="'mini'"
+                    border
+                    stripe
+                    style="width: 99%; margin: 10px 10px 10px 0"
+                  >
+                    <el-table-column label="系统阶梯" width="80px">
+                      <template slot-scope="scope">
+                        <i
+                          v-if="scope.row.min_num + '' === '1'"
+                          class="el-icon-check"
+                          style="color: #1890ff; font-size: 16px; font-weight: bolder"
+                        /> 
+                      </template>
+                      </el-table-column>
+                    <el-table-column prop="min_num" label="采购起订量" />
+                    <el-table-column label="销售">
+                      <el-table-column prop="start_sale_num" label="起订量">
+                        <template slot-scope="scope">
+                          <span v-if="sitem.good_ladder_id + '' === scope.row.id + ''">
+                            {{ sitem.start_sale_num }}
+                          </span>
+                        </template>
+                      </el-table-column>
+                      <el-table-column prop="sale_good_price" label="系统售价" />
+                      <el-table-column prop="sale_cost_fee" label="系统工艺费" />
+                      <el-table-column prop="final_price" label="最终售价">
+                        <template slot-scope="scope">
+                          <span v-if="sitem.good_ladder_id + '' === scope.row.id + ''">
+                            {{ sitem.final_price }}
+                          </span>
+                        </template></el-table-column
+                      >
+                    </el-table-column>
+                  </el-table>
+                </template>
+              </show-data-table>
+            </el-collapse-item>
+          </el-collapse>
+        </el-tab-pane>
+        <el-tab-pane label="审批记录" name="2">
+          <process-time-line
+            v-if="newTime !== ''"
+            :newTime="newTime"
+            :type="'YZSX'"
+            :orderCode="queryId"
+        /></el-tab-pane>
+
+        
+        <el-tab-pane label="流程图" name="3">
+          <flow-chart process_id="19" type="YZSX" :orderCode="queryId" />
+       </el-tab-pane>
+      </el-tabs>
+    </div>
+    <div v-else>
+      <no-auth></no-auth>
+    </div>
+  </div>
+</template>
+<script>
+import asyncRequest from "@/apis/service/youzan/othgoodsOnline";
+import resToken from "@/mixins/resToken";
+import { mapGetters } from "vuex";
+import onlineExamForm from "./components/online-exam-form";
+import {
+  options1,
+  options2,
+  options3,
+  options4,
+  options5,
+  options6,
+  options7,
+  options8,
+  public_listCol,
+  sale_listCol,
+  is_support_barter_list,
+} from "./columns";
+import { isArray } from "@/utils/validate";
+export default {
+  name: "othgoodsOnlineDetail",
+  mixins: [resToken],
+  components: {
+    onlineExamForm,
+  },
+  computed: {
+    ...mapGetters(["tablebtnSize", "searchSize", "size", "private_field"]),
+    powers() {
+      const tran =
+        this.$store.getters.btnList.find(
+          (item) => item.menu_route == "othLiveGoodsDetail"
+        ) || {};
+      const { action } = tran ?? {};
+      return action ?? [];
+    }
+  },
+  data() {
+    return {
+      platform_id: "",
+      public_listCol,
+      sale_listCol,
+      is_support_barter_list,
+      options1,
+      options2,
+      options3,
+      options4,
+      options5,
+      options6,
+      options7,
+      options8,
+      ladderlist: [],
+      nakelist: [],
+      spuCode: "",
+      size: "small",
+      activeTabs: "1",
+      activeNames: ["0", "1", "2", "3", "4", "5", "6", "7"],
+      newTime: "",
+      loading: false,
+      queryType: "",
+      queryId: "",
+      status: "",
+      sitem: null,
+    };
+  },
+  mounted() {
+    this.initForm();
+  },
+  methods: {
+    async initForm() {
+      const { id, type } = this.$route.query;
+      this.queryId = id;
+      this.queryType = type;
+      this.activeTabs = type === "add" ? "0" : "1";
+      this.loading = true;
+      if (this.queryType === "add") {
+        this.sitem = {};
+        this.getNewTime();
+      } else {
+        await this.initData();
+      }
+
+      this.loading = false;
+    },
+    // 点击业务审核的按钮
+    async examForm(e) {
+      console.log(e);
+      if (!this.loading) {
+        let model = {
+          skuCode: this.queryId,
+          exam_status: e.numStatus,
+          online_time: e.online_time,
+          remark: e.remark,
+        };
+
+        if ((e.numStatus ?? "") == "") {
+          //驳回重新审核
+          await this.setstatus("提交产品部门审核结果", model);
+        } else if (e.numStatus == "3") {
+          //点击保存
+          // return;
+          await this.setstatus("提交产品部门审核结果", model);
+        } else {
+          //驳回下线
+          await this.setstatus("驳回下线吗", model);
+        }
+      }
+    },
+    // 点击财务定价的驳回按钮
+    async examForm1(e) {
+      if ((e.numStatus ?? "") == "") {
+        if (!this.loading) {
+          let model = {
+            skuCode: this.queryId,
+            exam_status: e.numStatus,
+            remark: e.remark,
+          };
+          await this.setstatus("驳回重新审核吗", model);
+        }
+      } else {
+        // return;
+        if (!this.loading) {
+          let model = {
+            skuCode: this.queryId,
+            exam_status: e.numStatus,
+            remark: e.remark,
+          };
+          await this.setstatus("驳回下线吗", model);
+        }
+      }
+    },
+    // 财务审核的保存按钮
+    async examForm2(e) {
+      console.log(e);
+      if (!this.loading) {
+        let model = {
+          skuCode: this.queryId,
+          exam_status: e.numStatus,
+          remark: e.remark,
+        };
+
+        if ((e.numStatus ?? "") == "") {
+          //驳回重新审核
+          await this.setstatus("驳回重新审核吗", model);
+        } else if (e.numStatus == "5") {
+          //点击保存
+          // return;
+          await this.setstatus("提交财务审核结果", model);
+        } else {
+          //驳回下线
+          await this.setstatus("驳回下线吗", model);
+        }
+      }
+    },
+    // 操作上线的保存按钮
+    async examForm3(e) {
+      console.log(e);
+      if (!this.loading) {
+        let model = {
+          skuCode: this.queryId,
+          exam_status: e.numStatus,
+          plat_code: e.plat_code,
+          remark: e.remark || "",
+        };
+
+        if ((e.numStatus ?? "") == "") {
+          //驳回重新审核
+          await this.setstatus("驳回重新审核吗", model);
+        } else if (e.numStatus == "6") {
+          //点击保存
+          // return;
+          await this.setstatus("提交商品上线结果", model);
+        } else {
+          //驳回下线
+          await this.setstatus("驳回下线吗", model);
+        }
+      }
+    },
+
+    async setstatus(detail, model) {
+      await this.$confirm(`确定要${detail}?`, {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(async () => {
+          let res = null;
+          if (model.exam_status == "") {
+            res = await asyncRequest.goodupreject(model);
+          } else {
+            res = await asyncRequest.status(model);
+          }
+          if (res && res.code === 0) {
+            this.$notify.success({
+              title: "提交成功!",
+              message: "",
+            });
+            await this.initForm();
+          } else if (res && res.code >= 100 && res.code <= 104) {
+            await this.logout();
+          } else {
+            this.$message.warning(res.message);
+          }
+        })
+        .catch(() => {
+          console.log("取消");
+        });
+    },
+
+    refresh(e) {
+      const { spuCode } = e;
+      let model = {
+        id: this.queryType === "add" ? spuCode : this.queryId,
+        type: "view",
+      };
+      this.routeReGoto("othgoodsOnlineDetail", model);
+    },
+    async initData() {
+      this.loading = true;
+      const { code, message, data } = await asyncRequest.detail({
+        platform_youzan_id: this.queryId,
+      });
+      this.loading = false;
+      if (code === 0) {
+        this.sitem = JSON.parse(JSON.stringify(data));
+        const {
+          exam_status,
+          cat_info,
+          ladderlist,
+          nakelist,
+          spuCode,
+          platform_id,
+        } = this.sitem;
+        this.spuCode = spuCode;
+        this.platform_id = platform_id;
+        // this.ladderlist = JSON.parse(JSON.stringify(ladderlist));
+        const _nakelist = JSON.parse(JSON.stringify(nakelist));
+        // console.log(this.ladderlist);
+        let cat = "";
+        if (cat_info && cat_info.length > 0) {
+          cat_info.forEach((e, i) => {
+            cat += i === 0 ? e.name : "/" + e.name;
+          });
+        }
+        this.sitem.cat = cat;
+        this.sitem.platform_youzan_id = this.queryId;
+
+        if (!isArray(this.sitem.good_info_img)) {
+          this.sitem.good_info_img = this.sitem.good_info_img.split(",");
+        }
+
+        _nakelist.forEach(async (si, sii) => {
+          si.start_sale_num = si.min_num;
+          let { isok, price, sale_cost_fee } = await this.get_new(sii,si.min_num);
+          if (isok === 0) {
+            _nakelist[sii].sale_good_price = price;
+            _nakelist[sii].sale_cost_fee = sale_cost_fee;
+            _nakelist[sii].newTime = new Date().valueOf() + "";
+          } else if (isok >= 100 && isok <= 104) {
+            await this.logout();
+          } else {
+            _nakelist[sii].sale_good_price = price;
+            _nakelist[sii].sale_cost_fee = sale_cost_fee;
+            _nakelist[sii].newTime = new Date().valueOf() + "";
+          }
+          this.$set(this.nakelist, sii, _nakelist[sii]);
+        });
+
+      //  this.nakelist = _nakelist
+
+       console.log(this.nakelist)
+
+        this.status = exam_status;
+        this.getNewTime();
+      } else if (code >= 100 && code <= 104) {
+        await this.logout();
+      } else {
+        this.$message.warning(message);
+      }
+    },
+    async get_new(index,min_num) {
+      const { code, data, message } = await asyncRequest.goodupprice({
+        min_num: min_num,
+        platform_id: this.platform_id,
+        spuCode: this.spuCode,
+      });
+      const { sale_price, new_cost_fee } = data || {};
+      const resModel = {
+        isok: code,
+        price: code === 0 ? sale_price : "0",
+        sale_cost_fee: code === 0 ? new_cost_fee : "0",
+        message: message,
+      };
+      return resModel;
+    },
+    getNewTime() {
+      this.newTime = new Date().valueOf();
+    },
+  },
+};
+</script>
+<style lang="scss" scoped>
+.othgoodsOnlineDetail {
+  width: 100%;
+  box-sizing: border-box;
+  .othgoodsOnlineDetail-main {
+    padding: 10px 16px 200px 16px;
+    width: 100%;
+  }
+  .othgoodsOnlineDetail-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;
+    }
+  }
+  /deep/ .ddiv {
+    border-top: 1px solid #dcdfe6;
+  }
+  /deep/ .dtitle {
+    width: 40px;
+    text-align: center;
+    height: 100%;
+    min-height: 100%;
+    ul {
+      padding: 12px 0 0 0;
+    }
+  }
+  /deep/ .dmain {
+    padding: 20px 0 0 0;
+    width: calc(100% - 40px);
+    border-left: 1px solid #dcdfe6;
+  }
+}
+</style>

+ 856 - 0
src/views/youzan/othLiveGoods/index.vue

@@ -0,0 +1,856 @@
+<template>
+  <div class="othgoodsOnline pagePadding">
+    <div v-if=" powers.some((i) => i == '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 10px 80px">
+              <el-col :span="4" style="width: 150px">
+                <el-select
+                  v-model="parmValue.exam_status"
+                  filterable
+                  clearable
+                  :size="searchSize"
+                  placeholder="状态"
+                  style="width: 100%"
+                  @change="
+                    pageInfo.curr = 1;
+                    parmValue.page = 1;
+                    searchList();
+                  "
+                >
+                  <el-option
+                    v-for="item in options8"
+                    :key="'status' + item.id"
+                    :label="item.name"
+                    :value="item.id"
+                  />
+                </el-select>
+              </el-col>
+              <el-col :span="4" style="width: 130px; padding: 0 0 0 10px">
+                <el-select
+                  v-model="parmValue.good_type"
+                  filterable
+                  clearable
+                  :size="searchSize"
+                  placeholder="是否定制"
+                  style="width: 100%"
+                  @change="
+                    pageInfo.curr = 1;
+                    parmValue.page = 1;
+                    searchList();
+                  "
+                >
+                  <el-option
+                    v-for="item in options1"
+                    :key="'good_type' + item.id"
+                    :label="item.name"
+                    :value="item.id"
+                  />
+                </el-select>
+              </el-col>
+              <el-col :span="6" style="width: 303px; padding: 0 0 0 10px">
+                <period-date-picker
+                  :type="1"
+                  :width="'135px'"
+                  :size="searchSize"
+                  :start="parmValue.start"
+                  :end="parmValue.end"
+                  @timeReturned="handleTime"
+                />
+              </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>
+
+            <el-row>
+              <el-col :span="6" style="width: 310px">
+                <good-class
+                  :value="parmValue.cat_id"
+                  @handleChange="goods_class_change"
+                  :disabled="false"
+                  :size="searchSize"
+                  :isDetail="false"
+                  :placeholder="'分类'"
+                />
+              </el-col>
+
+              <el-col :span="6" style="width: 240px; padding: 0 0 0 10px">
+                <search-terrace
+                  :value="parmValue.platform_code"
+                  :disabled="true"
+                  :size="'mini'"
+                  :isDetail="true"
+                  :is_show="'0'"
+                  :placeholder="'所属平台'"
+                  @searchChange="platform_codeChange"
+              /></el-col>
+              <el-col :span="4" style="width: 210px; padding: 0 0 0 10px">
+                <search-brand
+                  :value="brandid"
+                  :disabled="false"
+                  :size="'mini'"
+                  :isDetail="true"
+                  :names="parmValue.supplierName"
+                  :placeholder="'商品品牌'"
+                  @searchChange="brandidsearchChange"
+                />
+              </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-row>
+            <el-row style="padding: 10px 0 0 0">
+              <el-col :span="4" style="width: 450px">
+                <el-input
+                  :size="searchSize"
+                  v-model="sinput"
+                  :maxlength="40"
+                  @blur="
+                    pageInfo.curr = 1;
+                    parmValue.page = 1;
+                    searchList();
+                  "
+                  placeholder="关键字"
+                  ><el-select
+                    v-model="select"
+                    slot="prepend"
+                    :size="searchSize"
+                    style="width: 140px"
+                    @change="
+                      pageInfo.curr = 1;
+                      parmValue.page = 1;
+                      searchList();
+                    "
+                    placeholder="关键字类型"
+                  >
+                    <el-option label="商品名称" value="1" />
+                    <el-option label="成本商品编号" value="2" />
+                    <el-option label="上线商品编号" value="8" />
+                    <!-- <el-option label="平台编号" value="3" /> -->
+                    <!-- <el-option label="供应商编号" value="4" /> -->
+                    <el-option label="业务企业编号" value="5" />
+                    <el-option label="平台商品编号" value="6" />
+                    <el-option label="成本创建人" value="7" />
+                    <el-option label="上线创建人" value="10" />
+                    <el-option label="创建人部门" value="9" /> </el-select
+                ></el-input>
+              </el-col>
+              <el-col
+                :span="3"
+                class="fr"
+                style="width: 66px; padding: 0 0 0 10px"
+                v-if="powers.some((i) => i == '087')"
+              >
+                <el-button
+                  :size="searchSize"
+                  type="primary"
+                  style="float: right"
+                  @click="centerDialogVisible = true"
+                >
+                  导出上线商品
+                </el-button>
+              </el-col>
+            </el-row>
+          </div></template
+        >
+        <template #good_thumb_img="{ scope }">
+          <div
+            v-if="scope.row.good_thumb_img"
+            style="width: 20px; height: 20px"
+            class="hover"
+            v-viewer
+          >
+            <img
+              :src="scope.row.good_thumb_img"
+              style="display: inline-block; width: 100%; height: 100%"
+              alt=""
+            />
+          </div>
+        </template>
+        <template #status="{ scope }">
+          <el-tag
+            :size="tablebtnSize"
+            :type="
+              scope.row.status == '6'
+                ? ''
+                : scope.row.status == '7'
+                ? 'danger'
+                : 'warning'
+            "
+            v-text="
+              (options8.find((item) => item.id == scope.row.status) || {}).name || '--'
+            "
+          ></el-tag>
+        </template>
+        <template #good_type="{ scope }">
+          <el-tag
+            :size="tablebtnSize"
+            :type="scope.row.good_type == '0' ? 'warning' : ''"
+            v-text="
+              (options1.find((item) => item.id == scope.row.good_type) || {}).name || '--'
+            "
+          ></el-tag>
+        </template>
+
+        <template #operation="{ scope }">
+          <el-tooltip
+            v-if="powers.some((i) => i == '007')"
+            placement="top"
+            content="详情"
+            effect="dark"
+          >
+            <i
+              class="el-icon-view tb-icon"
+              @click="getRouter('othLiveGoodsDetail', scope.row.platform_youzan_id)"
+            ></i>
+          </el-tooltip>
+
+          <el-tooltip content="设置活动链接" placement="top" v-if="powers.some((i) => i == '102') && String(scope.row.exam_status) === '6'">
+            <i class="el-icon-setting tb-icon" @click="handleActivity(scope.row)"></i>
+          </el-tooltip>
+
+          <el-tooltip
+            v-if="
+             (
+              powers.some((i) => i == '078') &&
+              (String(scope.row.status) === '7' || String(scope.row.status) === '8')
+             ) && !isSupertube
+            "
+            effect="dark"
+            content="重新发起上线流程"
+            placement="top"
+          >
+            <i
+              class="el-icon-upload tb-icon"
+              @click="get_againonline(scope.row.platform_youzan_id)"
+            ></i>
+          </el-tooltip>
+          
+          <el-tooltip
+            v-if="(powers.some((i) => i == '079') && scope.row.status + '' !== '8') && !isSupertube"
+            effect="dark"
+            content="下线商品"
+            placement="top"
+          >
+            <i
+              class="el-icon-download tb-icon"
+              @click="showDonlineDlg(scope.row.platform_youzan_id)"
+            ></i>
+          </el-tooltip>
+        </template>
+      </ex-table>
+      <el-dialog title="下线原因" :visible.sync="dialogFormVisible" width="500px">
+        <el-form
+          :model="donline_form"
+          :rules="donline_rules"
+          ref="donline_Form"
+          class="demo-ruleForm"
+          label-width="80px"
+        >
+          <el-form-item label="下线原因" prop="offline_reason_id">
+            <el-select
+              style="width: 100%"
+              v-model="donline_form.offline_reason_id"
+              placeholder="请选择下线原因"
+            >
+              <el-option
+                :label="item.result"
+                :value="item.result_code"
+                v-for="item in donline_formStOps"
+                :key="item.result_code"
+              ></el-option>
+            </el-select>
+          </el-form-item>
+          <el-form-item label="下线备注" prop="offline_remark">
+            <el-input
+              v-model="donline_form.offline_remark"
+              type="textarea"
+              placeholder="请输入下线备注"
+              autocomplete="off"
+            ></el-input>
+          </el-form-item>
+        </el-form>
+        <div slot="footer" class="dialog-footer">
+          <el-button @click="dialogFormVisible = false">取 消</el-button>
+          <el-button type="primary" @click="donlineDlg">确 定</el-button>
+        </div>
+      </el-dialog>
+      <el-dialog
+        title="上线商品导出"
+        :visible.sync="centerDialogVisible"
+        width="500px"
+        center
+      >
+        <el-form
+          :model="ruleForm"
+          :rules="rules"
+          ref="ruleForm"
+          class="demo-ruleForm"
+          label-width="80px"
+        >
+          <el-form-item prop="start_date" label="日期: ">
+            <!-- <el-date-picker
+            value-format="yyyy-MM-dd"
+            v-model="ruleForm.date"
+            type="date"
+            placeholder="请选择"
+          >
+          </el-date-picker> -->
+
+            <periodDatePicker
+              :start="ruleForm.start_date"
+              :end="ruleForm.end_date"
+              :width="'165px'"
+              @timeReturned="time"
+            />
+          </el-form-item>
+          <el-form-item label="状态: " prop="status">
+            <el-select v-model="ruleForm.status" placeholder="请选择">
+              <el-option label="待上线" value="5"></el-option>
+              <el-option label="上线成功" value="6"></el-option>
+              <el-option label="已下线" value="8"></el-option>
+            </el-select>
+          </el-form-item>
+
+          <el-form-item label="平台id: " prop="platform_id">
+            <!-- <el-input
+            v-model="ruleForm.platform_id"
+            style="width: 300px"
+            placeholder="请输入"
+          ></el-input> -->
+            <search-terrace
+              :value="ruleForm.platform_id"
+              :disabled="true"
+              :isDetail="false"
+              :is_show="'0'"
+              :placeholder="'所属平台'"
+              @searchChange="platform_codesearchChange"
+            />
+          </el-form-item>
+        </el-form>
+        <span slot="footer" class="dialog-footer">
+          <el-button @click="centerDialogVisible = false">取 消</el-button>
+          <el-button type="primary" @click="goodsExport">导 出</el-button>
+        </span>
+      </el-dialog>
+      <!-- 弹窗 新增/修改 -->
+      <add-edit
+        :id="modelId"
+        :show-model="showModel"
+        :sitem="sitem"
+        @refresh="searchList"
+        @cancel="showModel = false"
+      />
+    </div>
+
+    <div v-else>
+      <no-auth></no-auth>
+    </div>
+
+    <activity-modal :skuCode="skuCode" :actUrl="actUrl" :visible.sync="activityVisible" @refresh="searchList" />
+  </div>
+</template>
+<script>
+import asyncRequest from "@/apis/service/youzan/othgoodsOnline";
+import mixinPage from "@/mixins/elPaginationHandle";
+import { mapGetters } from "vuex";
+import urlConfig from "@/apis/url-config";
+import resToken from "@/mixins/resToken";
+import { listCol, options1, options8 } from "./columns";
+import companyHelper from "@/mixins/companyHelper";
+import ActivityModal from "./components/activity-modal";
+
+export default {
+  name: "othgoodsOnline",
+  mixins: [mixinPage, resToken,companyHelper],
+  components: { ActivityModal },
+  computed: {
+    //组件SIZE设置
+    ...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube"]),
+    powers() {
+      const tran =
+        this.$store.getters.btnList.find((i) => i.menu_route == "othLiveGoods") ||
+        {};
+      const { action } = tran ?? {};
+      return action ?? [];
+    },
+  },
+  data() {
+    const validate = (rule, value, callback) => {
+      if (value == "") {
+        return callback(new Error("必填项不能为空"));
+      } else {
+        callback();
+      }
+    };
+    return {
+      actUrl:"",
+      dialogFormVisible: false,
+      activityVisible:false,
+      donline_formStOps: [],
+      donline_form: {
+        offline_reason_id: "",
+        offline_remark: "",
+        platform_youzan_id: "",
+      },
+      donline_rules: {
+        offline_reason_id: [
+          { message: "请选择下线原因", required: true, trigger: "change" },
+        ],
+        offline_remark: [{ message: "请输入下线备注", required: true, trigger: "blur" }],
+      },
+      fileUrl: urlConfig.baseURL,
+      ruleForm: {
+        // date: "",
+        platform_id: "",
+        status: "",
+        start_date: "",
+        end_date: "",
+      },
+      rules: {
+        start_date: [
+          {
+            validator: validate,
+            type: "date",
+            required: true,
+            trigger: "change",
+          },
+        ],
+        status: [{ validator: validate, required: true, trigger: "change" }],
+        platform_id: [{ validator: validate, required: true, trigger: "change" }],
+      },
+      centerDialogVisible: false,
+      options1: options1,
+      options8: options8,
+      loading: false,
+      skuCode: "",
+      parmValue: {
+        good_name: "", //商品名称
+        spucode: "", //商品编号
+        skucode: "", //商品编号
+        cat_id: "", //商品分类
+        start: "", //开始日期
+        end: "", //结束日期
+        platform_code: "37", //平台编码
+        is_stock: "", //是否库存品
+        page: 1, // 页码
+        size: 15, // 每页显示条数
+        supplierNo: "", //供应商编号
+        good_type: "", //是否定制
+        brand_id: "", //品牌
+        companyNo: "", //业务企业编号
+        exam_status: "", //审核状态
+        plat_code: "", //平台商品编号
+        creater: "", //
+        company_name: "", //创建人部门
+      },
+
+      // 表格 - 数据
+      tableData: [],
+      // 表格 - 参数
+      table: {
+        stripe: true,
+        border: true,
+        _defaultHeader_: ["setcol"],
+      },
+      // 表格 - 分页
+      pageInfo: {
+        size: 15,
+        curr: 1,
+        total: 0,
+      },
+      // 表格 - 列参数
+      columns: listCol,
+      cat_id: [],
+      brandid: [],
+      select: "1",
+      sinput: "",
+    };
+  },
+  mounted() {
+    const { back } = this.$route.query;
+    if (back) {
+      this.parmValue = JSON.parse(back);
+      const { page, size } = this.parmValue;
+      // this.parmValue.start = start || last_start;
+      // this.parmValue.end = end || last_end;
+      if (this.parmValue.brand_id.length > 0) {
+        this.brandid = [this.parmValue.brand_id];
+      }
+
+      this.pageInfo = {
+        size: size,
+        curr: page,
+        total: 0
+      };
+      
+      //多选条件
+      this.select = this.parmValue.select;
+      // this.sselect = this.parmValue.sselect;
+      this.sinput = this.parmValue.sinput;
+    } else {
+      this.select = "1";
+      //  this.sselect = "创建时间"
+    }
+    this.cat_id = [];
+    // this.brandid = [];
+    this.searchList();
+  },
+  methods: {
+    handleActivity(row){
+      this.skuCode = row.skuCode;
+      this.actUrl = row.is_act_url
+      this.activityVisible = true;
+    },
+    // 获取异常原因下拉列表
+    async getresultlist() {
+      const { code, data, message } = await asyncRequest.resultlist({
+        page: 1, size: 100, type: "8", status: "3"
+      });
+      if (code === 0) {
+        const { list } = data ?? [];
+        this.donline_formStOps = list;
+      } else if (code >= 100 && code <= 104) {
+        await this.logout();
+      } else {
+        this.$message.warning(message);
+      }
+    },
+    // 时间函数
+    async time(e) {
+      this.ruleForm.start_date = e.startTime || "";
+      this.ruleForm.end_date = e.endTime || "";
+    },
+    platform_codesearchChange(e) {
+      const { id } = e;
+      this.ruleForm.platform_id = id || "";
+      this.$refs.ruleForm.validateField("platform_id");
+    },
+    async platform_codeChange(e) {
+      const { id } = e;
+      this.parmValue.platform_code = id || "";
+      this.pageInfo.curr = 1;
+      this.parmValue.page = 1;
+      await this.searchList();
+    },
+    //点击下线
+    async showDonlineDlg(platform_youzan_id) {
+      this.donline_form = {
+        offline_reason_id: "",
+        offline_remark: "",
+        platform_youzan_id: platform_youzan_id,
+      };
+      this.dialogFormVisible = true;
+    },
+    //商品下线原因 确定
+    async donlineDlg() {
+      await this.$refs.donline_Form.validate(async (valid) => {
+        if (valid) {
+          this.loading = true;
+          const obj = JSON.parse(JSON.stringify(this.donline_form));
+          const { code, data, message } = await asyncRequest.yz_goodoff(obj);
+          this.dialogFormVisible = false;
+          if (code === 0) {
+            this.loading = false;
+            this.$notify.success({
+              title: message,
+              message: "",
+            });
+            await this.searchList();
+          } else if (code >= 100 && code <= 104) {
+            await this.logout();
+          } else {
+            this.loading = false;
+            this.$message.warning(message);
+          }
+        } else {
+          console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+    //导出
+    async goodsExport() {
+      if (
+        (this.ruleForm.start_date !== "" && this.ruleForm.end_date === "") ||
+        (this.ruleForm.start_date === "" && this.ruleForm.end_date !== "")
+      ) {
+        this.$message.warning("时间区间不完整!");
+        return;
+      }
+      await this.$refs.ruleForm.validate(async (valid) => {
+        if (valid) {
+          if (!this.loading) {
+            this.loading = true;
+            let httpType = `aplication/zip`;
+            axios({
+              method: "post", url: this.fileUrl + "admin/exportgood",
+              responseType: "blob", data: this.ruleForm,
+              headers: { Accept: httpType }
+            }).then((res) => {
+                if (res && res.status == 200 && res.data) {
+                  let url = window.URL.createObjectURL(
+                    new Blob([res.data], {
+                      type: httpType,
+                    })
+                  );
+                  let link = document.createElement("a");
+                  link.style.display = "none";
+                  link.href = url;
+                  let excelName = "商品.zip";
+                  link.setAttribute("download", excelName);
+                  document.body.appendChild(link);
+                  link.click();
+                  link.remove();
+                  window.URL.revokeObjectURL(url); //释放掉blob对象
+                  this.$message.success(`导出成功`);
+                  setTimeout(() => {
+                    this.loading = false;
+                  }, 500);
+                } else {
+                  this.$message.error(res.data.message);
+                  setTimeout(() => {
+                    this.loading = false;
+                  }, 500);
+                }
+              })
+              .catch((error) => {
+                console.log(error);
+                this.loading = false;
+              });
+          }
+          // this.loading = true;
+          // const res = await asyncRequest.exportgood(this.ruleForm);
+          // if (res && res.code === 0) {
+          //   this.$message.warning(res.message);
+          //   console.log(res);
+          //   this.loading = false;
+          // } else if (res && res.code >= 100 && res.code <= 104) {
+          //   await this.logout();
+          // } else {
+          //   this.loading = false;
+          //   this.$message.warning(res.message);
+          // }
+        } else {
+          console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+    //点击详情
+    getRouter(toRouter, queryId) {
+      if (toRouter && queryId) {
+        let model = {
+          id: queryId,
+          type: "view",
+        };
+
+        //有多选框的条件
+        this.parmValue.select = this.select;
+        // this.parmValue.sselect = this.sselect ;
+        this.parmValue.sinput = this.sinput;
+        //
+        console.log(this.parmValue);
+        let routerModel = {
+          options: JSON.parse(JSON.stringify(this.parmValue)),
+          router: this.$route.path,
+        };
+        model.preModel = JSON.stringify(routerModel);
+
+        this.routeGoto(toRouter, model);
+      } else {
+        this.$message.warning("暂未找到相关流程!");
+      }
+    },
+    restSearch() {
+      this.select = "1";
+      this.sinput = "";
+      this.cat_id = [];
+      this.brandid = [];
+      // 表格 - 分页
+      this.pageInfo = {
+        size: 15,
+        curr: 1,
+        total: 0,
+      };
+      this.parmValue = {
+        good_name: "", //商品名称
+        spucode: "", //商品编号
+        skucode: "", //商品编号
+        cat_id: "", //商品分类
+        start: "", //开始日期
+        end: "", //结束日期
+        platform_code: "37", //平台编码
+        is_stock: "", //是否库存品
+        page: 1, // 页码
+        size: 15, // 每页显示条数
+        supplierNo: "", //供应商编号
+        good_type: "", //是否定制
+        brand_id: "", //品牌
+        companyNo: "", //业务企业编号
+        exam_status: "", //审核状态
+        plat_code: "", //平台商品编号
+        creater: "", //
+        company_name: "", //创建人部门
+      };
+      this.searchList();
+    },
+    //商品品牌选择
+    async brandidsearchChange(e) {
+      const { id, code, label } = e;
+      if (id) {
+        this.brandid = [id];
+        this.parmValue.brand_id = id;
+        this.parmValue.supplierName = label;
+      } else {
+        this.brandid = [];
+        this.parmValue.brand_id = "";
+        this.parmValue.supplierName = "";
+      }
+      this.parmValue.brand_id = this.brandid.toString();
+      this.pageInfo.curr = 1;
+      this.parmValue.page = 1;
+      await this.searchList();
+    },
+    // 时间
+    async handleTime(e) {
+      this.parmValue.start = e.startTime || "";
+      this.parmValue.end = e.endTime || "";
+      if (
+        (this.parmValue.start !== "" && this.parmValue.end !== "") ||
+        (this.parmValue.start === "" && this.parmValue.end === "")
+      ) {
+        this.pageInfo.curr = 1;
+        this.parmValue.page = 1;
+        await this.searchList();
+      }
+    },
+    /**
+     * 商品重新上线
+     * @param {String} id id
+     * @param {String} status 0-禁用 1-启用
+     */
+    async get_againonline(platform_youzan_id) {
+      await this.$confirm(`确定要重新发起上线流程?`, {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(async () => {
+          this.loading = true;
+          const model = {
+            platform_youzan_id: platform_youzan_id,
+          };
+          const res = await asyncRequest.againonline(model);
+          if (res && res.code === 0) {
+            this.loading = false;
+            this.$notify.success({
+              title: "重新发起上线流程成功!",
+              message: "",
+            });
+            await this.searchList();
+          } else if (res && res.code >= 100 && res.code <= 104) {
+            await this.logout();
+          } else {
+            this.loading = false;
+            this.$message.warning(res.message);
+          }
+        })
+        .catch(() => {
+          console.log("取消");
+        });
+    },
+
+    /**
+     * 商品下线
+     * @param {String} id id
+     * @param {String} status 0-禁用 1-启用
+     */
+
+    // 刷新表格
+    async searchList() {
+      if (
+        (this.parmValue.start !== "" && this.parmValue.end === "") ||
+        (this.parmValue.start === "" && this.parmValue.end !== "")
+      ) {
+        this.$message.warning("时间区间不完整!");
+        return;
+      }
+      this.loading = true;
+      let model = JSON.parse(JSON.stringify(this.parmValue));
+      model.good_name = this.select === "1" ? this.sinput : ""; //商品名称
+      model.spucode = this.select === "2" ? this.sinput : ""; //商品编号
+      model.skucode = this.select === "8" ? this.sinput : ""; //商品编号
+      // model.platform_code = this.select === "1" ? this.sinput : ""; //平台编码
+      // model.supplierNo = this.select === "1" ? this.sinput : ""; //供应商编号
+      model.companyNo = this.select === "5" ? this.sinput : ""; //业务企业编号
+      // model.exam_status = this.select === "1" ? this.sinput : ""; //审核状态
+      model.plat_code = this.select === "6" ? this.sinput : ""; //平台商品编号
+      model.creater = this.select === "7" ? this.sinput : ""; //
+      model.company_name = this.select === "9" ? this.sinput : ""; // 部门
+      model.online_creater = this.select === "10" ? this.sinput : ""; // 上线创建人
+
+      const { code, data, message } = await asyncRequest.list({
+        ...model,
+        needRela: true
+      });
+      if (code === 0) {
+        const { list, count } = data ?? {};
+        this.tableData = list ?? [];
+        this.tableData.forEach((a) => {
+          a.cat_name = "";
+          let list = a.cat_info || [];
+          list.forEach((b, i) => {
+            a.cat_name += i == 0 ? b.name : "/" + b.name;
+          });
+        });
+        this.pageInfo.total = Number(count ?? "0");
+      } else if (code >= 100 && code <= 104) {
+        await this.logout();
+      } else {
+        this.tableData = [];
+        this.pageInfo.total = 0;
+      }
+      this.getresultlist();
+      this.loading = false;
+    },
+    //商品分类选择
+    async goods_class_change(e) {
+      this.cat_id = e;
+      this.parmValue.cat_id =
+        this.cat_id.length === 0 ? "" : this.cat_id[this.cat_id.length - 1];
+      this.pageInfo.curr = 1;
+      this.parmValue.page = 1;
+      await this.searchList();
+    },
+  },
+};
+</script>
+
+<style lang="scss" scoped></style>

+ 0 - 0
src/views/youzan/othLiveGoods/泰行销直播商品