yangfeng
2023-09-15 b823a11d74b6623fadcfab27150cdbb0ad9766f5
src/views/overview/index.vue
@@ -17,7 +17,7 @@
        >
          <div class="top">
            <div class="label">
              <span style="cursor: pointer" @click="labelClick(item.name)">{{ item.name }}</span>
              <span style="cursor: pointer" @click="labelClick(item)">{{ item.name }}</span>
            </div>
            <div class="set">...</div>
          </div>
@@ -60,31 +60,38 @@
      tableList: [
        {
          name: "采购入库",
          status: "active"
          status: "active",
          workType: "收货"
        },
        {
          name: "内部调拨",
          status: "done"
          status: "done",
          workType: "内部调拨"
        },
        {
          name: "3",
          status: "done"
          name: "订单发货出库",
          status: "done",
          workType: "发货"
        },
        {
          name: "2",
          status: "active"
          status: "active",
          workType: "收货"
        },
        {
          name: "3",
          status: "todo"
          status: "todo",
          workType: "收货"
        },
        {
          name: "2",
          status: "active"
          status: "active",
          workType: "收货"
        },
        {
          name: "3",
          status: "todo"
          status: "todo",
          workType: "收货"
        }
      ],
      editConfig: {
@@ -99,8 +106,8 @@
    getList(val) {
      console.log(val)
    },
    labelClick(name) {
      this.$router.push({ path: "/overview/overviewList", query: { name: name } })
    labelClick(item) {
      this.$router.push({ path: "/overview/overviewList", query: { name: item.name, workType: item.workType } })
    },
    getData() {}
  }