- 博客(19)
- 收藏
- 关注
原创 写的扩展组件在dataGrid里显示
写的扩展组件在dataGrid里显示要在 rewrite-easyui.js里加下面$.extend($.fn.datagrid.defaults.editors, { plantSearchGrid:{ init: function(container, options){ var input = $('<div class="eas...
2019-10-18 14:19:59 165
原创 url后台加载速度慢
前端页面<div class="easyui-combobox " style="height:36px;line-height:36px;font-size:16px;border-radius:4px;background-color:#f77400;width:180px;margin:5px;padding-left:8px;color:#ffffff;" name="Pa...
2019-10-08 12:41:54 274
原创 mysql查询速度
SELECT b.billId from com_his_charge_bill b LEFT JOIN com_his_charge_bill_items i on b.billId = i.billId \n" +"where b.regId=r.regId and i.itemType!=17 and i.itemType!=18 and b.ifSettle=1 LIMIT 1...
2019-09-17 20:07:33 540
原创 easyui-layout 样式不适用ipad,手机端,打印等
html页面用easyui-layout样式,如果该页面也要在ipad端或者手机端,打印页面试用的时候,要做判断,#if(canEdit)class='easyui-layout' #end不适用easyui-layout页面的时候不调用easyui-layoutdata-options="region:'north'"region="center" data-opti...
2019-08-06 13:50:07 278
原创 eayui-combobox
<input name="medicineA" id="medicine" class="easyui-dictComboBox" data-options='ifAll:"1",ediBtn:#(isMobile??==false?"true":"false"),limitToList:false,editable:true,dictType:"MOUTH_TAKE",labelWidt...
2019-08-06 13:43:23 271
原创 mysql数据库查询字段太长显示不完全
在查询语句之前引用ET SESSION group_concat_max_len = 10240;Db.update("SET SESSION group_concat_max_len = 10240");getPageData(" select * from ("+docsql+") a UNION ALL select * from ("+deptsql+") b");...
2019-07-12 16:32:39 3867
原创 在子页面再次打开页面,并关闭当前子页面
parent.closeWin(window.name);top.openWin("转诊","/his/doctorWorkstation/refer?regId=#(regId??)",1200,$("body").height())top:URL替换任何可加载的框架集
2019-07-02 14:18:23 479
原创 修改<li>里的title字体颜色
$(".tabs li:nth-child(9)").find(".tabs-title").css("color","#f77400");li:nth-child(9)是第几个<li><div id="tabs" class="easyui-tabs" data-options="fit:true"> <div title="病历" style=...
2019-06-28 14:47:34 5309
原创 在div里修改样式
<div title='<span class="#(isConsult?"colorOrange":"")">咨询</span>' style="overflow:auto;display:none;" id="consult">.colorOrange{ color: #f77400;}#(isConsult)是后台传的值,boolea...
2019-06-28 14:32:54 724
原创 时间延时
setTimeout( )是设定一个指定等候时间 (单位是千分之一秒, millisecond), 时间到了, 浏览器就会执行一个指定的 method 或 function, 有以下语法:layer.msg( content, { icon: 2, time:3000, zIndex: layer.zIndex //重点...
2018-09-04 13:34:22 931
转载 java 汉字转首字母
private final static int[] li_SecPosValue = { 1601, 1637, 1833, 2078, 2274, 2302, 2433, 2594, 2787, 3106, 3212, 3472, 3635, 3722, 3730, 3858, 4027, 4086, 4390, 4558, 4684, 4925, 524...
2018-08-31 19:52:01 1158
原创 EasyUI datagrid隐藏域的值
$('#datagrid1').commGrid({ loadMsg : "正在加载数据", url:'/hq/shop/getEmpTransactDetail', remoteFilter:true, columns:[[ /* {field:'transactId',hidden:'true',align:'center'}, ...
2018-08-31 14:29:11 2267
转载 MySQL Illegal mix of collations for operation 'like'
MySQL Illegal mix of collations for operation 'like'在 MySQL 5.5 以上, 若字段类型 Type 是 time,date,datetime 在 select时如果使用 like '%中文%' 会出现 Illegal mix of collations for operation 'like'在编程时要对每个字段进行查找,在执行...
2018-08-17 14:02:42 130
原创 身份证校验
function isIdCardNo(num) { num=num.toUpperCase(); var factorArr = new Array(7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2, 1); var parityBit = new Array("1", "0", "X", "9", "8", "7&q
2018-08-02 14:46:48 179
转载 日期之间的转化关系
1,获取当前系统时间 Date date = new Date();2,Date转为DateTime DateTime dateTime = new DateTime(date.getTime());3,DateTime转为Date Date date = dateTime.toDate();4,获取日期格式, DateFormat df = new Simp...
2018-07-30 15:28:14 159
原创 日期转农历日期,算年龄
前端页面部分//计算年龄$('#birthDate').datetime({ onChange: function(newValue){ var date=new Date(Date.parse(newValue)); var year=date.getFullYear();//获取当前年份(2位) var month = date.g...
2018-07-30 15:24:13 384
原创 easyui验证插件Validator
$.extend($.fn.validatebox.defaults.rules, { //采购单位 cbbUnit: { validator: function (value, param) { var index = $(this).parents("td[field='caiunitId']").parent().attr("datag...
2018-06-25 14:43:50 834
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人