摘要: <div class="demo-image__preview" v-show="isShow" style="display:block;"> <img style="width: 100px; height: 100px" :src="file.filePath" title="点击查看大图" 阅读全文
posted @ 2020-03-12 17:21 学习就是进步! 阅读(7791) 评论(0) 推荐(0)
摘要: 使用select时出现这个情况,想了很久才解决 解决方法如下: 我发现问题主要由下面这个属性引起的,但是再改的时候却没反应 所以: .el-popper { margin-top:-40px !important; } 问题解决了,不同分辨率下的问题也解决了 阅读全文
posted @ 2020-03-11 17:29 学习就是进步! 阅读(935) 评论(0) 推荐(0)
摘要: <el-input v-model="testCode" placeholder="请输入验证码" style="width:80%;"> <el-button slot="append" @click="again" v-show="show">发送验证码</el-button> <el-butt 阅读全文
posted @ 2020-03-11 14:35 学习就是进步! 阅读(215) 评论(0) 推荐(0)
摘要: 一、终端运行 npm i element-ui -S 二、main.js引入 //引入element-ui组件 import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css' Vue.use(Eleme 阅读全文
posted @ 2020-03-10 14:22 学习就是进步! 阅读(376) 评论(0) 推荐(0)
摘要: <template> <div> <canvas class="mycanvas" width="80" height="40">抱歉,您的浏览器不支持canvas元素,换个浏览器试试?</canvas> </div> </template> <script> export default { da 阅读全文
posted @ 2020-03-10 14:19 学习就是进步! 阅读(2631) 评论(0) 推荐(0)
摘要: 一、终端运行 npm install axios 二、main.js配置 //引入axios import axios from 'axios' //axios默认配置 axios.defaults.baseURL="http://localhost:8080" axios.defaults.tim 阅读全文
posted @ 2020-03-10 14:18 学习就是进步! 阅读(464) 评论(0) 推荐(0)
摘要: 一、终端运行 npm install --save js-md5 二、mian.js引入 //MD5加密 import md5 from 'js-md5' Vue.prototype.$md5 = md5 三、使用 this.$md5(“123465”) 阅读全文
posted @ 2020-03-10 14:10 学习就是进步! 阅读(1504) 评论(0) 推荐(0)
摘要: 一,终端运行 npm install vue-wechat-title --save-dev 二,main.js写入 //标题 import VueWechatTitle from 'vue-wechat-title' Vue.use(VueWechatTitle) 三,修改app.vue的<rou 阅读全文
posted @ 2020-03-10 14:07 学习就是进步! 阅读(825) 评论(0) 推荐(0)
摘要: 一、准备 去Github官网https://github.com/注册一个账号 ,然后新建一个库 这个时候仓库已经创建成功,点击刚创建好的仓库,会看见如下内容: 下载GIT(https://pc.qq.com/detail/13/detail_22693.html) 在git bash里面进行用户名 阅读全文
posted @ 2019-12-19 14:25 学习就是进步! 阅读(8847) 评论(0) 推荐(0)
摘要: @RequestMapping(value = "/upload", method = RequestMethod.POST) public String upload(MultipartFile file, HttpServletRequest request) { String path = l 阅读全文
posted @ 2019-12-17 21:52 学习就是进步! 阅读(192) 评论(0) 推荐(0)