Browse Source

2024.04.03
- 修复分页器bug
- 修复级联器传参bug

zweiqin 1 year ago
parent
commit
4d6dfaa357

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

@@ -81,7 +81,7 @@
 
     <div>
       <el-pagination
-        :current-page="listQuery.page" :page-sizes="[10, 20, 50, 100]" :page-size="10"
+        :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())"

+ 5 - 2
src/views/selectionCenter/productSelectionList/components/PlatformSelection.vue

@@ -99,7 +99,7 @@
 
       <div>
         <el-pagination
-          :current-page="listQuery.page" :page-sizes="[10, 20, 50, 100]" :page-size="10"
+          :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())"
@@ -154,7 +154,10 @@ export default {
     async getList() {
       this.listLoading = true
       try {
-        const res = await shopSelectionGetPlatformLibrary(this.listQuery)
+        const res = await shopSelectionGetPlatformLibrary({
+          ...this.listQuery,
+          groupId: Array.isArray(this.listQuery.groupId) && this.listQuery.groupId.length ? this.listQuery.groupId[this.listQuery.groupId.length - 1] : ''
+        })
         const { data: brandList } = await getBrandList()
         this.list = res.data.list.map((item) => {
           item.brandName = (brandList.find((section) => section.id === item.brandId) || { brandName: '' }).brandName

+ 6 - 3
src/views/selectionCenter/productSelectionList/index.vue

@@ -102,7 +102,7 @@
 
     <div>
       <el-pagination
-        :current-page="listQuery.page" :page-sizes="[10, 20, 50, 100]" :page-size="10"
+        :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())"
@@ -137,7 +137,7 @@ export default {
         page: 1,
         pageSize: 20,
         search: '',
-        classifyId: '',
+        classifyId: [],
         stock: ''
       },
       categoryList: [] // 商品类目-树结构
@@ -151,7 +151,10 @@ export default {
     async getList() {
       this.listLoading = true
       try {
-        const res = await shopSelectionGetLibrary(this.listQuery)
+        const res = await shopSelectionGetLibrary({
+          ...this.listQuery,
+          classifyId: Array.isArray(this.listQuery.classifyId) && this.listQuery.classifyId.length ? this.listQuery.classifyId[this.listQuery.classifyId.length - 1] : ''
+        })
         const { data: brandList } = await getBrandList()
         this.list = res.data.list.map((item) => {
           item.brandName = (brandList.find((section) => section.id === item.brandId) || { brandName: '' }).brandName