摘要:
新开的窗口 created () { // 监听页面关闭 window.onbeforeunload = this.beforeDestroyFn; }, methods: { beforeDestroyFn () { console.log('shaqk') window.opener.postM 阅读全文
摘要:
<van-field clickable name="XXXX" is-link readonly :value="statusValue" placeholder="请选择是否油库" @click="showStatusFn" :rules="[{ required: true, message: 阅读全文
摘要:
downloadFile(url, "电子作业票APP.jpg"); // fileRealPath 文件全路径 // fileName 文件名带格式的 export function downloadFile(fileRealPath, fileName) { let link = documen 阅读全文
摘要:
调用 this.$download.url('/api/v1/org/question/exportData', datVal, `${this.questMess.name}.xlsx`); js文件 import { saveAs } from 'file-saver' import axios 阅读全文
摘要:
import axios from 'axios' import { getToken } from '@/utils/util' // 文件流转blob对象下载 var baseURL = '' if (process.env.NODE_ENV == 'production') { baseURL 阅读全文
摘要:
1.通用组件封装dialogImg.vue <template> <div> <el-dialog v-show="isShow" :visible.sync="isShow" width="50%" @close="seePicUrl = ''" append-to-body style="tex 阅读全文
摘要:
参考 一、input只能输入框只能输入正整数,输入同时禁止了以0开始的数字输入,防止被转化为其他进制的数值。<!-- 不能输入零时--><input type='text' οninput="value=value.replace(/^(0+)|[^\d]+/g,'')"> <!-- 能输入零时-- 阅读全文
摘要:
<el-select v-if="model" filterable class="w" v-model="ruleForm.allModelId" placeholder="请选择" @change="changeModel($event)" > <el-option v-for="item in 阅读全文
摘要:
<transition name="fade"> <span v-show="isShow">动画效果</span> </transition> .fade-enter-active, .fade-leave-active { transition: opacity .25s } .fade-ent 阅读全文
摘要:
van-tab需要先渲染后,修改参数对应active,才能有效切换到对应tab 阅读全文