与小蜗牛一起成长
导出列表
按钮
<el-button type="primary" @click="handImport" :disabled="isexport">
<i class="iconfont icondaoru"></i>导出
</el-button>
引入地址
import {baseUrl} from '@/utils/env.js';
导出
handImport() {
window.location.href = baseUrl + '接口?access_token=' + this.$store.getters.token + '&unid=' + this.baseUnid},
小小发现
self.location.href="/url" 当前页面打开URL页面
location.href="/url" 当前页面打开URL页面
windows.location.href="/url" 当前页面打开URL页面,前面三个用法相同。
this.location.href="/url" 当前页面打开URL页面
parent.location.href="/url" 在父页面打开新页面
top.location.href="/url" 在顶层页面打开新页面
window.history.back(-1):直接返回当前页的上一页,数据全部消息,是个新页面
window.history.go(-1):也是返回当前页的上一页,不过表单里的数据全部还在
来源:CSDN
作者:奔跑的小蜗牛。
链接:https://blog.csdn.net/weixin_43826136/article/details/103859275