摘要:
//四舍五入保留2位小数(若第二位小数为0,则保留一位小数)function keepTwoDecimal(num) { var result = parseFloat(num); result = Math.floor(result * 100) / 100 // 不四舍五入 // result 阅读全文
摘要:
<!-- 邮件start --><dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version></dependency><!-- 邮件end --><dependenc 阅读全文
摘要:
<!-- 邮件end --><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId></dependency><!--freemarker模板引 阅读全文
摘要:
<input type="button" onclick="edit(${it.id?c})" class="layui-btn layui-btn-normal layui-btn-sm" value="编辑"> function edit(id) {//iframe层 layer.open({ 阅读全文
摘要:
订购数量</span> <span style="color: red">*</span>: <input type="text" required lay-verify="required|number|isXiaoYu|isManZu" id="proOrderNum" name="proOrd 阅读全文
摘要:
<div class="layui-form-item"> <label class="layui-form-label">是否通过</label> <div class="layui-input-block"> <input type="radio" name="state" value="1" 阅读全文
摘要:
参考文档:https://blog.csdn.net/lulidaitian/article/details/70941769 springMVC+mybatis查询数据,返回resultType=”map”时,如果数据为空的字段,则该字段省略不显示,可以通过添加配置文件,规定查询数据为空是则返回n 阅读全文
摘要:
SELECT r.id AS resId, r.res_desc, r.res_type, r.res_state, r.expires_date, r.res_pic_path, ra.id as applyId, ... 阅读全文