|
@@ -628,26 +628,28 @@ export default {
|
|
|
},
|
|
|
//变动查询
|
|
|
async goodsSearch() {
|
|
|
- let obj = this.parmValue;
|
|
|
- const model = {
|
|
|
- is_stock: obj.is_stock,
|
|
|
- min_price: obj.min_price,
|
|
|
- max_price: obj.max_price,
|
|
|
- moq: obj.moq,
|
|
|
- page: obj.page,
|
|
|
- size: obj.size,
|
|
|
- };
|
|
|
- const res = await asyncRequest.getgoodlistbyladder(model);
|
|
|
- if (res && res.code === 0) {
|
|
|
- this.loading = false;
|
|
|
- await this.searchList();
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
- } else {
|
|
|
- this.loading = false;
|
|
|
- this.$message.warning(res.message);
|
|
|
+ if (
|
|
|
+ (this.parmValue.min_price !== "" && this.parmValue.max_price === "") ||
|
|
|
+ (this.parmValue.min_price === "" && this.parmValue.max_price !== "")
|
|
|
+ ) {
|
|
|
+ this.$message.warning("价格区间不完整!");
|
|
|
+ return;
|
|
|
}
|
|
|
- console.log(res);
|
|
|
+ this.pageInfo.curr = 1;
|
|
|
+ this.parmValue.page = 1;
|
|
|
+ await this.searchList();
|
|
|
+ // const res = await asyncRequest.list(model);
|
|
|
+
|
|
|
+ // if (res && res.code === 0) {
|
|
|
+ // this.loading = false;
|
|
|
+ // await this.searchList();
|
|
|
+ // } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
+ // await this.logout();
|
|
|
+ // } else {
|
|
|
+ // this.loading = false;
|
|
|
+ // this.$message.warning(res.message);
|
|
|
+ // }
|
|
|
+ // console.log(res);
|
|
|
},
|
|
|
},
|
|
|
};
|