摘要: router.beforeEach((to, from, next) => { const nextRoute = [ 'login']; var token = window.localStorage.token; if(token > 0 ){ next(); }else{ // next({ 阅读全文
posted @ 2019-04-11 16:47 javahcke 阅读(175) 评论(0) 推荐(0) 编辑
摘要: path星号表示没有这个路由 name表示去这个地址 component这个页面引入的时候叫的名字 阅读全文
posted @ 2019-04-02 15:34 javahcke 阅读(578) 评论(0) 推荐(0) 编辑
摘要: $('#animatedClose').removeClass().addClass('fadeInDownBig animated').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend 阅读全文
posted @ 2019-03-21 11:07 javahcke 阅读(159) 评论(0) 推荐(0) 编辑
摘要: this.data //Thu Nov 22 2018 10:49:36 GMT+0800 this.date_of_birth = date.getFullYear() + '-' + (date.getMonth() + 1) + '-' + date.getDate() + ' ' + dat 阅读全文
posted @ 2018-11-22 11:07 javahcke 阅读(963) 评论(0) 推荐(0) 编辑
摘要: < img src="images/logo.png" onerror="javascript:this.src='images/logoError.png';"> 阅读全文
posted @ 2018-10-31 19:21 javahcke 阅读(212) 评论(0) 推荐(0) 编辑
摘要: this.$router.back(-1); 阅读全文
posted @ 2018-10-31 19:19 javahcke 阅读(203) 评论(0) 推荐(0) 编辑
摘要: <div @touchmove.prevent></div> <div @touchmove.prevent></div> @touchmove.prevent //加到标签上禁止滚动 阅读全文
posted @ 2018-10-16 11:31 javahcke 阅读(374) 评论(0) 推荐(0) 编辑
摘要: onclick ="javascript:window.location.href ='details.html'" //加在任意标签上页面跳转 阅读全文
posted @ 2018-07-05 09:51 javahcke 阅读(168) 评论(0) 推荐(0) 编辑
摘要: this.$route.query.gid //gid是获取指定参数的名字 阅读全文
posted @ 2018-06-29 11:19 javahcke 阅读(1434) 评论(0) 推荐(0) 编辑
摘要: data(){ return{ crux:[] //声明下变量 } }, mounted:function(){ var cruxs = localStorage.historyItems.split(","); this.crux = cruxs; //把需要绑定的变量,赋值给data... 阅读全文
posted @ 2018-06-12 17:46 javahcke 阅读(5414) 评论(0) 推荐(0) 编辑