2019年6月5日

element-ui 表格边框错位

摘要: 在app.vue里加入 body .el-table th.gutter{ display: table-cell!important; } body .el-table th.gutter{ display: table-cell!important; } 阅读全文

posted @ 2019-06-05 15:24 九十de惑 阅读(237) 评论(0) 推荐(0)

随便写写的正则表达式

摘要: 一、校验数字的表达式 1、数字:^[0-9]*$ 2、n位的数字:^d{n}$ 3、至少n位的数字:^d{n,}$ 4、m-n位的数字:^d{m,n}$ 5、零和非零开头的数字:^(0|[1-9][0-9]*)$ 6、非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9]{1, 阅读全文

posted @ 2019-06-05 10:10 九十de惑 阅读(257) 评论(0) 推荐(0)

导航