瀏覽代碼

库存统计 区间统计 仓库无法选中问题修改,库存统计 区间统计 列表展示问题修改 ,库存管理>商品查询 前端添加查询事件 前台处理完毕

lucky 2 年之前
父節點
當前提交
a281fb15eb

+ 21 - 19
src/views/stock/goodsRepertory/index.vue

@@ -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);
     },
   },
 };

+ 1 - 1
src/views/stock/stockCount/components/spaceCount/columns.js

@@ -58,7 +58,7 @@ export default [
   },
   {
     prop: "brand_name",
-    label: "分类",
+    label: "品牌",
     width: "85",
   },
 

+ 2 - 2
src/views/stock/stockCount/components/spaceCount/index.vue

@@ -200,8 +200,8 @@ export default {
       const { code } = e;
       this.parmValue.stock_code = code ? [code] : [];
       this.stock_code = code || "";
-      this.parmValue.stock_code = [];
-      this.stock_code = "";
+      // this.parmValue.stock_code = [];
+      // this.stock_code = "";
       this.parmValue.page = 1;
       this.pageInfo.curr = 1;
       await this.searchList();