提交 1a03d956 编写于 作者: chendeli's avatar chendeli

导入一级二级三级分类为-1展示

上级 6ede6120
...@@ -689,6 +689,7 @@ ...@@ -689,6 +689,7 @@
this.fileIntrList = this.getImges(goodsList[0].medicImgList,2) this.fileIntrList = this.getImges(goodsList[0].medicImgList,2)
this.isMedic = this.formData.goodsType == 5 ? true : false this.isMedic = this.formData.goodsType == 5 ? true : false
this.formData.stock = this.formData.goodsStock this.formData.stock = this.formData.goodsStock
this.formData.otc1 = this.formData.oct ? '1' : '0'
if(this.isMedic){ if(this.isMedic){
this.getLever(5,2,1) this.getLever(5,2,1)
} }
...@@ -775,7 +776,9 @@ ...@@ -775,7 +776,9 @@
this.twoLever = res.data || this.defaultArr() this.twoLever = res.data || this.defaultArr()
}else if(type == 3){ }else if(type == 3){
this.threeLever = res.data.length > 0 ? res.data : this.defaultArr() // res.data = res.data.push({categoryName: "其他",id:-1})
res.data = res.data.length > 0 ? res.data.concat([{categoryName: "其他",id:-1}]) : this.defaultArr()
this.threeLever = res.data
if(!parm){ if(!parm){
this.formData.categoryIdLevel3 = '' this.formData.categoryIdLevel3 = ''
this.formData.categoryIdLevel4 = '' this.formData.categoryIdLevel4 = ''
...@@ -783,14 +786,15 @@ ...@@ -783,14 +786,15 @@
} }
}else if(type == 4){ }else if(type == 4){
res.data = res.data.length > 0 ? res.data.concat([{categoryName: "其他",id:-1}]) : this.defaultArr()
this.fourLever = res.data.length > 0 ? res.data : this.defaultArr() this.fourLever = res.data
if(!parm){ if(!parm){
this.formData.categoryIdLevel4 = '' this.formData.categoryIdLevel4 = ''
this.formData.categoryIdLevel5 = '' this.formData.categoryIdLevel5 = ''
} }
}else if(type == 5){ }else if(type == 5){
this.fiveLever = res.data.length > 0 ? res.data : this.defaultArr() res.data = res.data.length > 0 ? res.data.concat([{categoryName: "其他",id:-1}]) : this.defaultArr()
this.fiveLever = res.data
} }
}); });
}, },
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册