|
@@ -258,9 +258,6 @@ export default {
|
|
|
this.$store.dispatch("optiontypeselect", "itemmaterial").then((res) => {
|
|
|
this.options.itemmaterials = res.data;
|
|
|
});
|
|
|
- this.querySa_brandid !== ""
|
|
|
- ? (this.sa_brandid = this.querySa_brandid)
|
|
|
- : (this.sa_brandid = "");
|
|
|
this.queryBrands();
|
|
|
this.queryClass();
|
|
|
this.listData((this.params.content.pageNumber = 1));
|
|
@@ -308,7 +305,10 @@ export default {
|
|
|
});
|
|
|
this.options.brands = res.data;
|
|
|
console.log("获取品牌", res.data);
|
|
|
- this.sa_brandid = res.data[0].sa_brandid;
|
|
|
+ // this.sa_brandid = res.data[0].sa_brandid;
|
|
|
+ this.querySa_brandid !== "" && this.querySa_brandid !== 0
|
|
|
+ ? (this.sa_brandid = this.querySa_brandid)
|
|
|
+ : (this.sa_brandid = res.data[0].sa_brandid);
|
|
|
this.queryClass();
|
|
|
},
|
|
|
brandChange() {
|