yangfeng
2023-11-13 6bd1ee13ebaf95d00009412d9b5b7f64dee1616a
补货页面线上新建不显示问题及库存报表搜索功能优化
2个文件已修改
15 ■■■■■ 已修改文件
src/views/operate/orderPoint/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/reportForm/inventoryReport/index.vue 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/operate/orderPoint/index.vue
@@ -241,6 +241,7 @@
          editable: false,
          isOrder: true
        })
        this.tableList.tableData = this.tableData
        this.locationId = 0
        this.productId = 0
      } else {
src/views/reportForm/inventoryReport/index.vue
@@ -52,8 +52,7 @@
                    <i class="el-icon-refresh-left"></i>
                    <span>历史</span>
                  </span>
                  <span @click="handleAddGoods(scope.row)" class="margin_left_5px;" style="cursor:pointer;"
                  >
                  <span @click="handleAddGoods(scope.row)" class="margin_left_5px;" style="cursor: pointer">
                    <i class="el-icon-refresh"></i>
                    <span>补货</span>
                  </span>
@@ -149,7 +148,7 @@
      pageSizes: [15, 30],
      oldRadioBtn: "",
      metaTitle: this.$route.meta.title,
      searchStr: this.$route.params.name ?? ''
      searchStr: this.$route.params.name ?? ""
    }
  },
  created() {
@@ -285,11 +284,7 @@
    },
    getList(val) {
      this.searchStr = val
      this.getInventoryData({
        page: 1,
        pageSize: this.pagerOptions.pageSize,
        keyWord: val
      })
      this.getData()
    },
    // 行点击
    tableRowClick(row) {
@@ -327,7 +322,7 @@
      this.$router.push({
        name: "orderPoint",
        params: {
          productId:row.produceId,
          productId: row.produceId
        }
      })
    },
@@ -448,5 +443,4 @@
    white-space: pre-wrap !important;
  }
}
</style>