
vue
Fayneヾ
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
批量下载附件
批量下载附件 <el-button type="primary" @click="downLoadFileList(scope.row)">下载</el-button> // 下载附件 downLoadFileList(record) { const jsonUrlList = record.fileUrlList // 循环遍历调用downloadFile方法 for (let i = 0; i < jsonUrlList.len原创 2021-03-22 14:22:37 · 360 阅读 · 0 评论 -
vue 循环 时间戳转换成日期
js中 filters: { time: function time(value) { var d = new Date(parseInt(value) * 1000); return (d.getFullYear()) + '-' + (d.getMonth() + 1 &gt; 9 ? d.getMonth() + 1 : '0' + (d.getMonth() + 1)) +...原创 2018-09-27 16:45:29 · 2808 阅读 · 2 评论 -
页面加载时 滚动条始终置于页面底部
1。 jquery $(function() { $('section').scrollTop( $('section')[0].scrollHeight); }); 2。Vue updated: function updated() { this.$nextTick(function() { var div = document.getElementById('section')...原创 2018-09-28 11:47:17 · 2557 阅读 · 2 评论 -
Vue滚动到底部自动加载
mounted: function mounted() { $("#S_content").scroll(function() { var scrollHeight = $("#S_content").scrollTop(); // 滚动高度 var rHeight = $("#S_content").get(0).scrollHeight; // 内容高度 var see...原创 2018-10-15 10:24:07 · 5112 阅读 · 1 评论 -
vue 请求拦截器
1.安装 axios , 命令: npm install axios --save-dev 2.在utils文件夹下request.js中添加如下代码(以token过期,跳转至登录页为例) import axios from 'axios' import { Toast } from 'mint-ui' import router from '../router' const service...原创 2019-04-24 16:50:58 · 629 阅读 · 0 评论 -
vue 路由判断是否登录,未登录跳转到登录页
一进入网页,首先判断有没有登录,没有登录则跳转到登录页 在router文件夹下index.js(路由文件)中,做如下修改(在需要判断的路由里添加 meta: { requireAuth: true // 判断是否需要登录 }) 在main.js 同级新建一个文件 permission.js 在permission.js 中: import router from './router...原创 2019-04-24 17:04:53 · 6724 阅读 · 0 评论