智慧农业后台管理页面
guoshilong
2022-08-04 ff0fead1e49efbd80cc5a8cc5d80a000bf509aa1
修复农资库存选择框问题
1 files modified
9 ■■■■■ changed files
src/views/stock/stockmanage.vue 9 ●●●●● patch | view | raw | blame | history
src/views/stock/stockmanage.vue
@@ -185,7 +185,7 @@
  data() {
    return {
      formInline: {
        stype: "0",
        stype: "",
        state: "0",
        keyword: "",
      },
@@ -964,9 +964,10 @@
    onLoad(page, params = {}) {
      this.loading = true;
      var datas = this.$route.query.sid;
      var type = this.$route.query.type;
      // var type = this.$route.query.type;
      // var type = this.$route.query.type;
      params.sid=datas;
      params.stype=type;
      // params.stype=type;
      getList(
        page.currentPage,
        page.pageSize,
@@ -976,7 +977,7 @@
        this.page.total = data.total;
        this.data = data.records;
        this.loading = false;
        this.selectionClear();
        // this.selectionClear();
      });
    }
    ,