yangfeng
2023-09-28 0016e76c99d7f0d6355a22f2ecbc102823225633
src/views/reportForm/locationReport/index.vue
@@ -106,7 +106,8 @@
        infomation: {}
      },
      productId: this.$route.params.id,
      productName: this.$route.params.name
      productName: this.$route.params.name,
      metaTitle: this.$route.meta.title
    }
  },
  created() {
@@ -202,7 +203,6 @@
        pageSize: this.pagerOptions.pageSize
      }).then((res) => {
        if (res.code === 200) {
          console.log(res.data, "接口请求成功")
          const list = res.data
          this.tableList.tableInfomation = list || []
          this.pagerOptions.totalCount = res.total
@@ -232,7 +232,15 @@
      return val === 1 ? "草稿" : val === 3 ? "就绪" : "完成"
    },
    // 历史
    handleHistoryClick() {},
    handleHistoryClick(row) {
      this.$router.push({
        name: "inboundOutboundDetail",
        params: {
          id: row.produceId,
          name: "报表"
        }
      })
    },
    // 补货
    handleAddGoods() {}
  }