摘要:
1.layui:http://www.uimaker.com/layui/doc/ 2.EasyWeb主题生成器(适用于所有Layui后台大布局的框架):https://demo.easyweb.vip/theme/ 或者 https://whvse.gitee.io/easywebpage/doc 阅读全文
摘要:
1. build->utils.js: 2. build->webpack.prod.conf.js: 3. config->index.js: 阅读全文
摘要:
1.layui table回显选中 1) radio: done:function(res, curr, count){ for(var i = 0; i < res.data.length; i++){ for(var j = 0; j < vm.chosenInfo.waterInfo.leng 阅读全文
摘要:
1.elmentui:npm i element-ui -S 2.打印插件:npm install vue-print-nb --save 3.时间转换插件Moment:npm install moment 4.vue-cookies:npm install vuew-cookies --save 阅读全文
摘要:
一.请求配置 // 引入import axios from 'axios';import qs from 'qs';this.$axios({ method:"get", // get|post|delete|put... url:"", headers:{"content-type":'appli 阅读全文
摘要:
一、时间相关的问题 1.获取以当前时间为截止时间的一个星期的时间段 function getOneWeek(){ var currentTime = new Date().getTime(); var previousTime = currentTime - 24*60*60*1000*6; var 阅读全文
摘要:
样式如下: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>日程表</title> <link rel="stylesheet" hr 阅读全文
摘要:
一、关于字数统计的问题 在使用textarea时常会对textarea中的文字数目进行统计,一般来说,可以使用onkeyup事件来解决问题。 function keypress(){ var description = document.getElementById("description").v 阅读全文
摘要:
需求:可以进行年份与月份的选择并根据选择展示相应的日历,如下图所示, 解决方案: <div class="week aui-margin-l-10 aui-margin-r-10"> <div>日</div> <div>一</div> <div>二</div> <div>三</div> <div>四 阅读全文