摘要: <insert id="batchInsertTScriptPenetrationTypeRelation" parameterType="list"> insert into t_script_penetration_type_relation <trim prefix="(" suffix=") 阅读全文
posted @ 2021-07-12 15:12 小拐 阅读(141) 评论(0) 推荐(0)
摘要: 1、js内部方法和初始化设置 2、后台接口调用 3、地图样式 阅读全文
posted @ 2021-07-07 16:36 小拐 阅读(68) 评论(0) 推荐(0)
摘要: validatorTagTypeValue(rule, value, callback) { const errors = [] if (value !== '' && value !== undefined) { uniqueTagTypeValue({ noDictCode: this.dict 阅读全文
posted @ 2021-07-07 10:30 小拐 阅读(64) 评论(0) 推荐(0)
摘要: disabledDate(current) { const time = moment().endOf('day').subtract(1, 'days') return current && current < time }, rangeHours(start, end, value, choos 阅读全文
posted @ 2021-06-24 11:13 小拐 阅读(2236) 评论(0) 推荐(0)
摘要: white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 需要外层div设置宽度 阅读全文
posted @ 2021-06-18 17:51 小拐 阅读(1878) 评论(0) 推荐(1)
摘要: ALTER TABLE t_contract_budget CHANGE cost_type cost_type VARCHAR(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL; 阅读全文
posted @ 2021-06-16 15:06 小拐 阅读(147) 评论(0) 推荐(0)
摘要: setting { //设置文字大小 "editor.fontSize": 16, //设置文字行高 "editor.lineHeight": 20, //开启行数提示 "editor.lineNumbers": "on", // 在输入时显示含有参数文档和类型信息的小面板。 "editor.par 阅读全文
posted @ 2021-06-04 11:09 小拐 阅读(105) 评论(0) 推荐(0)
摘要: 博客园设置页脚代码 1 <!--点击爱心特效--> 2 <script type="text/javascript"> 3 //需要jquery插件 4 /* 鼠标特效 */ 5 var a_idx = 0; 6 jQuery(document).ready(function($) { 7 $("b 阅读全文
posted @ 2021-06-01 14:20 小拐 阅读(66) 评论(0) 推荐(0)
摘要: 1 // 使用默认时区和语言环境获得一个日历 2 Calendar cal = Calendar.getInstance(); 3 // 赋值时年月日时分秒常用的6个值,注意月份下标从0开始,所以取月份要+1 4 System.out.println("年:" + cal.get(Calendar. 阅读全文
posted @ 2021-05-31 17:43 小拐 阅读(67) 评论(0) 推荐(0)
摘要: //加法 BigDecimal result1 = num1.add(num2); BigDecimal result12 = num12.add(num22); //减法 BigDecimal result2 = num1.subtract(num2); BigDecimal result22 = 阅读全文
posted @ 2021-05-31 17:35 小拐 阅读(53) 评论(0) 推荐(0)