saber 打开新标签页面

Saber 未结 2 2735
lunli
lunli 剑者 2019-06-13 16:13

WX20190613-152217.png

点击这张图片 ,怎么设置才能跳转到左侧菜单的订单列表页面


WX20190613-161337.png

2条回答
  • 参考《我的事务》列表模块的跳转按钮事件

    0 讨论(0)
  • 2019-06-13 18:24
    {
      title: this.$t("wel.data4.column1"),
      count: this.data4[0],
      icon: "el-icon-warning",
      color: "rgb(49, 180, 141)",
      click:this.handleOrder
    },
    methods: {
      handleOrder() {
        this.$router.push({path: `/orders/orders`});
      }
    }

    这样就行啦

    0 讨论(0)
提交回复