07 2019 档案

摘要:<el-form-item prop="checkPass"> <el-input type="password" class="widths users" v-model="ruleForm2.checkPass" ( /account/code) auto-complete="off" plac 阅读全文
posted @ 2019-07-23 17:10 子不语~ 阅读(654) 评论(0) 推荐(0)
摘要:<img alt="点击刷新" :src="vsCode" //src指后台拿来的图片的路径 @click="changeCodeImg()" id="img_RandomCode" title="点击刷新" /> //点击刷新验证码 changeCodeImg(){ //这里是点击验证码图片的时候 阅读全文
posted @ 2019-07-23 16:50 子不语~ 阅读(1404) 评论(0) 推荐(0)
摘要:看到有些人写的比较好 就转载了网址 https://blog.csdn.net/julying/article/details/83587370 回车登录 https://blog.csdn.net/julying/article/details/83587370 回车登录网址 https://bl 阅读全文
posted @ 2019-07-23 16:35 子不语~ 阅读(1026) 评论(0) 推荐(0)
摘要:<el-table :data="tableData" highlight-current-row v-loading="loading" @sort-change='sortChange'> <el-table-column type="index" width="60"></el-table-c 阅读全文
posted @ 2019-07-22 18:19 子不语~ 阅读(560) 评论(0) 推荐(0)
摘要:自己自学期间遇到比较好简述文件 自留一份 网址:https://www.jianshu.com/p/8ff8e71dcbc6?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation 阅读全文
posted @ 2019-07-19 12:59 子不语~ 阅读(133) 评论(0) 推荐(0)
摘要:看到别人的网页写的比较详细,就拿过来了。留着以后自己备用 哈哈哈 网页;https://blog.csdn.net/twodogya/article/details/80715049 阅读全文
posted @ 2019-07-17 10:59 子不语~ 阅读(175) 评论(0) 推荐(0)
摘要:网址:https://jingyan.baidu.com/article/c1a3101e7aeb93de656debe4.html mint-ui 快速上手:https://blog.csdn.net/dkh_321/article/details/78126262 阅读全文
posted @ 2019-07-16 15:21 子不语~ 阅读(651) 评论(0) 推荐(0)
摘要:vue刷新当前页面有挺多种方法,比如 window.location.reload() 或者 this.$router.go(0) 但是这两种方法是会出现一瞬间的白屏,体验不好,所以这里给大家推荐第三种比较好用的刷新页面的方法 //全局配置刷新功能 在app.vue的<router-view></r 阅读全文
posted @ 2019-07-12 14:20 子不语~ 阅读(1951) 评论(0) 推荐(0)
摘要:vh 表示相对视口高度(Viewport Height),1vh = 1% * 视口高度,页面会随视口屏幕大小改变而改变。 1.body{ height:100vh; width:100vw; } 1.里面的子元素的 所有 宽 高 都以vh来定位 注意:要设置 min-height min-widt 阅读全文
posted @ 2019-07-12 09:57 子不语~ 阅读(100) 评论(0) 推荐(0)
摘要:1 对于最最基础的单行文本,要想实现垂直方向居中,很简单的方法就是让文本的行高等于父级元素的高度。这个仅适用于让当行文本垂直居中的情况,多行文本就不适用了。 father{ width:500px; height:500px } child{ line-height:500px; } 2 如果是图片 阅读全文
posted @ 2019-07-09 14:41 子不语~ 阅读(1075) 评论(0) 推荐(0)
摘要:绑定事件比较特殊:必须用 @click.native=‘’ 帮i的那个时间 否则无效 <el-dropdown> <span class="el-dropdown-link" ref="echarType"> 柱状图<i class="el-icon-arrow-down el-icon--righ 阅读全文
posted @ 2019-07-08 18:26 子不语~ 阅读(5277) 评论(0) 推荐(0)
摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta content="width=device-width, height=device-height,initial-scale=1.0, minimum-scale=1.0, max 阅读全文
posted @ 2019-07-05 18:45 子不语~ 阅读(330) 评论(0) 推荐(0)
摘要:第一种用axios发送请求到后台,需要后台配合,才能在表格里面渲染页面;想偷懒的小伙建议去直接粘贴复制第三种 <template> <div class="tableDatas"> <div class="searchWord"> <div style="display: inline-block" 阅读全文
posted @ 2019-07-05 16:17 子不语~ 阅读(22158) 评论(0) 推荐(0)
摘要:验证码图片 <img alt="点击刷新" id="img_RandomCode" title="点击刷新" src="data:image/jpg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8U 阅读全文
posted @ 2019-07-03 16:56 子不语~ 阅读(1528) 评论(0) 推荐(0)