码迷,mamicode.com
首页 > Web开发 > 详细

html一个页面链接携带参数跳转另一个页面基于vue2.0的element框架

时间:2019-12-23 00:38:41      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:button   size   htm   ids   链接   type   prim   split   OLE   

来给生活比个耶!

1.按钮

   <el-button @click="albumList(scope.row.id)" size="mini" type="primary" size="small">相册列表</el-button>

2.js函数

   albumList (id){
                location.href=`album_list.html?id=`+id /*跳转页面传递id值*/
            },

3.钩子函数 加载截取参数id

   created(){
            var Ohref=window.location.href;
            var ids=Ohref.split("?id=");
            var id1 = ids[1];
            this.edit1(id1);
            console.log(id1+‘接收参数id‘);
            this.fetchData();
        },

html一个页面链接携带参数跳转另一个页面基于vue2.0的element框架

标签:button   size   htm   ids   链接   type   prim   split   OLE   

原文地址:https://www.cnblogs.com/july7/p/12081641.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!