分类树

This commit is contained in:
1154079537 2024-05-23 15:53:34 +08:00
parent bada6ede69
commit 43e122c34e
2 changed files with 25 additions and 7 deletions

View File

@ -10,7 +10,10 @@
import { dataURItoBlob } from 'dropzone' import { dataURItoBlob } from 'dropzone'
import request from './request' import request from './request'
// 查询商品分类
export function proCategoryListApi(data) {
return request.get('store/category/list', data)
}
// 导出商品数据 // 导出商品数据
export function outportApi(data) { export function outportApi(data) {

View File

@ -13,8 +13,10 @@
:data="tableData.data" :data="tableData.data"
size="small" size="small"
row-key="store_category_id" row-key="store_category_id"
:lazy="true"
:load="load"
:default-expand-all="false" :default-expand-all="false"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}" :tree-props="{children: 'children', hasChildren: 'child'}"
> >
<el-table-column <el-table-column
label="分类名称" label="分类名称"
@ -100,7 +102,7 @@
// +---------------------------------------------------------------------- // +----------------------------------------------------------------------
import { import {
storeCategoryListApi, storeCategoryCreateApi, storeCategoryUpdateApi, storeCategoryDeleteApi, storeCategoryListApi, storeCategoryCreateApi, storeCategoryUpdateApi, storeCategoryDeleteApi,
storeCategoryStatusApi, storeCategoryRecommendApi storeCategoryStatusApi, storeCategoryRecommendApi, proCategoryListApi
} from '@/api/product' } from '@/api/product'
export default { export default {
name: 'ProductClassify', name: 'ProductClassify',
@ -126,10 +128,15 @@ export default {
// //
getList() { getList() {
this.listLoading = true this.listLoading = true
storeCategoryListApi(this.tableFrom).then(res => { proCategoryListApi(this.tableFrom).then(res => {
this.tableData.data = res.data // res.data.map(i=>{
// this.$set(i,'children',[]);
// this.$set(i,'hasChildren',true);
// })
this.tableData.data = res.data;
this.tableData.total = res.data.count this.tableData.total = res.data.count
this.listLoading = false this.listLoading = false
this.$forceUpdate();
}).catch(res => { }).catch(res => {
this.listLoading = false this.listLoading = false
this.$message.error(res.message) this.$message.error(res.message)
@ -143,6 +150,14 @@ export default {
this.tableData.limit = val this.tableData.limit = val
this.getList() this.getList()
}, },
load(tree,treeNode,resolve){
console.log(tree.store_category_id)
// console.log(treeNode)
proCategoryListApi({category_id:tree.store_category_id}).then(res=>{
console.log(res.data)
resolve(res.data)
})
},
// //
onAdd() { onAdd() {
this.$modalForm(storeCategoryCreateApi()).then(() => this.getList()) this.$modalForm(storeCategoryCreateApi()).then(() => this.getList())