浏览代码

2024.05.27
- 重构商品分组页面,修复分组数据错乱bug;

zweiqin 10 月之前
父节点
当前提交
699c6048fa

+ 4 - 37
src/views/commodity/commodityList/commodityGroup.vue

@@ -57,9 +57,6 @@
         </el-button>
       </template>
       <template v-else>
-        <!-- <el-button v-if="type === 'add'" class="add" type="primary" size="small" @click="addClassification">
-          添加一级分组名称
-          </el-button> -->
         <el-button type="primary" size="small" @click="addGroup('ruleForm')">
           保存
         </el-button>
@@ -122,7 +119,7 @@
           />
           <span slot="footer" class="dialog-footer">
             <el-button type="primary" @click="saveIdList">确 定</el-button>
-            <el-button @click="closeSelect">取 消</el-button>
+            <el-button @click="isShowManualAdd = false">取 消</el-button>
           </span>
         </div>
       </div>
@@ -156,10 +153,6 @@ export default {
   // eslint-disable-next-line vue/component-definition-name-casing, vue/match-component-file-name
   name: 'commodityGroup',
   props: {
-    type: {
-      type: String,
-      default: 'create'
-    },
     groupId: {
       type: Number,
       default: 0
@@ -167,7 +160,6 @@ export default {
   },
   data() {
     return {
-      // isVisible: false,
       // title: ['新增分组', '编辑分组'],
       dataGroup: [ new GroupData({ depth: 1 }) ],
       isCheck: false,
@@ -193,7 +185,6 @@ export default {
   watch: {
     groupId: {
       handler(nVal, oVal) {
-        // console.log(nVal, oVal)
         if (!nVal) {
           this.$set(this.dataGroup, '0', new GroupData({ depth: 1 }))
           // this.dataGroup[0] = new GroupData({ depth: 1 })
@@ -207,10 +198,6 @@ export default {
     }
   },
   mounted() {
-    // if (this.$route.query.shopGroupId) {
-    //   this.groupData.shopGroupId = this.$route.query.shopGroupId
-    //   this.getDetailFn()
-    // }
     if (this.groupId) {
       this.dataGroup[0].shopGroupId = this.groupId
       this.getDetailFn()
@@ -248,7 +235,6 @@ export default {
       })
     },
     getDepth(depth, isPlaceholder = false) {
-      // depth = depth + ''
       const tipsMp = {
         1: '添加二级分组名称',
         2: '添加三级分组名称'
@@ -262,10 +248,6 @@ export default {
       }
       return tipsMp[depth]
     },
-    addClassification() {
-      this.dataGroup.push(new GroupData({ depth: 1 }))
-      // console.log(this.dataGroup)
-    },
     append(data) {
       console.log(data)
       const depth = data.depth + 1
@@ -297,11 +279,7 @@ export default {
                 message: '删除成功!'
               })
               this.getAll(this.formInline)
-              // eslint-disable-next-line vue/require-explicit-emits, vue/custom-event-name-casing
-              this.$emit('getAllData')
-              // if (data.depth === 1) {
-
-              // }
+              this.$emit('success')
             }
             const parent = node.parent
             const children = parent.data.childs || parent.data
@@ -317,8 +295,6 @@ export default {
         .catch(() => { })
     },
     manualAdd(node, data) {
-      // console.log(node)
-      // console.log(data)
       this.idsData = data
       this.selectGroup = '1'
       // this.groupData.conditions = []
@@ -368,11 +344,6 @@ export default {
       })
       this.idsData.ids = shopList
       this.isShowManualAdd = false
-      console.log(this.dataGroup)
-    },
-    // 取消手动选择商品
-    closeSelect() {
-      this.isShowManualAdd = false
     },
     // 保存提交
     addGroup() {
@@ -410,7 +381,6 @@ export default {
         self.multipleSelection = []
       }
       if (self.dataGroup[0].shopGroupId !== '' && self.dataGroup[0].shopGroupId !== null) {
-        // 修改人群
         commodityListUpdate(self.dataGroup[0]).then((res) => {
           if (res.code === '') {
             this.closeAddGroup()
@@ -418,9 +388,7 @@ export default {
               message: '修改成功',
               type: 'success'
             })
-            self.$emit('reload')
-            // eslint-disable-next-line vue/custom-event-name-casing
-            self.$emit('getAllData')
+            self.$emit('success')
           } else {
             self.$message({
               message: res.message,
@@ -429,7 +397,6 @@ export default {
           }
         })
       } else {
-        // 新增人群
         commodityListAdd(self.dataGroup[0]).then((res) => {
           if (res.code === '') {
             this.closeAddGroup()
@@ -437,7 +404,7 @@ export default {
               message: '添加成功',
               type: 'success'
             })
-            self.$emit('reload')
+            self.$emit('success')
           } else {
             self.$message({
               message: res.message,

+ 330 - 0
src/views/commodity/commodityList/components/EditModal.vue

@@ -0,0 +1,330 @@
+<template>
+  <el-dialog :visible.sync="visible" v-bind="modalOptions" append-to-body>
+    <div class="tree-container">
+      <el-tree
+        :data="[ formData ]" :props="{ children: 'childs' }" node-key="shopGroupId" default-expand-all
+        draggable
+        :expand-on-click-node="false"
+      >
+        <div slot-scope="{ node, data }">
+          <div style="display: flex;align-items: center;justify-content: space-between;padding: 10px 0;">
+            <div v-if="data.depth <= 3" style="margin-right: 14px;">
+              <el-input
+                v-model="data.groupName" maxlength="10" size="mini" style="width: 280px;"
+                :placeholder="{ 1: '输入一级分组名称(最大6个字符)', 2: '输入二级分组名称(最大6个字符)', 2: '输入三级分组名称(最大10个字符)' }[data.depth]"
+              />
+              <el-input v-model="data.groupDescribe" size="mini" style="width: 340px;" placeholder="请输入分组描述" />
+            </div>
+            <div>
+              <el-button type="text" size="mini">
+                分组商品详情
+              </el-button>
+              <el-button type="text" size="mini" @click="handleAddProduct(data, node)">
+                添加分组商品
+              </el-button>
+              <el-button v-if="data.depth < 3" type="text" size="mini" @click="handleAppend(data)">
+                {{ { 1: '添加二级分组名称', 2: '添加三级分组名称' }[data.depth] }}
+              </el-button>
+              <el-button type="text" size="mini" @click="handleDelete(data, node)">
+                删除
+              </el-button>
+            </div>
+          </div>
+        </div>
+      </el-tree>
+      <div>
+        <el-button type="primary" size="small" @click="handleSubmit">
+          保存
+        </el-button>
+        <el-button type="danger" size="small" @click="handleClose">
+          取消
+        </el-button>
+      </div>
+
+      <el-dialog title="手动添加商品" :visible.sync="isShowManualAdd" width="900px" top="50px" append-to-body>
+        <div class="filter-container" style="display: flex;align-items: center;flex-wrap: wrap;">
+          <el-input
+            v-model="listQuery.search" clearable size="mini" class="filter-item"
+            style="width: 200px;"
+            placeholder="搜索商品名称或商品ID"
+          />
+          <div style="margin-left: 10px;">
+            <span>库存数量:</span>
+            <el-input
+              v-model="listQuery.minStock" size="mini" class="filter-item" style="width: 200px;"
+              maxlength="9"
+            />
+            <span> 至 </span>
+            <el-input
+              v-model="listQuery.maxStock" size="mini" class="filter-item" style="width: 200px;"
+              maxlength="9"
+            />
+          </div>
+          <div style="margin-left: 10px;">
+            <span>价格:</span>
+            <el-input
+              v-model="listQuery.minPrice" size="mini" class="filter-item" style="width: 200px;"
+              maxlength="9"
+            />
+            <span> 至 </span>
+            <el-input
+              v-model="listQuery.maxPrice" size="mini" class="filter-item" style="width: 200px;"
+              maxlength="9"
+            />
+          </div>
+          <el-button
+            size="mini" class="filter-item" type="primary" icon="el-icon-search"
+            style="margin-left: 10px;"
+            @click="getInfo(formData.shopGroupId)"
+          >
+            查找
+          </el-button>
+          <el-button
+            size="mini" class="filter-item" type="info" plain
+            style="margin-left: 10px; padding: 7px 22px; border: 0" @click="clearData"
+          >
+            重置
+          </el-button>
+        </div>
+        <div>
+          <el-table
+            ref="multipleTable" :data="productDataList" border
+            :header-cell-style="{ background: '#EEF3FF', color: '#333333' }" tooltip-effect="dark" style="width: 100%"
+            max-height="550" @selection-change="(e) => multipleSelection = e"
+          >
+            <el-table-column type="selection" width="55" />
+            <el-table-column label="产品主图" width="220" align="center">
+              <template slot-scope="scope">
+                <img height="80" width="80" :src="scope.row.image" alt srcset>
+              </template>
+            </el-table-column>
+            <el-table-column prop="productName" label="产品名称" width="220" align="center" />
+            <el-table-column prop="originalPrice" label="价格(元)" align="center" show-overflow-tooltip />
+            <el-table-column prop="stockNumber" label="库存(件)" align="center" show-overflow-tooltip />
+          </el-table>
+          <div>
+            <el-pagination
+              :current-page="listQuery.page" :page-sizes="[10, 20, 50, 100]"
+              :page-size="listQuery.pageSize" layout="total, sizes, prev, pager, next, jumper" :total="productTotal"
+              @size-change="(val) => ((listQuery.pageSize = val) && getInfo(formData.shopGroupId))"
+              @current-change="(val) => ((listQuery.page = val) && getInfo(formData.shopGroupId))"
+            />
+            <span slot="footer">
+              <el-button type="primary" @click="handleSaveIdList">确 定</el-button>
+              <el-button @click="isShowManualAdd = false">取 消</el-button>
+            </span>
+          </div>
+        </div>
+      </el-dialog>
+
+    </div>
+  </el-dialog>
+</template>
+
+<script>
+import { commodityListAdd, commodityListUpdate, getGroupList, commodityListGetById, commodityListDelete } from '@/api/commodity'
+import XeUtils from 'xe-utils'
+
+export default {
+  name: 'EditModal',
+  props: {
+    groupId: {
+      type: Number,
+      default: 0
+    }
+  },
+  data() {
+    return {
+      modalOptions: {
+        closeOnClickModal: false,
+        width: '1120px',
+        title: ''
+      },
+      visible: false,
+      formData: {
+        shopGroupId: '',
+        shopId: '',
+        groupName: '',
+        groupImage: '',
+        groupDescribe: '',
+        groupLevel: '',
+        depth: 1,
+        groupPid: 0,
+        childs: []
+      },
+
+      isShowManualAdd: false, // 手动添加商品模态框
+      selectedGroupId: '',
+      productDataList: [],
+      productTotal: 0,
+      listQuery: {
+        maxPrice: null, // 价格最大值
+        maxStock: null, // 库存数量最大值
+        minPrice: null, // 价格最小值
+        minStock: null, // 库存数量最小值
+        page: 1, // 当前页
+        pageSize: 10, // 每页记录数
+        search: '' // 搜索字段
+      },
+      multipleSelection: []
+    }
+  },
+  methods: {
+    handleClose() {
+      this.visible = false
+    },
+    async initList() {
+      const res = await getGroupList(this.listQuery)
+      this.productTotal = res.data.total
+      this.productDataList = res.data.list
+    },
+    handleOpen(params = {}) {
+      this.modalOptions.title = params.shopGroupId ? '编辑分组' : '添加分组'
+      this.visible = true
+      this.initList()
+      if (params.shopGroupId) {
+        this.getInfo(params.shopGroupId)
+      } else {
+        this.formData = {
+          shopGroupId: '',
+          shopId: '',
+          groupName: '',
+          groupImage: '',
+          groupDescribe: '',
+          groupLevel: '',
+          depth: 1,
+          groupPid: 0,
+          products: [],
+          childs: [],
+          ids: [] // 自设
+        }
+      }
+    },
+    async getInfo(id) {
+      const loading = this.$loading({ text: '加载中' })
+      try {
+        const res = await commodityListGetById({ shopGroupId: id })
+        this.formData = Object.assign(this.$options.data().formData, res.data, {
+          shopGroupId: res.data.shopGroupId || '',
+          shopId: res.data.shopId || '',
+          groupName: res.data.groupName || '',
+          groupImage: res.data.groupImage || '',
+          groupDescribe: res.data.groupDescribe || '',
+          groupLevel: res.data.groupLevel || '',
+          depth: res.data.depth || 1,
+          groupPid: res.data.groupPid || 0,
+          products: res.data.products || [],
+          childs: res.data.childs || [],
+          ids: res.data.ids || []
+        })
+        XeUtils.eachTree([ this.formData ], (item) => {
+          item.ids = item.products.map((i) => i.productId)
+        }, { children: 'childs' })
+      } finally {
+        loading.close()
+      }
+    },
+    handleAppend(data) {
+      if (data.depth < 3) {
+        data.childs.push({
+          shopGroupId: '',
+          shopId: '',
+          groupName: '',
+          groupImage: '',
+          groupDescribe: '',
+          groupLevel: '',
+          depth: data.depth + 1,
+          groupPid: 0,
+          childs: [],
+          ids: []
+        })
+      }
+    },
+    handleDelete(data, node) {
+      this.$confirm('选中数据将被永久删除, 是否继续?', '提示', {
+        confirmButtonText: '确定',
+        cancelButtonText: '取消',
+        type: 'warning'
+      })
+        .then(async () => {
+          await commodityListDelete({ shopGroupId: data.shopGroupId })
+          this.$message({ message: '删除成功!', type: 'success' })
+          this.getInfo(this.formData.shopGroupId)
+          this.$emit('success')
+        })
+    },
+    handleAddProduct(data, node) {
+      this.multipleSelection = []
+      this.selectedGroupId = data.shopGroupId
+      this.isShowManualAdd = true
+    },
+    clearData() {
+      this.listQuery = {
+        maxPrice: null, // 价格最大值
+        maxStock: null, // 库存数量最大值
+        minPrice: null, // 价格最小值
+        minStock: null, // 库存数量最小值
+        page: 1, // 当前页
+        pageSize: 10, // 每页记录数
+        search: '' // 搜索字段
+      }
+      this.getInfo(this.formData.shopGroupId)
+    },
+
+    handleSaveIdList() {
+      XeUtils.eachTree([ this.formData ], (item) => {
+        if (item.shopGroupId === this.selectedGroupId) {
+          if (this.multipleSelection.length) {
+            item.ids = this.multipleSelection.map((i) => i.productId)
+          } else {
+            item.ids = []
+          }
+        }
+      }, { children: 'childs' })
+      this.isShowManualAdd = false
+    },
+    // 保存提交
+    async handleSubmit() {
+      let isGroupNameEmpty = false
+      XeUtils.eachTree([ this.formData ], (item) => {
+        if (!item.groupName) isGroupNameEmpty = true
+      }, { children: 'childs' })
+      if (isGroupNameEmpty) return this.$message({ message: '分组名称不能为空', type: 'warning' })
+      this.formData.conditions = []
+      this.formData.condition = null
+      const loading = this.$loading({ text: '提交中,请稍候……' })
+      try {
+        const { ...otps } = this.formData
+        const params = {
+          ...otps
+        }
+        this.formData.shopGroupId ? await commodityListUpdate(params) : await commodityListAdd(params)
+        loading.close()
+        this.$message({ message: `${this.formData.shopGroupId ? '编辑' : '添加'}成功!`, type: 'success' })
+        this.$emit('success')
+        this.visible = false
+      } catch (e) {
+        loading.close()
+      } finally {
+        loading.close()
+      }
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.tree-container {
+	::v-deep .el-tree-node__content {
+		height: auto;
+	}
+
+	.filter-container {
+		.filter-item {
+			display: inline-block;
+			vertical-align: middle;
+			margin-bottom: 10px;
+		}
+	}
+}
+</style>

+ 0 - 15
src/views/commodity/commodityList/cpns/selectShop.vue

@@ -1,15 +0,0 @@
-<template>
-  <div class="container">
-
-  </div>
-</template>
-
-<script>
-export default {
-  name: 'SelectShop'
-}
-</script>
-
-<style lang="scss" scoped>
-
-</style>

+ 102 - 253
src/views/commodity/commodityList/index.vue

@@ -1,301 +1,150 @@
 <!-- 商品分组 -->
 <template>
-  <div>
-    <div class="pending">
-      <!-- 搜索 -->
-      <div class="formSearch">
-        <el-form :inline="true" :model="formInline" class="demo-form-inline">
-          <el-form-item label="分组名称">
-            <el-input v-model="formInline.search" maxlength="20" placeholder="请输入分组名称" />
-          </el-form-item>
-          <el-form-item>
-            <el-button type="primary" plain @click="search">查询</el-button>
-            <el-button type="primary" plain @click="addNewGroup">新增分组</el-button>
-            <!-- <span v-for="(item,index) in btnList" :key="index" class="promissStyle">
-              <el-button type="success" plain @click="btnClick(item)">{{ item.permissionName }}</el-button>
-              </span> -->
-          </el-form-item>
-        </el-form>
-      </div>
-      <!-- 表格 -->
-      <div class="tableBox">
-        <el-table
-          ref="multipleTable" :data="tableData" border
-          :header-cell-style="{ background: '#EEF3FF', color: '#333333' }" tooltip-effect="dark" style="width: 100%"
-        >
-          <el-table-column label="分组名称" width="300">
-            <template slot-scope="scope">{{ scope.row.groupName }}</template>
-          </el-table-column>
-          <el-table-column label="分组描述" width="300">
-            <template slot-scope="scope">{{ scope.row.groupDescribe }}</template>
-          </el-table-column>
-          <el-table-column label="商品数量" width="150">
-            <template slot-scope="scope">{{ scope.row.number }}</template>
-          </el-table-column>
-          <el-table-column prop="updateTime" label="修改时间" width="220" />
-          <el-table-column label="操作" show-overflow-tooltip>
-            <template slot-scope="scope">
-              <div class="btnList">
-                <el-button type="text" @click="edit(scope.row)">编辑</el-button>
-                <!--                <el-button type="text" @click="edit(scope.row)">详情</el-button> -->
-                <el-button type="text" @click="del(scope.row)">删除</el-button>
-              </div>
-            </template>
-          </el-table-column>
-        </el-table>
-        <div class="fenye">
-          <el-pagination
-            :current-page="formInline.page" :page-sizes="[10, 20, 50, 100]" :page-size="10"
-            layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="handleSizeChange"
-            @current-change="handleCurrentChange"
-          />
-        </div>
-      </div>
+  <div class="app-container">
+    <!-- 查询和其他操作 -->
+    <div class="filter-container">
+      <el-input
+        v-model="listQuery.search" clearable class="filter-item" size="mini"
+        style="width: 200px;" placeholder="请输入分组名称"
+      />
+      <el-button
+        size="mini" class="filter-item" type="primary" icon="el-icon-search"
+        style="margin-left:10px;"
+        @click="handleSearch"
+      >
+        查找
+      </el-button>
+      <br />
+      <el-button
+        size="mini" type="primary" icon="el-icon-plus"
+        @click="$refs.EditModal && $refs.EditModal.handleOpen({ shopGroupId: '' })"
+      >
+        添加
+      </el-button>
     </div>
-    <!-- 新建分组弹框 -->
-    <el-dialog
-      :close-on-click-modal="false" :title="title" :type="type" :visible.sync="isVisible"
-      width="45%" top="50px"
-      class="group-dialog"
-    >
-      <el-form :model="sizeForm">
-        <el-form-item label="分组封面" prop="fileLength" />
-        <div class="upload-wrap">
-          <el-upload
-            ref="upload" :headers="headers" :action="action" :on-success="handleImageSuccess"
-            list-type="picture-card" :limit="1" :file-list="imgList"
-          >
-            <i class="el-icon-plus" />
-          </el-upload>
-        </div>
 
-        <el-form-item label="分组名称">
-          <el-input v-model="params.groupName" maxlength="20" />
-        </el-form-item>
-        <el-form-item size="large" class="btn-wrap">
-          <el-button type="primary" @click="onSubmit">确定</el-button>
-          <el-button @click="isVisible = false">取消</el-button>
-        </el-form-item>
-      </el-form>
-    </el-dialog>
-    <!-- <el-dialog
-      :close-on-click-modal="false" title="分组管理" :visible.sync="commidyVisible"
-      center width="900px" :close-on-click-modal="false"
-      top="10vh" class="group-dialog"
-      > -->
-    <el-dialog title="分组管理" :visible.sync="commidyVisible" width="900px" center top="10vh" :close-on-click-modal="false">
-      <CommGroup :type="type" :group-options="tableData" :group-id="shopGroupId" @getAllData="getAll" @cancel="commidyVisible = false" @reload="search" />
-    </el-dialog>
+    <!-- 查询结果 -->
+    <div v-tableHeight>
+      <el-table
+        v-loading="listLoading" height="100%" element-loading-text="正在查询中。。。" :data="list"
+        v-bind="{ stripe: true, size: 'small', border: true, fit: true, highlightCurrentRow: true }"
+      >
+        <el-table-column align="center" width="220" label="分组名称" prop="groupName" fixed="left" show-overflow-tooltip />
+        <el-table-column align="center" width="220" label="分组描述" prop="groupDescribe" show-overflow-tooltip />
+        <el-table-column align="center" width="150" label="商品数量" prop="number" show-overflow-tooltip />
+        <el-table-column prop="updateTime" label="修改时间" width="220" />
+        <el-table-column align="center" label="操作" width="140" fixed="right" class-name="small-padding fixed-width">
+          <template slot-scope="{ row }">
+            <el-button size="mini" @click="handleEdit(row)">
+              编辑
+            </el-button>
+            <el-button type="danger" size="mini" @click="handleDelete(row)">
+              删除
+            </el-button>
+          </template>
+        </el-table-column>
+      </el-table>
+    </div>
+
+    <div>
+      <el-pagination
+        :current-page="listQuery.page" :page-sizes="[10, 20, 50, 100]" :page-size="listQuery.pageSize"
+        layout="total, sizes, prev, pager, next, jumper" :total="total"
+        @size-change="(val) => ((listQuery.pageSize = val) && getList())"
+        @current-change="(val) => ((listQuery.page = val) && getList())"
+      />
+    </div>
+
+    <!-- 新增编辑 -->
+    <EditModal ref="EditModal" @success="getList" />
   </div>
 </template>
 
 <script>
-import CommGroup from '@/views/commodity/commodityList/commodityGroup.vue'
+import EditModal from './components/EditModal'
 import {
   commodityListGetAll,
-  commodityListDelete,
-  commodityListUpdate,
-  commodityListAdd
+  commodityListDelete
 } from '@/api/commodity'
-import { getBtnList, getToken } from '@/utils/auth'
-import { uploadUrl } from '@/utils/request'
+
 export default {
-  // eslint-disable-next-line vue/match-component-file-name
-  name: 'Sorry404',
+  name: 'CommodityList',
   components: {
-    CommGroup
+    EditModal
   },
   data() {
-    // 这里存放数据
     return {
-      btnList: '',
-      activeName: 'first',
-      formInline: {
+      list: [],
+      total: 0,
+      listLoading: true,
+      listQuery: {
         search: '',
         page: 1,
         pageSize: 10
-      },
-      params: {
-        groupImage: '',
-        groupName: ''
-      },
-      total: 1,
-      tableData: [],
-      isVisible: false,
-      type: 'add',
-      sizeForm: {},
-      imgList: [],
-      commidyVisible: false,
-      shopGroupId: 0,
-      action: uploadUrl,
-      headers: {
-        'Authorization-business': getToken()
       }
     }
   },
-  // 监听属性 类似于data概念
-  computed: {
-    title() {
-      return this.type === 'add' ? '新建分组' : '查看分组'
-    }
-  },
-  // 监控data中的数据变化
-  watch: {},
-  // 生命周期 - 创建完成(可以访问当前this实例)
-  created() { },
-  // 生命周期 - 挂载完成(可以访问DOM元素)
   mounted() {
-    this.getAll(this.formInline)
-    this.btnList = getBtnList()
+    this.getList()
   },
-  // 方法集合
   methods: {
-    btnClick(id) {
-      console.log(id)
-      if (id.permissionName === '新增分组') {
-        this.add()
-      }
-    },
-    handleSizeChange(val) {
-      this.formInline.pageSize = val
-      this.getAll(this.formInline)
-    },
-    handleCurrentChange(val) {
-      this.formInline.page = val
-      this.getAll(this.formInline)
-    },
-    handleImageSuccess(response) {
-      const url = response.data.url
-      this.params.groupImage = url
-    },
-    //  查询
-    search() {
-      this.total = 1
-      this.formInline.page = 1
-      this.getAll(this.formInline)
-    },
-    // 新建分组
-    add() {
-      this.type = 'add'
-      this.isVisible = true
-      this.params = {
-        groupImage: '',
-        groupName: ''
-      }
-      this.$refs.upload.clearFiles()
-    },
-    // 编辑分组
-    edit(row) {
-      this.type = 'edit'
-      this.commidyVisible = true
-      this.shopGroupId = row.shopGroupId
-    },
-    async onSubmit() {
-      if (this.type === 'add') {
-        this.addGroup()
-      } else {
-        this.updateGroup()
+    async getList() {
+      this.listLoading = true
+      try {
+        const res = await commodityListGetAll(this.listQuery)
+        this.list = res.data.list
+        this.total = res.data.total
+      } finally {
+        this.listLoading = false
       }
     },
-    async addGroup() {
-      if (this.params.groupName === '') {
-        this.$message.error('请输入分组名称')
-        return
-      }
-      const res = await commodityListAdd(this.params)
-      if (res.code === '') {
-        this.isVisible = false
-        this.$message({
-          message: '新增成功',
-          type: 'success'
-        })
-        this.getAll(this.formInline)
-      }
+    handleSearch() {
+      this.listQuery.page = 1
+      this.getList()
     },
-    async updateGroup() {
-      const res = await commodityListUpdate(this.params)
-      if (res.code === '') {
-        this.isVisible = false
-        this.$message({
-          message: '修改成功',
-          type: 'success'
-        })
-        this.getAll(this.formInline)
-      }
+    handleEdit(row) {
+      this.$refs.EditModal && this.$refs.EditModal.handleOpen(row)
     },
-    // 删除分组
-    del(row) {
+    handleDelete(row) {
       this.$confirm('选中数据将被永久删除, 是否继续?', '提示', {
         confirmButtonText: '确定',
         cancelButtonText: '取消',
         type: 'warning'
       })
-        .then(() => {
-          commodityListDelete({ shopGroupId: row.shopGroupId }).then((res) => {
-            if (res.code === '') {
-              this.$message({
-                type: 'success',
-                message: '删除成功!'
-              })
-              this.getAll(this.formInline)
-            }
-          })
+        .then(async () => {
+          await commodityListDelete({ shopGroupId: row.shopGroupId })
+          this.$message({ message: '删除成功!', type: 'success' })
+          this.getList()
         })
-        .catch(() => { })
-    },
-    // 初始化查询所有数据
-    async getAll(formInline) {
-      let res
-      if (formInline) {
-        res = await commodityListGetAll(formInline)
-      } else {
-        res = await commodityListGetAll(this.formInline)
-      }
-      this.total = res.data.total
-      this.tableData = res.data.list
-    },
-    // 1.4
-    // 新增分组
-    addNewGroup() {
-      this.type = 'add'
-      this.shopGroupId = 0
-      this.commidyVisible = true
     }
   }
 }
 </script>
 
 <style lang='scss' scoped>
-//@import url(); 引入公共css类
-@import url("../../../styles/elDialog.scss");
-
-.pending {
-	padding: 30px;
-}
+.app-container {
+	padding: 20px;
+	display: flex;
+	flex-direction: column;
 
-.group-dialog {
-	.btn-wrap {
-		text-align: center;
+	.filter-container {
+		.filter-item {
+			display: inline-block;
+			vertical-align: middle;
+			margin-bottom: 10px;
+		}
 	}
 
-	.upload-wrap {
-		width: 100%;
-		display: flex;
-		align-items: flex-end;
-
-		.image-wrap {
-			width: 120px;
-			height: 120px;
-			line-height: 120px;
-			margin-right: 15px;
-			margin-bottom: 15px;
-			text-align: center;
-			border: 1px dashed #d9d9d9;
+	.small-padding {
+		.cell {
+			padding-left: 5px;
+			padding-right: 5px;
+		}
+	}
 
-			img {
-				width: 100%;
-				height: 100%;
-			}
+	.fixed-width {
+		.el-button--mini {
+			padding: 7px 10px;
 		}
 	}
 }

+ 2 - 2
src/views/selectionCenter/distributionPricingPlan/index.vue

@@ -3,8 +3,8 @@
     <!-- 查询和其他操作 -->
     <div class="filter-container">
       <el-input
-        v-model="listQuery.programmeName" clearable class="filter-item" style="width: 200px;"
-        placeholder="请输入定价方案名称"
+        v-model="listQuery.programmeName" clearable size="mini" class="filter-item"
+        style="width: 200px;" placeholder="请输入定价方案名称"
       />
       <el-button
         size="mini" class="filter-item" type="primary" icon="el-icon-search"

+ 1 - 1
src/views/selectionCenter/productSelectionList/components/DetailModal.vue

@@ -1,7 +1,7 @@
 <template>
   <el-dialog :visible.sync="visible" v-bind="modalOptions" append-to-body>
     <el-form ref="formData" :model="formData" size="mini" label-position="left" label-suffix=":" label-width="200px">
-      <!-- 定时任务信息 -->
+      <!-- 选品信息 -->
       <el-form-item label="ID" prop="productId">
         {{ formData.productId || '--' }}
       </el-form-item>