|
@@ -1112,13 +1112,14 @@ export default {
|
|
|
this.$forceUpdate()
|
|
|
} else {
|
|
|
allBrand().then((res) => {
|
|
|
- res.data.push({
|
|
|
+ // res.data.push()
|
|
|
+ let list = [{
|
|
|
id: '0',
|
|
|
name: '无'
|
|
|
- })
|
|
|
+ }, ...res.data]
|
|
|
this.defaultList.brand = ''
|
|
|
- this.defaultList.clothBrands = res.data
|
|
|
- this.clothBrands = res.data
|
|
|
+ this.defaultList.clothBrands = list
|
|
|
+ this.clothBrands = list
|
|
|
this.addClothActiveTab = 3
|
|
|
})
|
|
|
}
|