分类树
This commit is contained in:
parent
bada6ede69
commit
43e122c34e
@ -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) {
|
||||||
|
@ -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())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user