wzy 1 年之前
父節點
當前提交
c84c2ec6a4

+ 22 - 2
src/api/platformProduct.js

@@ -36,8 +36,8 @@ export const getClassDetails = (data) => request({
   data
 })
 
-// 品管理
-// 品管理查询
+// 品管理
+// 品管理查询
 export function getClassifyGetAll(data) {
   return request({
     url: '/platformProduct/getAll',
@@ -105,3 +105,23 @@ export function getVoucher(data) {
     data
   })
 }
+
+
+//  // 修改商品
+export function getClassifyGetById(data) {
+  return request({
+    url: '/platformProduct/getById',
+    method: 'post',
+    data
+  })
+}
+
+// // 导出商品信息
+// export function productExport(data) {
+//   return request({
+//     url: '/product/exportProduct',
+//     method: 'post',
+//     data,
+//     responseType: 'blob'
+//   })
+// }

+ 26 - 20
src/views/platformProduct/commodityManagement/addCommodity.vue

@@ -221,7 +221,9 @@ export default {
             voucherId: '', // 允许使用的代金卷ID
             voucherPrice: '' // 代金卷最大的使用限额
           }
-        ]
+        ],
+        //  是否是选品中心在商品
+        ifSelection:1
       },
       params: {
         applyPrice: 0,
@@ -312,6 +314,9 @@ export default {
     }
   },
   mounted() {
+
+
+    
     // console.log(this.voucherList)
     this.groups()
     this.selectList()
@@ -376,7 +381,7 @@ export default {
       this.form = {
         productName: '',
         productBrief: '',
-        shopGroupId: '',
+        shopGroupId: '0',
         classifyId: '',
         supplierName: '',
         ifLogistics: '',
@@ -413,7 +418,9 @@ export default {
             voucherId: 0,
             style: ''
           }
-        ]
+        ],
+         //  是否是选品中心在商品
+         ifSelection:1
       }
       this.params = {
         applyPrice: 0,
@@ -494,7 +501,6 @@ export default {
     },
     // 保存
     async save() {
-      console.log(this.params.skuAttrList)
       if (this.params.attrStyle === 1) {
         for (let i = 0; i < this.params.skuAttrList.length; i++) {
           if (this.params.skuAttrList[i].skuName === '') {
@@ -556,23 +562,23 @@ export default {
     // 获取详情
     async details() {
       const res = await getClassifyGetById({ productId: this.productId })
-      this.form = res.data
+      this.form = res.data;
       this.$set(this.form, 'productText', res.data.productText)
-      // this.form.productText = res.data.productText
-      // console.log(this.form.productText, 'productText')
-      if (res.data.names.length !== 0) {
-        this.params.skuAttrList = res.data.names
-      }
-      // this.params.skuAttrList.forEach((item) => {
-      //   var data = {}
-      //   var arr = Object.keys(res.data)
-      //   if (arr.length === 0) {
-      //     item.needImg = false
-      //   }
-      // })
-      this.params.skuList = this.form.skus
-      this.params.attrStyle = res.data.skus[0].style
-      this.params.imgs = res.data.images
+        // this.form.productText = res.data.productText
+        // console.log(this.form.productText, 'productText')
+        if (res.data.names.length !== 0) {
+          this.params.skuAttrList = res.data.names
+        }
+        // this.params.skuAttrList.forEach((item) => {
+        //   var data = {}
+        //   var arr = Object.keys(res.data)
+        //   if (arr.length === 0) {
+        //     item.needImg = false
+        //   }
+        // })
+        this.params.skuList = this.form.skus
+        this.params.attrStyle = res.data.skus[0]?.style
+        this.params.imgs = res.data.images
     },
     async selectList() {
       const res = await getClassify()

+ 12 - 2
src/views/platformProduct/commodityManagement/addComponent.vue

@@ -292,7 +292,9 @@ export default {
       dataObj: {
         folderId: 1
       },
-      fileList: []
+      fileList: [],
+      //  记录当前是哪里增加或者删除的
+      idx:null
     }
   },
   computed: {
@@ -349,7 +351,7 @@ export default {
   },
   created() {
     // console.log(this.voucherList)
-    this.headers.tenant = 'MDAwMA=='
+    this.headers.tenant = 'MDAwMA==';
   },
   methods: {
     // proving1(e) {
@@ -413,6 +415,7 @@ export default {
       // }
     },
     addSkuAttrList() {
+      // eslint-disable-next-line vue/no-mutating-props
       this.form.skuAttrList.push({
         code: '',
         skuName: '',
@@ -429,6 +432,7 @@ export default {
         needImg: 0,
         sortOrder: 0
       })
+      // console.log(this.form.skuAttrList)
     },
     addAttrValue(index) {
       this.form.skuAttrList[index].values.push({
@@ -436,9 +440,15 @@ export default {
         valueCode: '',
         image: ''
       })
+      if(this.idx == index){
+        this.form.deletes.splice(this.form.deletes.length - 1,1)
+      }
     },
     // 删除规格值
     delValue(index, index1) {
+      //  只能删除最后一个规格
+      if(index1 < this.form.skuAttrList[index].values.length -1) return
+      this.idx = index
       const newList = JSON.parse(JSON.stringify(this.form.skuAttrList[index]))
       const valueObj = {
         code: newList.code,

+ 9 - 8
src/views/platformProduct/commodityManagement/index.vue

@@ -173,13 +173,13 @@ import {
   getClassifyGetAll,
   getClassifyDelete,
   getClassifyStart,
-  downloadTemplate,
-  importProduct,
+  // downloadTemplate, // 导入商品模板表下载
+  // importProduct, // 上传商品模板
   getClassify,
-  getProductMembers,
-  setProductMember,
-  clearProductMember,
-  productExport,
+  // getProductMembers, // 商品会员价格数据查询
+  // setProductMember, // 商品设置会员价
+  // clearProductMember,  // 清除商品会员价
+  // productExport, // 导出商品信息
   getBrandList,
   getVoucher
 } from '@/api/platformProduct'
@@ -309,6 +309,7 @@ export default {
         page: 1, // 当前页
         pageSize: 10
       }
+      this.search()
     },
     // 新增商品
     add() {
@@ -351,7 +352,7 @@ export default {
       this.batchFileList = []
     },
     // 编辑商品
-    edit(row) {
+    async edit(row) {
       this.showTinymce = true
       this.commidyVisible = true
       this.commId = row.productId
@@ -505,7 +506,7 @@ export default {
         this.formInline.classifyId[1] ||
         this.formInline.classifyId[0] ||
         this.formInline.classifyId
-      const res = await getClassifyGetAll(formInline)
+      const res = await getClassifyGetAll(formInline);
       this.total = res.data.total
       this.tableData = res.data.list
     },