Browse Source

二级分类

master
luyisha 3 years ago
parent
commit
0dc955bb70
  1. 7
      src/components/page/classification/Category.vue

7
src/components/page/classification/Category.vue

@ -266,7 +266,12 @@ export default {
getSon(data).then(res=>{
if(res.code==200){
this.twoList=res.data
for(let i=0;i<res.data.length;i++){
if(res.data[i]==''){
res.data.splice(i, 1);
}
}
this.twoList=res.data;
}else{
this.$message.error(res.msg);
}

Loading…
Cancel
Save