zoukankan      html  css  js  c++  java
  • vue2 如何通过router传递参数

    当需要router-link传递参数的时候 vue2 如何做 记录下来备忘

    1、通过vue页面传递参数

    <router-link :to="{ path:'./attachment',query:{order_id: task.ORDERID}}"><mt-button type="primary" size="small">查看附件</mt-button></router-link>

    2、通过方法传递参数

    methods: {
              society() {
                //console.log('society');
                this.$router.push({
                    name:'society',
                    query:{value:1}
                })
              },

    3、接值

    methods:{
                loadData:function(){
                    this.id = this.$route.query.order_id;
                    axios.get("http://testqywx.origimed.com:18082/weixin-qy/order/Order/userOrderFilesList.json?usercode=sysadmin&orderId="+this.id)
                        .then(response=>this.tasks=response.data.reason);
                }
            },

  • 相关阅读:
    子数组的最大乘积
    重建二叉树
    只考加法的面试题
    找出发帖的水王问题
    寻找最近点对
    寻找最大的k个数问题
    寻找数组中 的最大值最小值
    数组中的最长递增子序列
    常用的百度API地图操作
    div 背景自适应
  • 原文地址:https://www.cnblogs.com/junwu/p/7124853.html
Copyright © 2011-2022 走看看