- 博客(12)
- 收藏
- 关注
原创 使用axios的onUploadProgress完成el-upload的进度条功能
使用axios的onUploadProgress完成el-upload的进度条功能。
2022-11-14 17:20:42
793
原创 vue中使用vue-quill-editor并且粘贴直接上传图片
vue-quill-editor富文本,粘贴图片时默认都是base64格式,比较大,所以就需要传到服务器中
2022-11-02 10:53:15
1382
原创 JS组件 回车增加标签(可拖动排序)
<template> <div @click="focusTypeInput"> <draggable v-model="tempList" tag="div" :animation="200" handle=".typeList-item" class="typeList-outside" :move="onMove" @end="changeIndex"> <div v-for="(item, typeIndex...
2022-05-20 14:38:33
319
原创 封装Echarts组件
<Chart :id="'chart'" key="id" :style="{ width: '100%', height: '280px' }" :option="LineChartOption" />//表单配置项 LineChartOption: { color: COLORLIST, title: { ...
2022-05-20 14:32:29
601
原创 在登录页实现跳转到上一次浏览的页面
//先在本页面存入重定向的urldata() {return {redirect: undefined,}}//然后在watch监听属性中监听$route的变化watch: {$route: {handler: function(route) {const query = route.queryif (query) {this.redirect = query.redirectthis.otherQuery = this.getOtherQuery(qu.
2022-05-18 14:30:39
306
原创 JS上传表单(包含上传文件)
//接口需要在headers中设置编码方式,才能识别formData文件export function BranchConfigUpload(params) { return request({ headers: { 'Content-Type': 'multipart/form-data' }, method: 'post', url: '', data: params.data })}// 选择文件限制 handleExc...
2022-05-18 10:09:56
823
原创 JS点击按钮,从本地下载文件
// 下载 downMB() { var downloadElement = document.createElement('a') const evt = document.createEvent('MouseEvent') downloadElement.download = '文件名_' downloadElement.href = '/excel/versionCode.xlsx' evt.initEvent('clic...
2022-05-16 17:29:14
630
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人