摘要:
downloadFile(url, fileName) { this.$axios({ method: "get", url: "/ossfile/download/" + url, responseType: 'blob' }).then(function (response) { var blo 阅读全文
摘要:
<script> export default { data() {//Vue 实例的数据对象 return { title: '表单相关', } }, components:{},//注册组件实例 props:[],//props 可以是数组或对象,用于接收来自父组件的数据。 mounted() 阅读全文
摘要:
let blob = new Blob([response]); if ("download" in document.createElement("a")) { // let objUrl = window.URL.createObjectURL(blob); // window.location 阅读全文
摘要:
<el-radio v-model="contractData.contractCreateData.createMain" label="1">是</el-radio> <el-radio v-model="contractData.contractCreateData.createMain" l 阅读全文
摘要:
import VueElementLoading from 'vue-element-loading' <vue-element-loading :active="isActive" spinner="bar-fade-scale" color="rgb(64, 158, 255)" backgro 阅读全文
摘要:
<template> <div class="hello"> <el-form inline size="small"> <el-form-item label="学校"> <el-select v-model="title" multiple filterable clear placeholde 阅读全文
摘要:
<!--文件上传组件--> <el-dialog title="上传" :visible.sync="dialogFormVisible2" :before-close="closeFileUploadDialog"> <el-form :model="uploadForm"> <el-form-i 阅读全文
摘要:
getSpanArr (data) { console.log(data)//从后台获取的数据 this.spanArr = [] this.spanCodeArr = [] for (var i = 0; i < data.length; i++) { if (i 0) { //如果是第一条记录( 阅读全文
摘要:
::-webkit-input-placeholder { /* WebKit, Blink, Edge */ color: #909; } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #909; } ::-moz-placeho 阅读全文
摘要:
1.1前端vue组件内写法 this.$axios({ method:"get", url:"/news/index", data:{ product_type:'product' } }).then((res)=>{ //请求成功返回的数据 console.log(res); this.newsL 阅读全文