|
@@ -16,8 +16,8 @@
|
|
|
<el-option label="无库存" :value="0" />
|
|
|
</el-select>
|
|
|
<el-cascader
|
|
|
- v-model="listQuery.classifyId" placeholder="请选择商品类型" :options="categoryList"
|
|
|
- :props="{ checkStrictly: true, expandTrigger: 'hover', label: 'categoryName', value: 'id', children: 'childs' }"
|
|
|
+ v-model="listQuery.groupId" placeholder="请选择分组类型" :options="groupList"
|
|
|
+ :props="{ checkStrictly: true, expandTrigger: 'hover', label: 'groupName', value: 'shopGroupId', children: 'childs' }"
|
|
|
clearable size="mini" class="filter-item" style="width: 200px;margin-left: 10px;"
|
|
|
/>
|
|
|
<el-button
|
|
@@ -117,10 +117,11 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import { getShopId } from '@/utils/auth'
|
|
|
import PlatformSelection from './components/PlatformSelection'
|
|
|
import DetailModal from './components/DetailModal'
|
|
|
import { shopSelectionGetLibrary } from '@/api/selectionCenter/selectionCenter'
|
|
|
-import { getBrandList, getClassify } from '@/api/commodity'
|
|
|
+import { getBrandList, getGroupSelect } from '@/api/commodity'
|
|
|
import XeUtils from 'xe-utils'
|
|
|
|
|
|
export default {
|
|
@@ -138,15 +139,15 @@ export default {
|
|
|
page: 1,
|
|
|
pageSize: 20,
|
|
|
search: '',
|
|
|
- classifyId: [],
|
|
|
+ groupId: [],
|
|
|
stock: ''
|
|
|
},
|
|
|
- categoryList: [] // 商品类目-树结构
|
|
|
+ groupList: []
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
this.getList()
|
|
|
- this.getCategoryTreeList()
|
|
|
+ this.getGroupDataList()
|
|
|
},
|
|
|
methods: {
|
|
|
async getList() {
|
|
@@ -154,7 +155,7 @@ export default {
|
|
|
try {
|
|
|
const res = await shopSelectionGetLibrary({
|
|
|
...this.listQuery,
|
|
|
- classifyId: Array.isArray(this.listQuery.classifyId) && this.listQuery.classifyId.length ? this.listQuery.classifyId[this.listQuery.classifyId.length - 1] : ''
|
|
|
+ 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) => {
|
|
@@ -173,14 +174,14 @@ export default {
|
|
|
handleDetail(row) {
|
|
|
this.$refs.DetailModal && this.$refs.DetailModal.handleOpen(row)
|
|
|
},
|
|
|
- async getCategoryTreeList() {
|
|
|
- const res = await getClassify({})
|
|
|
- XeUtils.eachTree(res.data, (item) => {
|
|
|
+ async getGroupDataList() {
|
|
|
+ const result = await getGroupSelect({ shopId: getShopId() })
|
|
|
+ XeUtils.eachTree(result.data, (item) => {
|
|
|
if (Array.isArray(item.childs) && item.childs.length === 0) {
|
|
|
item.childs = undefined
|
|
|
}
|
|
|
}, { children: 'childs' })
|
|
|
- this.categoryList = res.data
|
|
|
+ this.groupList = result.data
|
|
|
}
|
|
|
}
|
|
|
}
|