简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
//地址转文件changeBlob(){returnnewPromise(resolve=>{constxhr=newXMLHttpRequest();xhr.open('GET','文件地址',true);xhr.responseType='blob';xhr.onload=()=>{if(xhr.status===200){resolve(xhr.response);...
vue使用input标签 type='file’上传文件在ant design 和element UI中,都有上传组件,但是有时满足不了项目需求,记录下碰到得问题及解决方法1、html中<input type="file"@change="changeflie" />//type为file2、jschangeflie(event){v...
//自定义指令import Vue from 'vue'Vue.directive('Alphabet', {inserted: function (el) {const input = el.querySelector('.el-input__inner');input.onkeyup = function (e) {input.value = input.value.replace(/[^A-
项目需求:前端做排序,后台返回的数据有合计一项,排序时,合计始终在最后一行使用@sort-change='sortChange'<el-table-columnprop="revPar"align='center'sortable="custom"label="RevPAR"width="110"></el-table-column>sortChange(column){
<el-table:data="tableData"borderstyle="width: 100%"><el-table-columnprop="date"label="日期"><template slot-scope="scope"><el-date-pickerv-model="scope.row.date"v-if=
//地址转文件changeBlob(){returnnewPromise(resolve=>{constxhr=newXMLHttpRequest();xhr.open('GET','文件地址',true);xhr.responseType='blob';xhr.onload=()=>{if(xhr.status===200){resolve(xhr.response);...
vue中axios的简单使用以及封装安装npm install axios --save首先介绍简单的使用在我们需要使用的地方引入axios , 然后便可以使用了import axios from 'axios'//引入使用axios({headers:{Authorization:''//token},url: "",//接口地址method: "",//请求方式params: {},//参数}
本文使用了u-view框架<u-upload:fileList="fileList1"accept='image'width='60'height="60":capture='capture'@afterRead="afterRead"@delete="deletePic"name="1"multiple:maxCount="10"></u-upload>data() {r