haoxuan
2023-09-21 c87a6f7310ca992d7f058a8f286b095c9a632c90
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,43 @@
      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: "收货"
        },
        {
          name: "4444444",
          status: "todo",
          workType: "发货"
        }
      ],
      editConfig: {
@@ -99,8 +111,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() {}
  }