laydate.js 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814
  1. /*!
  2. * layDate 日期与时间组件(单独版)
  3. * MIT Licensed
  4. */
  5. /*!
  6. * Layui
  7. * Classic modular Front-End UI library
  8. * MIT Licensed
  9. */
  10. ;!function(win){
  11. "use strict";
  12. var doc = win.document, config = {
  13. modules: {} //记录模块物理路径
  14. ,status: {} //记录模块加载状态
  15. ,timeout: 10 //符合规范的模块请求最长等待秒数
  16. ,event: {} //记录模块自定义事件
  17. }
  18. ,Layui = function(){
  19. this.v = '2.6.7'; // layui 版本号
  20. }
  21. //识别预先可能定义的指定全局对象
  22. ,GLOBAL = win.LAYUI_GLOBAL || {}
  23. //获取 layui 所在目录
  24. ,getPath = function(){
  25. var jsPath = doc.currentScript ? doc.currentScript.src : function(){
  26. var js = doc.scripts
  27. ,last = js.length - 1
  28. ,src;
  29. for(var i = last; i > 0; i--){
  30. if(js[i].readyState === 'interactive'){
  31. src = js[i].src;
  32. break;
  33. }
  34. }
  35. return src || js[last].src;
  36. }();
  37. return config.dir = GLOBAL.dir || jsPath.substring(0, jsPath.lastIndexOf('/') + 1);
  38. }()
  39. //异常提示
  40. ,error = function(msg, type){
  41. type = type || 'log';
  42. win.console && console[type] && console[type]('layui error hint: ' + msg);
  43. }
  44. ,isOpera = typeof opera !== 'undefined' && opera.toString() === '[object Opera]'
  45. //内置模块
  46. ,modules = config.builtin = {
  47. lay: 'lay' //基础 DOM 操作
  48. ,layer: 'layer' //弹层
  49. ,laydate: 'laydate' //日期
  50. ,laypage: 'laypage' //分页
  51. ,laytpl: 'laytpl' //模板引擎
  52. ,layedit: 'layedit' //富文本编辑器
  53. ,form: 'form' //表单集
  54. ,upload: 'upload' //上传
  55. ,dropdown: 'dropdown' //下拉菜单
  56. ,transfer: 'transfer' //穿梭框
  57. ,tree: 'tree' //树结构
  58. ,table: 'table' //表格
  59. ,element: 'element' //常用元素操作
  60. ,rate: 'rate' //评分组件
  61. ,colorpicker: 'colorpicker' //颜色选择器
  62. ,slider: 'slider' //滑块
  63. ,carousel: 'carousel' //轮播
  64. ,flow: 'flow' //流加载
  65. ,util: 'util' //工具块
  66. ,code: 'code' //代码修饰器
  67. ,jquery: 'jquery' //DOM 库(第三方)
  68. ,all: 'all'
  69. ,'layui.all': 'layui.all' //聚合标识(功能性的,非真实模块)
  70. };
  71. //记录基础数据
  72. Layui.prototype.cache = config;
  73. //定义模块
  74. Layui.prototype.define = function(deps, factory){
  75. var that = this
  76. ,type = typeof deps === 'function'
  77. ,callback = function(){
  78. var setApp = function(app, exports){
  79. layui[app] = exports;
  80. config.status[app] = true;
  81. };
  82. typeof factory === 'function' && factory(function(app, exports){
  83. setApp(app, exports);
  84. config.callback[app] = function(){
  85. factory(setApp);
  86. }
  87. });
  88. return this;
  89. };
  90. type && (
  91. factory = deps,
  92. deps = []
  93. );
  94. that.use(deps, callback, null, 'define');
  95. return that;
  96. };
  97. //使用特定模块
  98. Layui.prototype.use = function(apps, callback, exports, from){
  99. var that = this
  100. ,dir = config.dir = config.dir ? config.dir : getPath
  101. ,head = doc.getElementsByTagName('head')[0];
  102. apps = function(){
  103. if(typeof apps === 'string'){
  104. return [apps];
  105. }
  106. //当第一个参数为 function 时,则自动加载所有内置模块,且执行的回调即为该 function 参数;
  107. else if(typeof apps === 'function'){
  108. callback = apps;
  109. return ['all'];
  110. }
  111. return apps;
  112. }();
  113. //如果页面已经存在 jQuery 1.7+ 库且所定义的模块依赖 jQuery,则不加载内部 jquery 模块
  114. if(win.jQuery && jQuery.fn.on){
  115. that.each(apps, function(index, item){
  116. if(item === 'jquery'){
  117. apps.splice(index, 1);
  118. }
  119. });
  120. layui.jquery = layui.$ = jQuery;
  121. }
  122. var item = apps[0]
  123. ,timeout = 0;
  124. exports = exports || [];
  125. //静态资源host
  126. config.host = config.host || (dir.match(/\/\/([\s\S]+?)\//)||['//'+ location.host +'/'])[0];
  127. //加载完毕
  128. function onScriptLoad(e, url){
  129. var readyRegExp = navigator.platform === 'PLaySTATION 3' ? /^complete$/ : /^(complete|loaded)$/
  130. if (e.type === 'load' || (readyRegExp.test((e.currentTarget || e.srcElement).readyState))) {
  131. config.modules[item] = url;
  132. head.removeChild(node);
  133. (function poll() {
  134. if(++timeout > config.timeout * 1000 / 4){
  135. return error(item + ' is not a valid module', 'error');
  136. };
  137. config.status[item] ? onCallback() : setTimeout(poll, 4);
  138. }());
  139. }
  140. }
  141. //回调
  142. function onCallback(){
  143. exports.push(layui[item]);
  144. apps.length > 1 ?
  145. that.use(apps.slice(1), callback, exports, from)
  146. : ( typeof callback === 'function' && function(){
  147. //保证文档加载完毕再执行回调
  148. if(layui.jquery && typeof layui.jquery === 'function' && from !== 'define'){
  149. return layui.jquery(function(){
  150. callback.apply(layui, exports);
  151. });
  152. }
  153. callback.apply(layui, exports);
  154. }() );
  155. }
  156. //如果引入了聚合板,内置的模块则不必重复加载
  157. if( apps.length === 0 || (layui['layui.all'] && modules[item]) ){
  158. return onCallback(), that;
  159. }
  160. //获取加载的模块 URL
  161. //如果是内置模块,则按照 dir 参数拼接模块路径
  162. //如果是扩展模块,则判断模块路径值是否为 {/} 开头,
  163. //如果路径值是 {/} 开头,则模块路径即为后面紧跟的字符。
  164. //否则,则按照 base 参数拼接模块路径
  165. var url = ( modules[item] ? (dir + 'modules/')
  166. : (/^\{\/\}/.test(that.modules[item]) ? '' : (config.base || ''))
  167. ) + (that.modules[item] || item) + '.js';
  168. url = url.replace(/^\{\/\}/, '');
  169. //如果扩展模块(即:非内置模块)对象已经存在,则不必再加载
  170. if(!config.modules[item] && layui[item]){
  171. config.modules[item] = url; //并记录起该扩展模块的 url
  172. }
  173. //首次加载模块
  174. if(!config.modules[item]){
  175. var node = doc.createElement('script');
  176. node.async = true;
  177. node.charset = 'utf-8';
  178. node.src = url + function(){
  179. var version = config.version === true
  180. ? (config.v || (new Date()).getTime())
  181. : (config.version||'');
  182. return version ? ('?v=' + version) : '';
  183. }();
  184. head.appendChild(node);
  185. if(node.attachEvent && !(node.attachEvent.toString && node.attachEvent.toString().indexOf('[native code') < 0) && !isOpera){
  186. node.attachEvent('onreadystatechange', function(e){
  187. onScriptLoad(e, url);
  188. });
  189. } else {
  190. node.addEventListener('load', function(e){
  191. onScriptLoad(e, url);
  192. }, false);
  193. }
  194. config.modules[item] = url;
  195. } else { //缓存
  196. (function poll() {
  197. if(++timeout > config.timeout * 1000 / 4){
  198. return error(item + ' is not a valid module', 'error');
  199. };
  200. (typeof config.modules[item] === 'string' && config.status[item])
  201. ? onCallback()
  202. : setTimeout(poll, 4);
  203. }());
  204. }
  205. return that;
  206. };
  207. //获取节点的 style 属性值
  208. Layui.prototype.getStyle = function(node, name){
  209. var style = node.currentStyle ? node.currentStyle : win.getComputedStyle(node, null);
  210. return style[style.getPropertyValue ? 'getPropertyValue' : 'getAttribute'](name);
  211. };
  212. //css外部加载器
  213. Layui.prototype.link = function(href, fn, cssname){
  214. var that = this
  215. ,head = doc.getElementsByTagName('head')[0]
  216. ,link = doc.createElement('link');
  217. if(typeof fn === 'string') cssname = fn;
  218. var app = (cssname || href).replace(/\.|\//g, '')
  219. ,id = link.id = 'layuicss-'+ app
  220. ,STAUTS_NAME = 'creating'
  221. ,timeout = 0;
  222. link.rel = 'stylesheet';
  223. link.href = href + (config.debug ? '?v='+new Date().getTime() : '');
  224. link.media = 'all';
  225. if(!doc.getElementById(id)){
  226. head.appendChild(link);
  227. }
  228. if(typeof fn !== 'function') return that;
  229. //轮询 css 是否加载完毕
  230. (function poll(status) {
  231. var delay = 100
  232. ,getLinkElem = doc.getElementById(id); //获取动态插入的 link 元素
  233. //如果轮询超过指定秒数,则视为请求文件失败或 css 文件不符合规范
  234. if(++timeout > config.timeout * 1000 / delay){
  235. return error(href + ' timeout');
  236. };
  237. //css 加载就绪
  238. if(parseInt(that.getStyle(getLinkElem, 'width')) === 1989){
  239. //如果参数来自于初始轮询(即未加载就绪时的),则移除 link 标签状态
  240. if(status === STAUTS_NAME) getLinkElem.removeAttribute('lay-status');
  241. //如果 link 标签的状态仍为「创建中」,则继续进入轮询,直到状态改变,则执行回调
  242. getLinkElem.getAttribute('lay-status') === STAUTS_NAME ? setTimeout(poll, delay) : fn();
  243. } else {
  244. getLinkElem.setAttribute('lay-status', STAUTS_NAME);
  245. setTimeout(function(){
  246. poll(STAUTS_NAME);
  247. }, delay);
  248. }
  249. }());
  250. //轮询css是否加载完毕
  251. /*
  252. (function poll() {
  253. if(++timeout > config.timeout * 1000 / 100){
  254. return error(href + ' timeout');
  255. };
  256. parseInt(that.getStyle(doc.getElementById(id), 'width')) === 1989 ? function(){
  257. fn();
  258. }() : setTimeout(poll, 100);
  259. }());
  260. */
  261. return that;
  262. };
  263. //css 内部加载器
  264. Layui.prototype.addcss = function(firename, fn, cssname){
  265. return layui.link(config.dir + 'css/' + firename, fn, cssname);
  266. };
  267. //存储模块的回调
  268. config.callback = {};
  269. //重新执行模块的工厂函数
  270. Layui.prototype.factory = function(modName){
  271. if(layui[modName]){
  272. return typeof config.callback[modName] === 'function'
  273. ? config.callback[modName]
  274. : null;
  275. }
  276. };
  277. //图片预加载
  278. Layui.prototype.img = function(url, callback, error) {
  279. var img = new Image();
  280. img.src = url;
  281. if(img.complete){
  282. return callback(img);
  283. }
  284. img.onload = function(){
  285. img.onload = null;
  286. typeof callback === 'function' && callback(img);
  287. };
  288. img.onerror = function(e){
  289. img.onerror = null;
  290. typeof error === 'function' && error(e);
  291. };
  292. };
  293. //全局配置
  294. Layui.prototype.config = function(options){
  295. options = options || {};
  296. for(var key in options){
  297. config[key] = options[key];
  298. }
  299. return this;
  300. };
  301. //记录全部模块
  302. Layui.prototype.modules = function(){
  303. var clone = {};
  304. for(var o in modules){
  305. clone[o] = modules[o];
  306. }
  307. return clone;
  308. }();
  309. //拓展模块
  310. Layui.prototype.extend = function(options){
  311. var that = this;
  312. //验证模块是否被占用
  313. options = options || {};
  314. for(var o in options){
  315. if(that[o] || that.modules[o]){
  316. error(o+ ' Module already exists', 'error');
  317. } else {
  318. that.modules[o] = options[o];
  319. }
  320. }
  321. return that;
  322. };
  323. // location.hash 路由解析
  324. Layui.prototype.router = function(hash){
  325. var that = this
  326. ,hash = hash || location.hash
  327. ,data = {
  328. path: []
  329. ,search: {}
  330. ,hash: (hash.match(/[^#](#.*$)/) || [])[1] || ''
  331. };
  332. if(!/^#\//.test(hash)) return data; //禁止非路由规范
  333. hash = hash.replace(/^#\//, '');
  334. data.href = '/' + hash;
  335. hash = hash.replace(/([^#])(#.*$)/, '$1').split('/') || [];
  336. //提取 Hash 结构
  337. that.each(hash, function(index, item){
  338. /^\w+=/.test(item) ? function(){
  339. item = item.split('=');
  340. data.search[item[0]] = item[1];
  341. }() : data.path.push(item);
  342. });
  343. return data;
  344. };
  345. //URL 解析
  346. Layui.prototype.url = function(href){
  347. var that = this
  348. ,data = {
  349. //提取 url 路径
  350. pathname: function(){
  351. var pathname = href
  352. ? function(){
  353. var str = (href.match(/\.[^.]+?\/.+/) || [])[0] || '';
  354. return str.replace(/^[^\/]+/, '').replace(/\?.+/, '');
  355. }()
  356. : location.pathname;
  357. return pathname.replace(/^\//, '').split('/');
  358. }()
  359. //提取 url 参数
  360. ,search: function(){
  361. var obj = {}
  362. ,search = (href
  363. ? function(){
  364. var str = (href.match(/\?.+/) || [])[0] || '';
  365. return str.replace(/\#.+/, '');
  366. }()
  367. : location.search
  368. ).replace(/^\?+/, '').split('&'); //去除 ?,按 & 分割参数
  369. //遍历分割后的参数
  370. that.each(search, function(index, item){
  371. var _index = item.indexOf('=')
  372. ,key = function(){ //提取 key
  373. if(_index < 0){
  374. return item.substr(0, item.length);
  375. } else if(_index === 0){
  376. return false;
  377. } else {
  378. return item.substr(0, _index);
  379. }
  380. }();
  381. //提取 value
  382. if(key){
  383. obj[key] = _index > 0 ? item.substr(_index + 1) : null;
  384. }
  385. });
  386. return obj;
  387. }()
  388. //提取 Hash
  389. ,hash: that.router(function(){
  390. return href
  391. ? ((href.match(/#.+/) || [])[0] || '/')
  392. : location.hash;
  393. }())
  394. };
  395. return data;
  396. };
  397. //本地持久性存储
  398. Layui.prototype.data = function(table, settings, storage){
  399. table = table || 'layui';
  400. storage = storage || localStorage;
  401. if(!win.JSON || !win.JSON.parse) return;
  402. //如果settings为null,则删除表
  403. if(settings === null){
  404. return delete storage[table];
  405. }
  406. settings = typeof settings === 'object'
  407. ? settings
  408. : {key: settings};
  409. try{
  410. var data = JSON.parse(storage[table]);
  411. } catch(e){
  412. var data = {};
  413. }
  414. if('value' in settings) data[settings.key] = settings.value;
  415. if(settings.remove) delete data[settings.key];
  416. storage[table] = JSON.stringify(data);
  417. return settings.key ? data[settings.key] : data;
  418. };
  419. //本地会话性存储
  420. Layui.prototype.sessionData = function(table, settings){
  421. return this.data(table, settings, sessionStorage);
  422. }
  423. //设备信息
  424. Layui.prototype.device = function(key){
  425. var agent = navigator.userAgent.toLowerCase()
  426. //获取版本号
  427. ,getVersion = function(label){
  428. var exp = new RegExp(label + '/([^\\s\\_\\-]+)');
  429. label = (agent.match(exp)||[])[1];
  430. return label || false;
  431. }
  432. //返回结果集
  433. ,result = {
  434. os: function(){ //底层操作系统
  435. if(/windows/.test(agent)){
  436. return 'windows';
  437. } else if(/linux/.test(agent)){
  438. return 'linux';
  439. } else if(/iphone|ipod|ipad|ios/.test(agent)){
  440. return 'ios';
  441. } else if(/mac/.test(agent)){
  442. return 'mac';
  443. }
  444. }()
  445. ,ie: function(){ //ie版本
  446. return (!!win.ActiveXObject || "ActiveXObject" in win) ? (
  447. (agent.match(/msie\s(\d+)/) || [])[1] || '11' //由于ie11并没有msie的标识
  448. ) : false;
  449. }()
  450. ,weixin: getVersion('micromessenger') //是否微信
  451. };
  452. //任意的key
  453. if(key && !result[key]){
  454. result[key] = getVersion(key);
  455. }
  456. //移动设备
  457. result.android = /android/.test(agent);
  458. result.ios = result.os === 'ios';
  459. result.mobile = (result.android || result.ios) ? true : false;
  460. return result;
  461. };
  462. //提示
  463. Layui.prototype.hint = function(){
  464. return {
  465. error: error
  466. };
  467. };
  468. //typeof 类型细分 -> string/number/boolean/undefined/null、object/array/function/…
  469. Layui.prototype._typeof = function(operand){
  470. if(operand === null) return String(operand);
  471. //细分引用类型
  472. return (typeof operand === 'object' || typeof operand === 'function') ? function(){
  473. var type = Object.prototype.toString.call(operand).match(/\s(.+)\]$/) || [] //匹配类型字符
  474. ,classType = 'Function|Array|Date|RegExp|Object|Error|Symbol'; //常见类型字符
  475. type = type[1] || 'Object';
  476. //除匹配到的类型外,其他对象均返回 object
  477. return new RegExp('\\b('+ classType + ')\\b').test(type)
  478. ? type.toLowerCase()
  479. : 'object';
  480. }() : typeof operand;
  481. };
  482. //对象是否具备数组结构(此处为兼容 jQuery 对象)
  483. Layui.prototype._isArray = function(obj){
  484. var that = this
  485. ,len
  486. ,type = that._typeof(obj);
  487. if(!obj || (typeof obj !== 'object') || obj === win) return false;
  488. len = 'length' in obj && obj.length; //兼容 ie
  489. return type === 'array' || len === 0 || (
  490. typeof len === 'number' && len > 0 && (len - 1) in obj //兼容 jQuery 对象
  491. );
  492. };
  493. //遍历
  494. Layui.prototype.each = function(obj, fn){
  495. var key
  496. ,that = this
  497. ,callFn = function(key, obj){ //回调
  498. return fn.call(obj[key], key, obj[key])
  499. };
  500. if(typeof fn !== 'function') return that;
  501. obj = obj || [];
  502. //优先处理数组结构
  503. if(that._isArray(obj)){
  504. for(key = 0; key < obj.length; key++){
  505. if(callFn(key, obj)) break;
  506. }
  507. } else {
  508. for(key in obj){
  509. if(callFn(key, obj)) break;
  510. }
  511. }
  512. return that;
  513. };
  514. //将数组中的对象按其某个成员排序
  515. Layui.prototype.sort = function(obj, key, desc){
  516. var clone = JSON.parse(
  517. JSON.stringify(obj || [])
  518. );
  519. if(!key) return clone;
  520. //如果是数字,按大小排序;如果是非数字,则按字典序排序
  521. clone.sort(function(o1, o2){
  522. var isNum = /^-?\d+$/
  523. ,v1 = o1[key]
  524. ,v2 = o2[key];
  525. if(isNum.test(v1)) v1 = parseFloat(v1);
  526. if(isNum.test(v2)) v2 = parseFloat(v2);
  527. return v1 - v2;
  528. /*
  529. if(v1 && !v2){
  530. return 1;
  531. } else if(!v1 && v2){
  532. return -1;
  533. }
  534. if(v1 > v2){
  535. return 1;
  536. } else if (v1 < v2) {
  537. return -1;
  538. } else {
  539. return 0;
  540. }
  541. */
  542. });
  543. desc && clone.reverse(); //倒序
  544. return clone;
  545. };
  546. //阻止事件冒泡
  547. Layui.prototype.stope = function(thisEvent){
  548. thisEvent = thisEvent || win.event;
  549. try { thisEvent.stopPropagation() } catch(e){
  550. thisEvent.cancelBubble = true;
  551. }
  552. };
  553. //字符常理
  554. var EV_REMOVE = 'LAYUI-EVENT-REMOVE';
  555. //自定义模块事件
  556. Layui.prototype.onevent = function(modName, events, callback){
  557. if(typeof modName !== 'string'
  558. || typeof callback !== 'function') return this;
  559. return Layui.event(modName, events, null, callback);
  560. };
  561. //执行自定义模块事件
  562. Layui.prototype.event = Layui.event = function(modName, events, params, fn){
  563. var that = this
  564. ,result = null
  565. ,filter = (events || '').match(/\((.*)\)$/)||[] //提取事件过滤器字符结构,如:select(xxx)
  566. ,eventName = (modName + '.'+ events).replace(filter[0], '') //获取事件名称,如:form.select
  567. ,filterName = filter[1] || '' //获取过滤器名称,,如:xxx
  568. ,callback = function(_, item){
  569. var res = item && item.call(that, params);
  570. res === false && result === null && (result = false);
  571. };
  572. //如果参数传入特定字符,则执行移除事件
  573. if(params === EV_REMOVE){
  574. delete (that.cache.event[eventName] || {})[filterName];
  575. return that;
  576. }
  577. //添加事件
  578. if(fn){
  579. config.event[eventName] = config.event[eventName] || {};
  580. //这里不再对重复事件做支持
  581. //config.event[eventName][filterName] ? config.event[eventName][filterName].push(fn) :
  582. config.event[eventName][filterName] = [fn];
  583. return this;
  584. }
  585. //执行事件回调
  586. layui.each(config.event[eventName], function(key, item){
  587. //执行当前模块的全部事件
  588. if(filterName === '{*}'){
  589. layui.each(item, callback);
  590. return;
  591. }
  592. //执行指定事件
  593. key === '' && layui.each(item, callback);
  594. (filterName && key === filterName) && layui.each(item, callback);
  595. });
  596. return result;
  597. };
  598. //新增模块事件
  599. Layui.prototype.on = function(events, modName, callback){
  600. var that = this;
  601. return that.onevent.call(that, modName, events, callback);
  602. }
  603. //移除模块事件
  604. Layui.prototype.off = function(events, modName){
  605. var that = this;
  606. return that.event.call(that, modName, events, EV_REMOVE);
  607. };
  608. //exports layui
  609. var layui = new Layui();
  610. /*! lay 基础 DOM 操作 | MIT Licensed */
  611. "use strict";
  612. var MOD_NAME = 'lay' //模块名
  613. ,document = window.document
  614. //DOM查找
  615. ,lay = function(selector){
  616. return new LAY(selector);
  617. }
  618. //DOM构造器
  619. ,LAY = function(selector){
  620. var index = 0
  621. ,nativeDOM = typeof selector === 'object' ? [selector] : (
  622. this.selector = selector
  623. ,document.querySelectorAll(selector || null)
  624. );
  625. for(; index < nativeDOM.length; index++){
  626. this.push(nativeDOM[index]);
  627. }
  628. };
  629. /*
  630. lay 对象操作
  631. */
  632. LAY.prototype = [];
  633. LAY.prototype.constructor = LAY;
  634. //普通对象深度扩展
  635. lay.extend = function(){
  636. var ai = 1, args = arguments
  637. ,clone = function(target, obj){
  638. target = target || (obj.constructor === Array ? [] : {});
  639. for(var i in obj){
  640. //如果值为对象,则进入递归,继续深度合并
  641. target[i] = (obj[i] && (obj[i].constructor === Object))
  642. ? clone(target[i], obj[i])
  643. : obj[i];
  644. }
  645. return target;
  646. }
  647. args[0] = typeof args[0] === 'object' ? args[0] : {};
  648. for(; ai < args.length; ai++){
  649. if(typeof args[ai] === 'object'){
  650. clone(args[0], args[ai])
  651. }
  652. }
  653. return args[0];
  654. };
  655. //lay 模块版本
  656. lay.v = '1.0.7';
  657. //ie版本
  658. lay.ie = function(){
  659. var agent = navigator.userAgent.toLowerCase();
  660. return (!!window.ActiveXObject || "ActiveXObject" in window) ? (
  661. (agent.match(/msie\s(\d+)/) || [])[1] || '11' //由于 ie11 并没有 msie 的标识
  662. ) : false;
  663. }();
  664. /**
  665. * 获取 layui 常见方法,以便用于组件单独版
  666. */
  667. lay.layui = layui;
  668. lay.getPath = layui.cache.dir; //获取当前 JS 所在目录
  669. lay.stope = layui.stope; //中止冒泡
  670. lay.each = function(){ //遍历
  671. layui.each.apply(layui, arguments);
  672. return this;
  673. };
  674. //数字前置补零
  675. lay.digit = function(num, length, end){
  676. var str = '';
  677. num = String(num);
  678. length = length || 2;
  679. for(var i = num.length; i < length; i++){
  680. str += '0';
  681. }
  682. return num < Math.pow(10, length) ? str + (num|0) : num;
  683. };
  684. //创建元素
  685. lay.elem = function(elemName, attr){
  686. var elem = document.createElement(elemName);
  687. lay.each(attr || {}, function(key, value){
  688. elem.setAttribute(key, value);
  689. });
  690. return elem;
  691. };
  692. //当前页面是否存在滚动条
  693. lay.hasScrollbar = function(){
  694. return document.body.scrollHeight > (window.innerHeight || document.documentElement.clientHeight);
  695. };
  696. //元素定位
  697. lay.position = function(elem, elemView, obj){
  698. if(!elemView) return;
  699. obj = obj || {};
  700. //如果绑定的是 document 或 body 元素,则直接获取鼠标坐标
  701. if(elem === document || elem === lay('body')[0]){
  702. obj.clickType = 'right';
  703. }
  704. //绑定绑定元素的坐标
  705. var rect = obj.clickType === 'right' ? function(){
  706. var e = obj.e || window.event || {};
  707. return {
  708. left: e.clientX
  709. ,top: e.clientY
  710. ,right: e.clientX
  711. ,bottom: e.clientY
  712. }
  713. }() : elem.getBoundingClientRect()
  714. ,elemWidth = elemView.offsetWidth //控件的宽度
  715. ,elemHeight = elemView.offsetHeight //控件的高度
  716. //滚动条高度
  717. ,scrollArea = function(type){
  718. type = type ? 'scrollLeft' : 'scrollTop';
  719. return document.body[type] | document.documentElement[type];
  720. }
  721. //窗口宽高
  722. ,winArea = function(type){
  723. return document.documentElement[type ? 'clientWidth' : 'clientHeight']
  724. }, margin = 5, left = rect.left, top = rect.bottom;
  725. //判断右侧是否超出边界
  726. if(left + elemWidth + margin > winArea('width')){
  727. left = winArea('width') - elemWidth - margin; //如果超出右侧,则将面板向右靠齐
  728. }
  729. //判断底部和顶部是否超出边界
  730. if(top + elemHeight + margin > winArea()){
  731. //优先顶部是否有足够区域显示完全
  732. if(rect.top > elemHeight + margin){
  733. top = rect.top - elemHeight - margin*2; //顶部有足够的区域显示
  734. } else {
  735. //如果面板是鼠标右键弹出,且顶部没有足够区域显示,则将面板向底部靠齐
  736. if(obj.clickType === 'right'){
  737. top = winArea() - elemHeight - margin*2;
  738. if(top < 0) top = 0; //不能溢出窗口顶部
  739. }
  740. }
  741. }
  742. //定位类型
  743. var position = obj.position;
  744. if(position) elemView.style.position = position;
  745. //设置坐标
  746. elemView.style.left = left + (position === 'fixed' ? 0 : scrollArea(1)) + 'px';
  747. elemView.style.top = top + (position === 'fixed' ? 0 : scrollArea()) + 'px';
  748. //防止页面无滚动条时,又因为弹出面板而出现滚动条导致的坐标计算偏差
  749. if(!lay.hasScrollbar()){
  750. var rect1 = elemView.getBoundingClientRect();
  751. //如果弹出面板的溢出窗口底部,则表示将出现滚动条,此时需要重新计算坐标
  752. if(!obj.SYSTEM_RELOAD && (rect1.bottom + margin) > winArea()){
  753. obj.SYSTEM_RELOAD = true;
  754. setTimeout(function(){
  755. lay.position(elem, elemView, obj);
  756. }, 50);
  757. }
  758. }
  759. };
  760. //获取元素上的参数配置上
  761. lay.options = function(elem, attr){
  762. var othis = lay(elem)
  763. ,attrName = attr || 'lay-options';
  764. try {
  765. return new Function('return '+ (othis.attr(attrName) || '{}'))();
  766. } catch(ev) {
  767. hint.error('parseerror:'+ ev, 'error');
  768. return {};
  769. }
  770. };
  771. //元素是否属于顶级元素(document 或 body)
  772. lay.isTopElem = function(elem){
  773. var topElems = [document, lay('body')[0]]
  774. ,matched = false;
  775. lay.each(topElems, function(index, item){
  776. if(item === elem){
  777. return matched = true
  778. }
  779. });
  780. return matched;
  781. };
  782. //追加字符
  783. LAY.addStr = function(str, new_str){
  784. str = str.replace(/\s+/, ' ');
  785. new_str = new_str.replace(/\s+/, ' ').split(' ');
  786. lay.each(new_str, function(ii, item){
  787. if(!new RegExp('\\b'+ item + '\\b').test(str)){
  788. str = str + ' ' + item;
  789. }
  790. });
  791. return str.replace(/^\s|\s$/, '');
  792. };
  793. //移除值
  794. LAY.removeStr = function(str, new_str){
  795. str = str.replace(/\s+/, ' ');
  796. new_str = new_str.replace(/\s+/, ' ').split(' ');
  797. lay.each(new_str, function(ii, item){
  798. var exp = new RegExp('\\b'+ item + '\\b')
  799. if(exp.test(str)){
  800. str = str.replace(exp, '');
  801. }
  802. });
  803. return str.replace(/\s+/, ' ').replace(/^\s|\s$/, '');
  804. };
  805. //查找子元素
  806. LAY.prototype.find = function(selector){
  807. var that = this;
  808. var index = 0, arr = []
  809. ,isObject = typeof selector === 'object';
  810. this.each(function(i, item){
  811. var nativeDOM = isObject ? item.contains(selector) : item.querySelectorAll(selector || null);
  812. for(; index < nativeDOM.length; index++){
  813. arr.push(nativeDOM[index]);
  814. }
  815. that.shift();
  816. });
  817. if(!isObject){
  818. that.selector = (that.selector ? that.selector + ' ' : '') + selector
  819. }
  820. lay.each(arr, function(i, item){
  821. that.push(item);
  822. });
  823. return that;
  824. };
  825. //DOM遍历
  826. LAY.prototype.each = function(fn){
  827. return lay.each.call(this, this, fn);
  828. };
  829. //添加css类
  830. LAY.prototype.addClass = function(className, type){
  831. return this.each(function(index, item){
  832. item.className = LAY[type ? 'removeStr' : 'addStr'](item.className, className)
  833. });
  834. };
  835. //移除 css 类
  836. LAY.prototype.removeClass = function(className){
  837. return this.addClass(className, true);
  838. };
  839. //是否包含 css 类
  840. LAY.prototype.hasClass = function(className){
  841. var has = false;
  842. this.each(function(index, item){
  843. if(new RegExp('\\b'+ className +'\\b').test(item.className)){
  844. has = true;
  845. }
  846. });
  847. return has;
  848. };
  849. //添加或获取 css style
  850. LAY.prototype.css = function(key, value){
  851. var that = this
  852. ,parseValue = function(v){
  853. return isNaN(v) ? v : (v +'px');
  854. };
  855. return (typeof key === 'string' && value === undefined) ? function(){
  856. if(that.length > 0) return that[0].style[key];
  857. }() : that.each(function(index, item){
  858. typeof key === 'object' ? lay.each(key, function(thisKey, thisValue){
  859. item.style[thisKey] = parseValue(thisValue);
  860. }) : item.style[key] = parseValue(value);
  861. });
  862. };
  863. //添加或获取宽度
  864. LAY.prototype.width = function(value){
  865. var that = this;
  866. return value === undefined ? function(){
  867. if(that.length > 0) return that[0].offsetWidth; //此处还需做兼容
  868. }() : that.each(function(index, item){
  869. that.css('width', value);
  870. });
  871. };
  872. //添加或获取高度
  873. LAY.prototype.height = function(value){
  874. var that = this;
  875. return value === undefined ? function(){
  876. if(that.length > 0) return that[0].offsetHeight; //此处还需做兼容
  877. }() : that.each(function(index, item){
  878. that.css('height', value);
  879. });
  880. };
  881. //添加或获取属性
  882. LAY.prototype.attr = function(key, value){
  883. var that = this;
  884. return value === undefined ? function(){
  885. if(that.length > 0) return that[0].getAttribute(key);
  886. }() : that.each(function(index, item){
  887. item.setAttribute(key, value);
  888. });
  889. };
  890. //移除属性
  891. LAY.prototype.removeAttr = function(key){
  892. return this.each(function(index, item){
  893. item.removeAttribute(key);
  894. });
  895. };
  896. //设置或获取 HTML 内容
  897. LAY.prototype.html = function(html){
  898. var that = this;
  899. return html === undefined ? function(){
  900. if(that.length > 0) return that[0].innerHTML;
  901. }() : this.each(function(index, item){
  902. item.innerHTML = html;
  903. });
  904. };
  905. //设置或获取值
  906. LAY.prototype.val = function(value){
  907. var that = this;
  908. return value === undefined ? function(){
  909. if(that.length > 0) return that[0].value;
  910. }() : this.each(function(index, item){
  911. item.value = value;
  912. });
  913. };
  914. //追加内容
  915. LAY.prototype.append = function(elem){
  916. return this.each(function(index, item){
  917. typeof elem === 'object'
  918. ? item.appendChild(elem)
  919. : item.innerHTML = item.innerHTML + elem;
  920. });
  921. };
  922. //移除内容
  923. LAY.prototype.remove = function(elem){
  924. return this.each(function(index, item){
  925. elem ? item.removeChild(elem) : item.parentNode.removeChild(item);
  926. });
  927. };
  928. //事件绑定
  929. LAY.prototype.on = function(eventName, fn){
  930. return this.each(function(index, item){
  931. item.attachEvent ? item.attachEvent('on' + eventName, function(e){
  932. e.target = e.srcElement;
  933. fn.call(item, e);
  934. }) : item.addEventListener(eventName, fn, false);
  935. });
  936. };
  937. //解除事件
  938. LAY.prototype.off = function(eventName, fn){
  939. return this.each(function(index, item){
  940. item.detachEvent
  941. ? item.detachEvent('on'+ eventName, fn)
  942. : item.removeEventListener(eventName, fn, false);
  943. });
  944. };
  945. //暴露 lay 到全局作用域
  946. window.lay = lay;
  947. //如果在 layui 体系中
  948. if(window.layui && layui.define){
  949. layui.define(function(exports){ //layui 加载
  950. exports(MOD_NAME, lay);
  951. });
  952. }
  953. }(window, window.document);
  954. /*! layDate 日期与时间控件 | MIT Licensed */
  955. ;!function(window, document){
  956. "use strict";
  957. var isLayui = window.layui && layui.define, ready = {
  958. getPath: (window.lay && lay.getPath) ? lay.getPath : ''
  959. //载入 CSS 依赖
  960. ,link: function(href, fn, cssname){
  961. //未设置路径,则不主动加载 css
  962. if(!laydate.path) return;
  963. //加载 css
  964. if(window.lay && lay.layui){
  965. lay.layui.link(laydate.path + href, fn, cssname);
  966. }
  967. }
  968. }
  969. //识别预先可能定义的指定全局对象
  970. ,GLOBAL = window.LAYUI_GLOBAL || {}
  971. //外部调用
  972. ,laydate = {
  973. v: '5.3.1' //layDate 版本号
  974. ,config: {} //全局配置项
  975. ,index: (window.laydate && window.laydate.v) ? 100000 : 0
  976. ,path: GLOBAL.laydate_dir || ready.getPath
  977. //设置全局项
  978. ,set: function(options){
  979. var that = this;
  980. that.config = lay.extend({}, that.config, options);
  981. return that;
  982. }
  983. //主体CSS等待事件
  984. ,ready: function(fn){
  985. var cssname = 'laydate', ver = ''
  986. ,path = (isLayui ? 'modules/laydate/' : 'theme/') + 'default/laydate.css?v='+ laydate.v + ver;
  987. isLayui ? layui.addcss(path, fn, cssname) : ready.link(path, fn, cssname);
  988. return this;
  989. }
  990. }
  991. //操作当前实例
  992. ,thisModule = function(){
  993. var that = this
  994. ,options = that.config
  995. ,id = options.id;
  996. thisModule.that[id] = that; //记录当前实例对象
  997. return {
  998. //提示框
  999. hint: function(content){
  1000. that.hint.call(that, content);
  1001. }
  1002. ,config: that.config
  1003. };
  1004. }
  1005. //字符常量
  1006. ,MOD_NAME = 'laydate', ELEM = '.layui-laydate', THIS = 'layui-this', SHOW = 'layui-show', HIDE = 'layui-hide', DISABLED = 'laydate-disabled', LIMIT_YEAR = [100, 200000]
  1007. ,ELEM_STATIC = 'layui-laydate-static', ELEM_LIST = 'layui-laydate-list', ELEM_SELECTED = 'laydate-selected', ELEM_HINT = 'layui-laydate-hint', ELEM_PREV = 'laydate-day-prev', ELEM_NEXT = 'laydate-day-next', ELEM_FOOTER = 'layui-laydate-footer', ELEM_CONFIRM = '.laydate-btns-confirm', ELEM_TIME_TEXT = 'laydate-time-text', ELEM_TIME_BTN = 'laydate-btns-time', ELEM_PREVIEW = 'layui-laydate-preview'
  1008. //组件构造器
  1009. ,Class = function(options){
  1010. var that = this;
  1011. that.index = ++laydate.index;
  1012. that.config = lay.extend({}, that.config, laydate.config, options);
  1013. //初始化 id 参数
  1014. options = that.config;
  1015. options.id = ('id' in options) ? options.id : that.index;
  1016. //初始化
  1017. laydate.ready(function(){
  1018. that.init();
  1019. });
  1020. }
  1021. //日期格式字符
  1022. ,dateType = 'yyyy|y|MM|M|dd|d|HH|H|mm|m|ss|s';
  1023. //将日期格式字符转换为数组
  1024. thisModule.formatArr = function(format){
  1025. return (format || '').match(new RegExp(dateType + '|.', 'g')) || []
  1026. };
  1027. /*
  1028. 组件操作
  1029. */
  1030. //是否闰年
  1031. Class.isLeapYear = function(year){
  1032. return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
  1033. };
  1034. //默认配置
  1035. Class.prototype.config = {
  1036. type: 'date' //控件类型,支持:year/month/date/time/datetime
  1037. ,range: false //是否开启范围选择,即双控件
  1038. ,format: 'yyyy-MM-dd' //默认日期格式
  1039. ,value: null //默认日期,支持传入new Date(),或者符合format参数设定的日期格式字符
  1040. ,isInitValue: true //用于控制是否自动向元素填充初始值(需配合 value 参数使用)
  1041. ,min: '1900-1-1' //有效最小日期,年月日必须用“-”分割,时分秒必须用“:”分割。注意:它并不是遵循 format 设定的格式。
  1042. ,max: '2099-12-31' //有效最大日期,同上
  1043. ,trigger: 'click' //呼出控件的事件
  1044. ,show: false //是否直接显示,如果设置 true,则默认直接显示控件
  1045. ,showBottom: true //是否显示底部栏
  1046. ,isPreview: true //是否显示值预览
  1047. ,btns: ['clear', 'now', 'confirm'] //右下角显示的按钮,会按照数组顺序排列
  1048. ,lang: 'cn' //语言,只支持cn/en,即中文和英文
  1049. ,theme: 'default' //主题
  1050. ,position: null //控件定位方式定位, 默认absolute,支持:fixed/absolute/static
  1051. ,calendar: false //是否开启公历重要节日,仅支持中文版
  1052. ,mark: {} //日期备注,如重要事件或活动标记
  1053. ,zIndex: null //控件层叠顺序
  1054. ,done: null //控件选择完毕后的回调,点击清空/现在/确定也均会触发
  1055. ,change: null //日期时间改变后的回调
  1056. };
  1057. //多语言
  1058. Class.prototype.lang = function(){
  1059. var that = this
  1060. ,options = that.config
  1061. ,text = {
  1062. cn: {
  1063. weeks: ['日', '一', '二', '三', '四', '五', '六']
  1064. ,time: ['时', '分', '秒']
  1065. ,timeTips: '选择时间'
  1066. ,startTime: '开始时间'
  1067. ,endTime: '结束时间'
  1068. ,dateTips: '返回日期'
  1069. ,month: ['一', '二', '三', '四', '五', '六', '七', '八', '九', '十', '十一', '十二']
  1070. ,tools: {
  1071. confirm: '确定'
  1072. ,clear: '清空'
  1073. ,now: '现在'
  1074. }
  1075. ,timeout: '结束时间不能早于开始时间<br>请重新选择'
  1076. ,invalidDate: '不在有效日期或时间范围内'
  1077. ,formatError: ['日期格式不合法<br>必须遵循下述格式:<br>', '<br>已为你重置']
  1078. ,preview: '当前选中的结果'
  1079. }
  1080. ,en: {
  1081. weeks: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa']
  1082. ,time: ['Hours', 'Minutes', 'Seconds']
  1083. ,timeTips: 'Select Time'
  1084. ,startTime: 'Start Time'
  1085. ,endTime: 'End Time'
  1086. ,dateTips: 'Select Date'
  1087. ,month: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
  1088. ,tools: {
  1089. confirm: 'Confirm'
  1090. ,clear: 'Clear'
  1091. ,now: 'Now'
  1092. }
  1093. ,timeout: 'End time cannot be less than start Time<br>Please re-select'
  1094. ,invalidDate: 'Invalid date'
  1095. ,formatError: ['The date format error<br>Must be followed:<br>', '<br>It has been reset']
  1096. ,preview: 'The selected result'
  1097. }
  1098. };
  1099. return text[options.lang] || text['cn'];
  1100. };
  1101. //初始准备
  1102. Class.prototype.init = function(){
  1103. var that = this
  1104. ,options = that.config
  1105. ,isStatic = options.position === 'static'
  1106. ,format = {
  1107. year: 'yyyy'
  1108. ,month: 'yyyy-MM'
  1109. ,date: 'yyyy-MM-dd'
  1110. ,time: 'HH:mm:ss'
  1111. ,datetime: 'yyyy-MM-dd HH:mm:ss'
  1112. };
  1113. options.elem = lay(options.elem);
  1114. options.eventElem = lay(options.eventElem);
  1115. if(!options.elem[0]) return;
  1116. //日期范围分隔符
  1117. that.rangeStr = options.range ? (typeof options.range === 'string' ? options.range : '至') : '';
  1118. //若 range 参数为数组,则表示为开始日期和结束日期的 input 对象
  1119. if(options.range && options.range.constructor === Array){
  1120. that.rangeElem = [
  1121. lay(options.range[0]),
  1122. lay(options.range[1])
  1123. ];
  1124. }
  1125. //若 type 设置非法,则初始化为 date 类型
  1126. if(!format[options.type]){
  1127. window.console && console.error && console.error('laydate type error:\''+ options.type + '\' is not supported')
  1128. options.type = 'date';
  1129. }
  1130. //根据不同 type,初始化默认 format
  1131. if(options.format === format.date){
  1132. options.format = format[options.type] || format.date;
  1133. }
  1134. //将日期格式转化成数组
  1135. that.format = thisModule.formatArr(options.format);
  1136. //生成正则表达式
  1137. that.EXP_IF = '';
  1138. that.EXP_SPLIT = '';
  1139. lay.each(that.format, function(i, item){
  1140. var EXP = new RegExp(dateType).test(item)
  1141. ? '\\d{'+ function(){
  1142. if(new RegExp(dateType).test(that.format[i === 0 ? i + 1 : i - 1]||'')){
  1143. if(/^yyyy|y$/.test(item)) return 4;
  1144. return item.length;
  1145. }
  1146. if(/^yyyy$/.test(item)) return '1,4';
  1147. if(/^y$/.test(item)) return '1,308';
  1148. return '1,2';
  1149. }() +'}'
  1150. : '\\' + item;
  1151. that.EXP_IF = that.EXP_IF + EXP;
  1152. that.EXP_SPLIT = that.EXP_SPLIT + '(' + EXP + ')';
  1153. });
  1154. //验证日期格式正则
  1155. that.EXP_IF_ONE = new RegExp('^'+ that.EXP_IF +'$'); //验证单个日期格式
  1156. that.EXP_IF = new RegExp('^'+ (
  1157. options.range ?
  1158. that.EXP_IF + '\\s\\'+ that.rangeStr + '\\s' + that.EXP_IF
  1159. : that.EXP_IF
  1160. ) +'$');
  1161. that.EXP_SPLIT = new RegExp('^'+ that.EXP_SPLIT +'$', '');
  1162. //如果不是input|textarea元素,则默认采用click事件
  1163. if(!that.isInput(options.elem[0])){
  1164. if(options.trigger === 'focus'){
  1165. options.trigger = 'click';
  1166. }
  1167. }
  1168. //设置唯一KEY
  1169. if(!options.elem.attr('lay-key')){
  1170. options.elem.attr('lay-key', that.index);
  1171. options.eventElem.attr('lay-key', that.index);
  1172. }
  1173. //记录重要日期
  1174. options.mark = lay.extend({}, (options.calendar && options.lang === 'cn') ? {
  1175. '0-1-1': '元旦'
  1176. ,'0-2-14': '情人'
  1177. ,'0-3-8': '妇女'
  1178. ,'0-3-12': '植树'
  1179. ,'0-4-1': '愚人'
  1180. ,'0-5-1': '劳动'
  1181. ,'0-5-4': '青年'
  1182. ,'0-6-1': '儿童'
  1183. ,'0-9-10': '教师'
  1184. ,'0-9-18': '国耻'
  1185. ,'0-10-1': '国庆'
  1186. ,'0-12-25': '圣诞'
  1187. } : {}, options.mark);
  1188. //获取限制内日期
  1189. lay.each(['min', 'max'], function(i, item){
  1190. var ymd = [], hms = [];
  1191. if(typeof options[item] === 'number'){ //如果为数字
  1192. var day = options[item]
  1193. ,time = new Date().getTime()
  1194. ,STAMP = 86400000 //代表一天的毫秒数
  1195. ,thisDate = new Date(
  1196. day ? (
  1197. day < STAMP ? time + day*STAMP : day //如果数字小于一天的毫秒数,则数字为天数,否则为毫秒数
  1198. ) : time
  1199. );
  1200. ymd = [thisDate.getFullYear(), thisDate.getMonth() + 1, thisDate.getDate()];
  1201. day < STAMP || (hms = [thisDate.getHours(), thisDate.getMinutes(), thisDate.getSeconds()]);
  1202. } else {
  1203. ymd = (options[item].match(/\d+-\d+-\d+/) || [''])[0].split('-');
  1204. hms = (options[item].match(/\d+:\d+:\d+/) || [''])[0].split(':');
  1205. }
  1206. options[item] = {
  1207. year: ymd[0] | 0 || new Date().getFullYear()
  1208. ,month: ymd[1] ? (ymd[1] | 0) - 1 : new Date().getMonth()
  1209. ,date: ymd[2] | 0 || new Date().getDate()
  1210. ,hours: hms[0] | 0
  1211. ,minutes: hms[1] | 0
  1212. ,seconds: hms[2] | 0
  1213. };
  1214. });
  1215. that.elemID = 'layui-laydate'+ options.elem.attr('lay-key');
  1216. if(options.show || isStatic) that.render();
  1217. isStatic || that.events();
  1218. //默认赋值
  1219. if(options.value && options.isInitValue){
  1220. if(options.value.constructor === Date){
  1221. that.setValue(that.parse(0, that.systemDate(options.value)));
  1222. } else {
  1223. that.setValue(options.value);
  1224. }
  1225. }
  1226. };
  1227. //控件主体渲染
  1228. Class.prototype.render = function(){
  1229. var that = this
  1230. ,options = that.config
  1231. ,lang = that.lang()
  1232. ,isStatic = options.position === 'static'
  1233. //主面板
  1234. ,elem = that.elem = lay.elem('div', {
  1235. id: that.elemID
  1236. ,'class': [
  1237. 'layui-laydate'
  1238. ,options.range ? ' layui-laydate-range' : ''
  1239. ,isStatic ? (' '+ ELEM_STATIC) : ''
  1240. ,options.theme && options.theme !== 'default' && !/^#/.test(options.theme) ? (' laydate-theme-' + options.theme) : ''
  1241. ].join('')
  1242. })
  1243. //主区域
  1244. ,elemMain = that.elemMain = []
  1245. ,elemHeader = that.elemHeader = []
  1246. ,elemCont = that.elemCont = []
  1247. ,elemTable = that.table = []
  1248. //底部区域
  1249. ,divFooter = that.footer = lay.elem('div', {
  1250. 'class': ELEM_FOOTER
  1251. });
  1252. if(options.zIndex) elem.style.zIndex = options.zIndex;
  1253. //单双日历区域
  1254. lay.each(new Array(2), function(i){
  1255. if(!options.range && i > 0){
  1256. return true;
  1257. }
  1258. //头部区域
  1259. var divHeader = lay.elem('div', {
  1260. 'class': 'layui-laydate-header'
  1261. })
  1262. //左右切换
  1263. ,headerChild = [function(){ //上一年
  1264. var elem = lay.elem('i', {
  1265. 'class': 'layui-icon laydate-icon laydate-prev-y'
  1266. });
  1267. elem.innerHTML = '&#xe65a;';
  1268. return elem;
  1269. }(), function(){ //上一月
  1270. var elem = lay.elem('i', {
  1271. 'class': 'layui-icon laydate-icon laydate-prev-m'
  1272. });
  1273. elem.innerHTML = '&#xe603;';
  1274. return elem;
  1275. }(), function(){ //年月选择
  1276. var elem = lay.elem('div', {
  1277. 'class': 'laydate-set-ym'
  1278. }), spanY = lay.elem('span'), spanM = lay.elem('span');
  1279. elem.appendChild(spanY);
  1280. elem.appendChild(spanM);
  1281. return elem;
  1282. }(), function(){ //下一月
  1283. var elem = lay.elem('i', {
  1284. 'class': 'layui-icon laydate-icon laydate-next-m'
  1285. });
  1286. elem.innerHTML = '&#xe602;';
  1287. return elem;
  1288. }(), function(){ //下一年
  1289. var elem = lay.elem('i', {
  1290. 'class': 'layui-icon laydate-icon laydate-next-y'
  1291. });
  1292. elem.innerHTML = '&#xe65b;';
  1293. return elem;
  1294. }()]
  1295. //日历内容区域
  1296. ,divContent = lay.elem('div', {
  1297. 'class': 'layui-laydate-content'
  1298. })
  1299. ,table = lay.elem('table')
  1300. ,thead = lay.elem('thead'), theadTr = lay.elem('tr');
  1301. //生成年月选择
  1302. lay.each(headerChild, function(i, item){
  1303. divHeader.appendChild(item);
  1304. });
  1305. //生成表格
  1306. thead.appendChild(theadTr);
  1307. lay.each(new Array(6), function(i){ //表体
  1308. var tr = table.insertRow(0);
  1309. lay.each(new Array(7), function(j){
  1310. if(i === 0){
  1311. var th = lay.elem('th');
  1312. th.innerHTML = lang.weeks[j];
  1313. theadTr.appendChild(th);
  1314. }
  1315. tr.insertCell(j);
  1316. });
  1317. });
  1318. table.insertBefore(thead, table.children[0]); //表头
  1319. divContent.appendChild(table);
  1320. elemMain[i] = lay.elem('div', {
  1321. 'class': 'layui-laydate-main laydate-main-list-'+ i
  1322. });
  1323. elemMain[i].appendChild(divHeader);
  1324. elemMain[i].appendChild(divContent);
  1325. elemHeader.push(headerChild);
  1326. elemCont.push(divContent);
  1327. elemTable.push(table);
  1328. });
  1329. //生成底部栏
  1330. lay(divFooter).html(function(){
  1331. var html = [], btns = [];
  1332. if(options.type === 'datetime'){
  1333. html.push('<span lay-type="datetime" class="'+ ELEM_TIME_BTN +'">'+ lang.timeTips +'</span>');
  1334. }
  1335. if(!(!options.range && options.type === 'datetime')){
  1336. html.push('<span class="'+ ELEM_PREVIEW +'" title="'+ lang.preview +'"></span>')
  1337. }
  1338. lay.each(options.btns, function(i, item){
  1339. var title = lang.tools[item] || 'btn';
  1340. if(options.range && item === 'now') return;
  1341. if(isStatic && item === 'clear') title = options.lang === 'cn' ? '重置' : 'Reset';
  1342. btns.push('<span lay-type="'+ item +'" class="laydate-btns-'+ item +'">'+ title +'</span>');
  1343. });
  1344. html.push('<div class="laydate-footer-btns">'+ btns.join('') +'</div>');
  1345. return html.join('');
  1346. }());
  1347. //插入到主区域
  1348. lay.each(elemMain, function(i, main){
  1349. elem.appendChild(main);
  1350. });
  1351. options.showBottom && elem.appendChild(divFooter);
  1352. //生成自定义主题
  1353. if(/^#/.test(options.theme)){
  1354. var style = lay.elem('style')
  1355. ,styleText = [
  1356. '#{{id}} .layui-laydate-header{background-color:{{theme}};}'
  1357. ,'#{{id}} .layui-this{background-color:{{theme}} !important;}'
  1358. ].join('').replace(/{{id}}/g, that.elemID).replace(/{{theme}}/g, options.theme);
  1359. if('styleSheet' in style){
  1360. style.setAttribute('type', 'text/css');
  1361. style.styleSheet.cssText = styleText;
  1362. } else {
  1363. style.innerHTML = styleText;
  1364. }
  1365. lay(elem).addClass('laydate-theme-molv');
  1366. elem.appendChild(style);
  1367. }
  1368. //记录当前执行的实例索引
  1369. laydate.thisId = options.id;
  1370. //移除上一个控件
  1371. that.remove(Class.thisElemDate);
  1372. //如果是静态定位,则插入到指定的容器中,否则,插入到body
  1373. isStatic ? options.elem.append(elem) : (
  1374. document.body.appendChild(elem)
  1375. ,that.position() //定位
  1376. );
  1377. that.checkDate().calendar(null, 0, 'init'); //初始校验
  1378. that.changeEvent(); //日期切换
  1379. Class.thisElemDate = that.elemID;
  1380. typeof options.ready === 'function' && options.ready(lay.extend({}, options.dateTime, {
  1381. month: options.dateTime.month + 1
  1382. }));
  1383. that.preview();
  1384. };
  1385. //控件移除
  1386. Class.prototype.remove = function(prev){
  1387. var that = this
  1388. ,options = that.config
  1389. ,elem = lay('#'+ (prev || that.elemID));
  1390. if(!elem[0]) return that;
  1391. if(!elem.hasClass(ELEM_STATIC)){
  1392. that.checkDate(function(){
  1393. elem.remove();
  1394. //delete options.dateTime;
  1395. //delete that.endDate;
  1396. });
  1397. }
  1398. return that;
  1399. };
  1400. //定位算法
  1401. Class.prototype.position = function(){
  1402. var that = this
  1403. ,options = that.config;
  1404. lay.position(that.bindElem || options.elem[0], that.elem, {
  1405. position: options.position
  1406. });
  1407. return that;
  1408. };
  1409. //提示
  1410. Class.prototype.hint = function(content){
  1411. var that = this
  1412. ,options = that.config
  1413. ,div = lay.elem('div', {
  1414. 'class': ELEM_HINT
  1415. });
  1416. if(!that.elem) return;
  1417. div.innerHTML = content || '';
  1418. lay(that.elem).find('.'+ ELEM_HINT).remove();
  1419. that.elem.appendChild(div);
  1420. clearTimeout(that.hinTimer);
  1421. that.hinTimer = setTimeout(function(){
  1422. lay(that.elem).find('.'+ ELEM_HINT).remove();
  1423. }, 3000);
  1424. };
  1425. //获取递增/减后的年月
  1426. Class.prototype.getAsYM = function(Y, M, type){
  1427. type ? M-- : M++;
  1428. if(M < 0){
  1429. M = 11;
  1430. Y--;
  1431. }
  1432. if(M > 11){
  1433. M = 0;
  1434. Y++;
  1435. }
  1436. return [Y, M];
  1437. };
  1438. //系统日期
  1439. Class.prototype.systemDate = function(newDate){
  1440. var thisDate = newDate || new Date();
  1441. return {
  1442. year: thisDate.getFullYear() //年
  1443. ,month: thisDate.getMonth() //月
  1444. ,date: thisDate.getDate() //日
  1445. ,hours: newDate ? newDate.getHours() : 0 //时
  1446. ,minutes: newDate ? newDate.getMinutes() : 0 //分
  1447. ,seconds: newDate ? newDate.getSeconds() : 0 //秒
  1448. }
  1449. };
  1450. //日期校验
  1451. Class.prototype.checkDate = function(fn){
  1452. var that = this
  1453. ,thisDate = new Date()
  1454. ,options = that.config
  1455. ,lang = that.lang()
  1456. ,dateTime = options.dateTime = options.dateTime || that.systemDate()
  1457. ,thisMaxDate, error
  1458. ,elem = that.bindElem || options.elem[0]
  1459. ,valType = that.isInput(elem) ? 'val' : 'html'
  1460. ,value = function(){
  1461. //如果传入了开始和结束日期的 input 对象,则将其拼接为日期范围字符
  1462. if(that.rangeElem){
  1463. var vals = [that.rangeElem[0].val(), that.rangeElem[1].val()];
  1464. if(vals[0] && vals[1]){
  1465. return vals.join(' ' + that.rangeStr + ' ');
  1466. }
  1467. }
  1468. return that.isInput(elem) ? elem.value : (options.position === 'static' ? '' : lay(elem).attr('lay-date'));
  1469. }()
  1470. //校验日期有效数字
  1471. ,checkValid = function(dateTime){
  1472. if(dateTime.year > LIMIT_YEAR[1]) dateTime.year = LIMIT_YEAR[1], error = true; //不能超过20万年
  1473. if(dateTime.month > 11) dateTime.month = 11, error = true;
  1474. if(dateTime.hours > 23) dateTime.hours = 0, error = true;
  1475. if(dateTime.minutes > 59) dateTime.minutes = 0, dateTime.hours++, error = true;
  1476. if(dateTime.seconds > 59) dateTime.seconds = 0, dateTime.minutes++, error = true;
  1477. //计算当前月的最后一天
  1478. thisMaxDate = laydate.getEndDate(dateTime.month + 1, dateTime.year);
  1479. if(dateTime.date > thisMaxDate) dateTime.date = thisMaxDate, error = true;
  1480. }
  1481. //获得初始化日期值
  1482. ,initDate = function(dateTime, value, index){
  1483. var startEnd = ['startTime', 'endTime'];
  1484. value = (value.match(that.EXP_SPLIT) || []).slice(1);
  1485. index = index || 0;
  1486. if(options.range){
  1487. that[startEnd[index]] = that[startEnd[index]] || {};
  1488. }
  1489. lay.each(that.format, function(i, item){
  1490. var thisv = parseFloat(value[i]);
  1491. if(value[i].length < item.length) error = true;
  1492. if(/yyyy|y/.test(item)){ //年
  1493. if(thisv < LIMIT_YEAR[0]) thisv = LIMIT_YEAR[0], error = true; //年不能低于100年
  1494. dateTime.year = thisv;
  1495. } else if(/MM|M/.test(item)){ //月
  1496. if(thisv < 1) thisv = 1, error = true;
  1497. dateTime.month = thisv - 1;
  1498. } else if(/dd|d/.test(item)){ //日
  1499. if(thisv < 1) thisv = 1, error = true;
  1500. dateTime.date = thisv;
  1501. } else if(/HH|H/.test(item)){ //时
  1502. if(thisv < 1) thisv = 0, error = true;
  1503. dateTime.hours = thisv;
  1504. options.range && (that[startEnd[index]].hours = thisv);
  1505. } else if(/mm|m/.test(item)){ //分
  1506. if(thisv < 1) thisv = 0, error = true;
  1507. dateTime.minutes = thisv;
  1508. options.range && (that[startEnd[index]].minutes = thisv);
  1509. } else if(/ss|s/.test(item)){ //秒
  1510. if(thisv < 1) thisv = 0, error = true;
  1511. dateTime.seconds = thisv;
  1512. options.range && (that[startEnd[index]].seconds = thisv);
  1513. }
  1514. });
  1515. checkValid(dateTime);
  1516. };
  1517. if(fn === 'limit') return checkValid(dateTime), that;
  1518. value = value || options.value;
  1519. if(typeof value === 'string'){
  1520. value = value.replace(/\s+/g, ' ').replace(/^\s|\s$/g, '');
  1521. }
  1522. //如果开启范围,则计算结束日期
  1523. var getEndDate = function(){
  1524. if(options.range){
  1525. that.endDate = that.endDate || lay.extend({}, options.dateTime, function(){
  1526. var obj = {}
  1527. ,dateTime = options.dateTime
  1528. ,EYM = that.getAsYM(dateTime.year, dateTime.month);
  1529. //初始右侧面板的年月
  1530. if(options.type === 'year'){
  1531. obj.year = dateTime.year + 1;
  1532. } else if(options.type !== 'time'){
  1533. obj.year = EYM[0];
  1534. obj.month = EYM[1];
  1535. }
  1536. //初始右侧面板的时间
  1537. if(options.type === 'datetime' || options.type === 'time'){
  1538. obj.hours = 23;
  1539. obj.minutes = obj.seconds = 59;
  1540. }
  1541. return obj;
  1542. }());
  1543. }
  1544. };
  1545. getEndDate();
  1546. if(typeof value === 'string' && value){
  1547. if(that.EXP_IF.test(value)){ //校验日期格式
  1548. if(options.range){
  1549. value = value.split(' '+ that.rangeStr +' ');
  1550. lay.each([options.dateTime, that.endDate], function(i, item){
  1551. initDate(item, value[i], i);
  1552. });
  1553. } else {
  1554. initDate(dateTime, value);
  1555. }
  1556. } else {
  1557. //格式不合法
  1558. that.hint(lang.formatError[0] + (
  1559. options.range ? (options.format + ' '+ that.rangeStr +' ' + options.format) : options.format
  1560. ) + lang.formatError[1]);
  1561. error = true;
  1562. }
  1563. } else if(value && value.constructor === Date){ //如果值为日期对象时
  1564. options.dateTime = that.systemDate(value);
  1565. } else {
  1566. //重置开始日期
  1567. options.dateTime = that.systemDate();
  1568. delete that.startTime;
  1569. //重置结束日期
  1570. delete that.endDate; //删除原有的结束日期
  1571. getEndDate(); //并重新获得新的结束日期
  1572. delete that.endTime;
  1573. }
  1574. //从日期范围表单中获取初始值
  1575. (function(){
  1576. if(that.rangeElem){
  1577. var vals = [that.rangeElem[0].val(), that.rangeElem[1].val()]
  1578. ,arrDate = [options.dateTime, that.endDate];
  1579. lay.each(vals, function(_i, _v){
  1580. if(that.EXP_IF_ONE.test(_v)){ //校验日期格式
  1581. initDate(arrDate[_i], _v, _i);
  1582. }
  1583. });
  1584. }
  1585. })();
  1586. //校验日期有效数字
  1587. checkValid(dateTime);
  1588. if(options.range) checkValid(that.endDate);
  1589. //如果初始值格式错误,则纠正初始值
  1590. if(error && value){
  1591. that.setValue(
  1592. options.range ? (that.endDate ? that.parse() : '') : that.parse()
  1593. );
  1594. }
  1595. //如果当前日期不在设定的最大小日期区间,则自动纠正在可选区域
  1596. var getDateTime = function(obj){
  1597. return that.newDate(obj).getTime();
  1598. };
  1599. //校验主面板是否在可选日期区间
  1600. if(getDateTime(dateTime) > getDateTime(options.max) || getDateTime(dateTime) < getDateTime(options.min)){
  1601. dateTime = options.dateTime = lay.extend({}, options.min);
  1602. }
  1603. //校验右侧面板是否在可选日期区间
  1604. if(options.range){
  1605. if(getDateTime(that.endDate) < getDateTime(options.min) || getDateTime(that.endDate) > getDateTime(options.max)){
  1606. that.endDate = lay.extend({}, options.max);
  1607. }
  1608. }
  1609. fn && fn();
  1610. return that;
  1611. };
  1612. //公历重要日期与自定义备注
  1613. Class.prototype.mark = function(td, YMD){
  1614. var that = this
  1615. ,mark, options = that.config;
  1616. lay.each(options.mark, function(key, title){
  1617. var keys = key.split('-');
  1618. if((keys[0] == YMD[0] || keys[0] == 0) //每年的每月
  1619. && (keys[1] == YMD[1] || keys[1] == 0) //每月的每日
  1620. && keys[2] == YMD[2]){ //特定日
  1621. mark = title || YMD[2];
  1622. }
  1623. });
  1624. mark && td.html('<span class="laydate-day-mark">'+ mark +'</span>');
  1625. return that;
  1626. };
  1627. //无效日期范围的标记
  1628. Class.prototype.limit = function(elem, date, index, time){
  1629. var that = this
  1630. ,options = that.config, timestrap = {}
  1631. ,dateTime = options[index > 41 ? 'endDate' : 'dateTime']
  1632. ,isOut, thisDateTime = lay.extend({}, dateTime, date || {});
  1633. lay.each({
  1634. now: thisDateTime
  1635. ,min: options.min
  1636. ,max: options.max
  1637. }, function(key, item){
  1638. timestrap[key] = that.newDate(lay.extend({
  1639. year: item.year
  1640. ,month: item.month
  1641. ,date: item.date
  1642. }, function(){
  1643. var hms = {};
  1644. lay.each(time, function(i, keys){
  1645. hms[keys] = item[keys];
  1646. });
  1647. return hms;
  1648. }())).getTime(); //time:是否比较时分秒
  1649. });
  1650. isOut = timestrap.now < timestrap.min || timestrap.now > timestrap.max;
  1651. elem && elem[isOut ? 'addClass' : 'removeClass'](DISABLED);
  1652. return isOut;
  1653. };
  1654. //当前日期对象
  1655. Class.prototype.thisDateTime = function(index){
  1656. var that = this
  1657. ,options = that.config;
  1658. return index ? that.endDate: options.dateTime;
  1659. };
  1660. //日历表
  1661. Class.prototype.calendar = function(value, index, type){
  1662. var that = this
  1663. ,options = that.config
  1664. ,index = index ? 1 : 0
  1665. ,dateTime = value || that.thisDateTime(index)
  1666. ,thisDate = new Date(), startWeek, prevMaxDate, thisMaxDate
  1667. ,lang = that.lang()
  1668. ,isAlone = options.type !== 'date' && options.type !== 'datetime'
  1669. ,tds = lay(that.table[index]).find('td')
  1670. ,elemYM = lay(that.elemHeader[index][2]).find('span');
  1671. if(dateTime.year < LIMIT_YEAR[0]) dateTime.year = LIMIT_YEAR[0], that.hint(lang.invalidDate);
  1672. if(dateTime.year > LIMIT_YEAR[1]) dateTime.year = LIMIT_YEAR[1], that.hint(lang.invalidDate);
  1673. //记录初始值
  1674. if(!that.firstDate){
  1675. that.firstDate = lay.extend({}, dateTime);
  1676. }
  1677. //计算当前月第一天的星期
  1678. thisDate.setFullYear(dateTime.year, dateTime.month, 1);
  1679. startWeek = thisDate.getDay();
  1680. prevMaxDate = laydate.getEndDate(dateTime.month || 12, dateTime.year); //计算上个月的最后一天
  1681. thisMaxDate = laydate.getEndDate(dateTime.month + 1, dateTime.year); //计算当前月的最后一天
  1682. //赋值日
  1683. lay.each(tds, function(index_, item){
  1684. var YMD = [dateTime.year, dateTime.month], st = 0;
  1685. item = lay(item);
  1686. item.removeAttr('class');
  1687. if(index_ < startWeek){
  1688. st = prevMaxDate - startWeek + index_;
  1689. item.addClass('laydate-day-prev');
  1690. YMD = that.getAsYM(dateTime.year, dateTime.month, 'sub');
  1691. } else if(index_ >= startWeek && index_ < thisMaxDate + startWeek){
  1692. st = index_ - startWeek;
  1693. st + 1 === dateTime.date && item.addClass(THIS);
  1694. } else {
  1695. st = index_ - thisMaxDate - startWeek;
  1696. item.addClass('laydate-day-next');
  1697. YMD = that.getAsYM(dateTime.year, dateTime.month);
  1698. }
  1699. YMD[1]++;
  1700. YMD[2] = st + 1;
  1701. item.attr('lay-ymd', YMD.join('-')).html(YMD[2]);
  1702. that.mark(item, YMD).limit(item, {
  1703. year: YMD[0]
  1704. ,month: YMD[1] - 1
  1705. ,date: YMD[2]
  1706. }, index_);
  1707. });
  1708. //同步头部年月
  1709. lay(elemYM[0]).attr('lay-ym', dateTime.year + '-' + (dateTime.month + 1));
  1710. lay(elemYM[1]).attr('lay-ym', dateTime.year + '-' + (dateTime.month + 1));
  1711. if(options.lang === 'cn'){
  1712. lay(elemYM[0]).attr('lay-type', 'year').html(dateTime.year + ' 年')
  1713. lay(elemYM[1]).attr('lay-type', 'month').html((dateTime.month + 1) + ' 月');
  1714. } else {
  1715. lay(elemYM[0]).attr('lay-type', 'month').html(lang.month[dateTime.month]);
  1716. lay(elemYM[1]).attr('lay-type', 'year').html(dateTime.year);
  1717. }
  1718. //初始默认选择器
  1719. if(isAlone){ //年、月等独立选择器
  1720. if(options.range){
  1721. if(value){
  1722. that.listYM = [
  1723. [options.dateTime.year, options.dateTime.month + 1]
  1724. ,[that.endDate.year, that.endDate.month + 1]
  1725. ];
  1726. that.list(options.type, 0).list(options.type, 1);
  1727. //同步按钮可点状态
  1728. options.type === 'time' ? that.setBtnStatus('时间'
  1729. ,lay.extend({}, that.systemDate(), that.startTime)
  1730. ,lay.extend({}, that.systemDate(), that.endTime)
  1731. ) : that.setBtnStatus(true);
  1732. }
  1733. } else {
  1734. that.listYM = [[dateTime.year, dateTime.month + 1]];
  1735. that.list(options.type, 0);
  1736. }
  1737. }
  1738. //初始赋值双日历
  1739. if(options.range && type === 'init' && !value){
  1740. //执行渲染第二个日历
  1741. that.calendar(that.endDate, 1);
  1742. }
  1743. //通过检测当前有效日期,来设定确定按钮是否可点
  1744. if(!options.range) that.limit(lay(that.footer).find(ELEM_CONFIRM), null, 0, ['hours', 'minutes', 'seconds']);
  1745. //同步按钮可点状态
  1746. that.setBtnStatus();
  1747. return that;
  1748. };
  1749. //生成年月时分秒列表
  1750. Class.prototype.list = function(type, index){
  1751. var that = this
  1752. ,options = that.config
  1753. ,dateTime = options.dateTime
  1754. ,lang = that.lang()
  1755. ,isAlone = options.range && options.type !== 'date' && options.type !== 'datetime' //独立范围选择器
  1756. ,ul = lay.elem('ul', {
  1757. 'class': ELEM_LIST + ' ' + ({
  1758. year: 'laydate-year-list'
  1759. ,month: 'laydate-month-list'
  1760. ,time: 'laydate-time-list'
  1761. })[type]
  1762. })
  1763. ,elemHeader = that.elemHeader[index]
  1764. ,elemYM = lay(elemHeader[2]).find('span')
  1765. ,elemCont = that.elemCont[index || 0]
  1766. ,haveList = lay(elemCont).find('.'+ ELEM_LIST)[0]
  1767. ,isCN = options.lang === 'cn'
  1768. ,text = isCN ? '年' : ''
  1769. ,listYM = that.listYM[index] || {}
  1770. ,hms = ['hours', 'minutes', 'seconds']
  1771. ,startEnd = ['startTime', 'endTime'][index];
  1772. if(listYM[0] < 1) listYM[0] = 1;
  1773. //生成年列表
  1774. if(type === 'year'){
  1775. var yearNum, startY = yearNum = listYM[0] - 7;
  1776. if(startY < 1) startY = yearNum = 1;
  1777. lay.each(new Array(15), function(i){
  1778. var li = lay.elem('li', {
  1779. 'lay-ym': yearNum
  1780. }), ymd = {year: yearNum};
  1781. yearNum == listYM[0] && lay(li).addClass(THIS);
  1782. li.innerHTML = yearNum + text;
  1783. ul.appendChild(li);
  1784. if(yearNum < that.firstDate.year){
  1785. ymd.month = options.min.month;
  1786. ymd.date = options.min.date;
  1787. } else if(yearNum >= that.firstDate.year){
  1788. ymd.month = options.max.month;
  1789. ymd.date = options.max.date;
  1790. }
  1791. that.limit(lay(li), ymd, index);
  1792. yearNum++;
  1793. });
  1794. lay(elemYM[isCN ? 0 : 1]).attr('lay-ym', (yearNum - 8) + '-' + listYM[1])
  1795. .html((startY + text) + ' - ' + (yearNum - 1 + text));
  1796. }
  1797. //生成月列表
  1798. else if(type === 'month'){
  1799. lay.each(new Array(12), function(i){
  1800. var li = lay.elem('li', {
  1801. 'lay-ym': i
  1802. }), ymd = {year: listYM[0], month: i};
  1803. i + 1 == listYM[1] && lay(li).addClass(THIS);
  1804. li.innerHTML = lang.month[i] + (isCN ? '月' : '');
  1805. ul.appendChild(li);
  1806. if(listYM[0] < that.firstDate.year){
  1807. ymd.date = options.min.date;
  1808. } else if(listYM[0] >= that.firstDate.year){
  1809. ymd.date = options.max.date;
  1810. }
  1811. that.limit(lay(li), ymd, index);
  1812. });
  1813. lay(elemYM[isCN ? 0 : 1]).attr('lay-ym', listYM[0] + '-' + listYM[1])
  1814. .html(listYM[0] + text);
  1815. }
  1816. //生成时间列表
  1817. else if(type === 'time'){
  1818. //检测时分秒状态是否在有效日期时间范围内
  1819. var setTimeStatus = function(){
  1820. lay(ul).find('ol').each(function(i, ol){
  1821. lay(ol).find('li').each(function(ii, li){
  1822. that.limit(lay(li), [{
  1823. hours: ii
  1824. }, {
  1825. hours: that[startEnd].hours
  1826. ,minutes: ii
  1827. }, {
  1828. hours: that[startEnd].hours
  1829. ,minutes: that[startEnd].minutes
  1830. ,seconds: ii
  1831. }][i], index, [['hours'], ['hours', 'minutes'], ['hours', 'minutes', 'seconds']][i]);
  1832. });
  1833. });
  1834. if(!options.range) that.limit(lay(that.footer).find(ELEM_CONFIRM), that[startEnd], 0, ['hours', 'minutes', 'seconds']);
  1835. };
  1836. //初始化时间对象
  1837. if(options.range){
  1838. if(!that[startEnd]){
  1839. that[startEnd] = startEnd === 'startTime' ? dateTime : that.endDate;
  1840. }
  1841. } else {
  1842. that[startEnd] = dateTime;
  1843. }
  1844. //生成时分秒
  1845. lay.each([24, 60, 60], function(i, item){
  1846. var li = lay.elem('li'), childUL = ['<p>'+ lang.time[i] +'</p><ol>'];
  1847. lay.each(new Array(item), function(ii){
  1848. childUL.push('<li'+ (that[startEnd][hms[i]] === ii ? ' class="'+ THIS +'"' : '') +'>'+ lay.digit(ii, 2) +'</li>');
  1849. });
  1850. li.innerHTML = childUL.join('') + '</ol>';
  1851. ul.appendChild(li);
  1852. });
  1853. setTimeStatus();
  1854. }
  1855. //插入容器
  1856. if(haveList) elemCont.removeChild(haveList);
  1857. elemCont.appendChild(ul);
  1858. //年月面板 - 选择事件
  1859. if(type === 'year' || type === 'month'){
  1860. //显示切换箭头
  1861. lay(that.elemMain[index]).addClass('laydate-ym-show');
  1862. //选中
  1863. lay(ul).find('li').on('click', function(){
  1864. var ym = lay(this).attr('lay-ym') | 0;
  1865. if(lay(this).hasClass(DISABLED)) return;
  1866. if(index === 0){
  1867. dateTime[type] = ym;
  1868. that.limit(lay(that.footer).find(ELEM_CONFIRM), null, 0);
  1869. } else { //范围选择
  1870. that.endDate[type] = ym;
  1871. }
  1872. //当为年选择器或者年月选择器
  1873. var isYearOrMonth = options.type === 'year' || options.type === 'month';
  1874. if(isYearOrMonth){
  1875. lay(ul).find('.'+ THIS).removeClass(THIS);
  1876. lay(this).addClass(THIS);
  1877. //如果为年月选择器,点击了年列表,则切换到月选择器
  1878. if(options.type === 'month' && type === 'year'){
  1879. that.listYM[index][0] = ym;
  1880. isAlone && ((index ? that.endDate : dateTime).year = ym);
  1881. that.list('month', index);
  1882. }
  1883. } else {
  1884. that.checkDate('limit').calendar(null, index);
  1885. that.closeList();
  1886. }
  1887. that.setBtnStatus(); //同步按钮可点状态
  1888. //若为月选择器,只有当选择月份时才自动关闭;
  1889. //若为年选择器,选择年份即自动关闭
  1890. //且在范围未开启时
  1891. if(!options.range){
  1892. if((options.type === 'month' && type === 'month') || (options.type === 'year' && type === 'year')){
  1893. that.setValue(that.parse()).remove().done();
  1894. }
  1895. }
  1896. that.done(null, 'change');
  1897. lay(that.footer).find('.'+ ELEM_TIME_BTN).removeClass(DISABLED);
  1898. });
  1899. } else { //时间选择面板 - 选择事件
  1900. var span = lay.elem('span', {
  1901. 'class': ELEM_TIME_TEXT
  1902. })
  1903. //滚动条定位
  1904. ,scroll = function(){
  1905. lay(ul).find('ol').each(function(i){
  1906. var ol = this
  1907. ,li = lay(ol).find('li')
  1908. ol.scrollTop = 30*(that[startEnd][hms[i]] - 2);
  1909. if(ol.scrollTop <= 0){
  1910. li.each(function(ii, item){
  1911. if(!lay(this).hasClass(DISABLED)){
  1912. ol.scrollTop = 30*(ii - 2);
  1913. return true;
  1914. }
  1915. });
  1916. }
  1917. });
  1918. }
  1919. ,haveSpan = lay(elemHeader[2]).find('.'+ ELEM_TIME_TEXT);
  1920. scroll();
  1921. span.innerHTML = options.range ? [lang.startTime,lang.endTime][index] : lang.timeTips;
  1922. lay(that.elemMain[index]).addClass('laydate-time-show');
  1923. if(haveSpan[0]) haveSpan.remove();
  1924. elemHeader[2].appendChild(span);
  1925. lay(ul).find('ol').each(function(i){
  1926. var ol = this;
  1927. //选择时分秒
  1928. lay(ol).find('li').on('click', function(){
  1929. var value = this.innerHTML | 0;
  1930. if(lay(this).hasClass(DISABLED)) return;
  1931. if(options.range){
  1932. that[startEnd][hms[i]] = value;
  1933. } else {
  1934. dateTime[hms[i]] = value;
  1935. }
  1936. lay(ol).find('.'+ THIS).removeClass(THIS);
  1937. lay(this).addClass(THIS);
  1938. setTimeStatus();
  1939. scroll();
  1940. (that.endDate || options.type === 'time') && that.done(null, 'change');
  1941. //同步按钮可点状态
  1942. that.setBtnStatus();
  1943. });
  1944. });
  1945. }
  1946. return that;
  1947. };
  1948. //记录列表切换后的年月
  1949. Class.prototype.listYM = [];
  1950. //关闭列表
  1951. Class.prototype.closeList = function(){
  1952. var that = this
  1953. ,options = that.config;
  1954. lay.each(that.elemCont, function(index, item){
  1955. lay(this).find('.'+ ELEM_LIST).remove();
  1956. lay(that.elemMain[index]).removeClass('laydate-ym-show laydate-time-show');
  1957. });
  1958. lay(that.elem).find('.'+ ELEM_TIME_TEXT).remove();
  1959. };
  1960. //检测结束日期是否超出开始日期
  1961. Class.prototype.setBtnStatus = function(tips, start, end){
  1962. var that = this
  1963. ,options = that.config
  1964. ,lang = that.lang()
  1965. ,isOut, elemBtn = lay(that.footer).find(ELEM_CONFIRM);
  1966. if(options.range && options.type !== 'time'){
  1967. start = start || options.dateTime;
  1968. end = end || that.endDate;
  1969. isOut = that.newDate(start).getTime() > that.newDate(end).getTime();
  1970. //如果不在有效日期内,直接禁用按钮,否则比较开始和结束日期
  1971. (that.limit(null, start) || that.limit(null, end))
  1972. ? elemBtn.addClass(DISABLED)
  1973. : elemBtn[isOut ? 'addClass' : 'removeClass'](DISABLED);
  1974. //是否异常提示
  1975. if(tips && isOut) that.hint(
  1976. typeof tips === 'string' ? lang.timeout.replace(/日期/g, tips) : lang.timeout
  1977. );
  1978. }
  1979. };
  1980. //转义为规定格式的日期字符
  1981. Class.prototype.parse = function(state, date){
  1982. var that = this
  1983. ,options = that.config
  1984. ,dateTime = date || (state == 'end'
  1985. ? lay.extend({}, that.endDate, that.endTime)
  1986. : (options.range ? lay.extend({}, options.dateTime, that.startTime) : options.dateTime))
  1987. ,format = laydate.parse(dateTime, that.format, 1);
  1988. //返回日期范围字符
  1989. if(options.range && state === undefined){
  1990. return format + ' '+ that.rangeStr +' ' + that.parse('end');
  1991. }
  1992. return format;
  1993. };
  1994. //创建指定日期时间对象
  1995. Class.prototype.newDate = function(dateTime){
  1996. dateTime = dateTime || {};
  1997. return new Date(
  1998. dateTime.year || 1
  1999. ,dateTime.month || 0
  2000. ,dateTime.date || 1
  2001. ,dateTime.hours || 0
  2002. ,dateTime.minutes || 0
  2003. ,dateTime.seconds || 0
  2004. );
  2005. };
  2006. //赋值
  2007. Class.prototype.setValue = function(value){
  2008. var that = this
  2009. ,options = that.config
  2010. ,elem = that.bindElem || options.elem[0];
  2011. //静态展现则不作默认赋值
  2012. if(options.position === 'static') return that;
  2013. value = value || '';
  2014. //绑定的元素是否为 input
  2015. if(that.isInput(elem)){
  2016. lay(elem).val(value);
  2017. } else {
  2018. //如果 range 传入了开始和结束的 input 对象,则分别对其赋值
  2019. if(that.rangeElem){
  2020. that.rangeElem[0].val(value ? that.parse('start') : '');
  2021. that.rangeElem[1].val(value ? that.parse('end') : '');
  2022. } else {
  2023. if(lay(elem).find('*').length === 0){
  2024. lay(elem).html(value);
  2025. }
  2026. lay(elem).attr('lay-date', value);
  2027. }
  2028. }
  2029. return that;
  2030. };
  2031. //预览
  2032. Class.prototype.preview = function(){
  2033. var that = this
  2034. ,options = that.config;
  2035. if(!options.isPreview) return;
  2036. var elemPreview = lay(that.elem).find('.'+ ELEM_PREVIEW)
  2037. ,value = options.range ? (that.endDate ? that.parse() : '') : that.parse();
  2038. //显示预览
  2039. elemPreview.html(value).css({
  2040. 'color': '#5FB878'
  2041. ,'font-size': '14px;'
  2042. });
  2043. setTimeout(function(){
  2044. elemPreview.css({
  2045. 'color': '#666'
  2046. ,'font-size': '12px;'
  2047. });
  2048. }, 300);
  2049. };
  2050. //执行 done/change 回调
  2051. Class.prototype.done = function(param, type){
  2052. var that = this
  2053. ,options = that.config
  2054. ,start = lay.extend({}, lay.extend(options.dateTime, that.startTime))
  2055. ,end = lay.extend({}, lay.extend(that.endDate, that.endTime))
  2056. lay.each([start, end], function(i, item){
  2057. if(!('month' in item)) return;
  2058. lay.extend(item, {
  2059. month: item.month + 1
  2060. });
  2061. });
  2062. that.preview();
  2063. param = param || [that.parse(), start, end];
  2064. typeof options[type || 'done'] === 'function' && options[type || 'done'].apply(options, param);
  2065. return that;
  2066. };
  2067. //选择日期
  2068. Class.prototype.choose = function(td, index){
  2069. var that = this
  2070. ,options = that.config
  2071. ,dateTime = that.thisDateTime(index)
  2072. ,tds = lay(that.elem).find('td')
  2073. ,YMD = td.attr('lay-ymd').split('-');
  2074. YMD = {
  2075. year: YMD[0] | 0
  2076. ,month: (YMD[1] | 0) - 1
  2077. ,date: YMD[2] | 0
  2078. };
  2079. if(td.hasClass(DISABLED)) return;
  2080. lay.extend(dateTime, YMD); //同步 dateTime
  2081. //范围选择
  2082. if(options.range){
  2083. //补充时分秒
  2084. lay.each(['startTime', 'endTime'], function(i, item){
  2085. that[item] = that[item] || {
  2086. hours: 0
  2087. ,minutes: 0
  2088. ,seconds: 0
  2089. };
  2090. });
  2091. that.calendar(null, index).done(null, 'change');
  2092. } else if(options.position === 'static'){ //直接嵌套的选中
  2093. that.calendar().done().done(null, 'change'); //同时执行 done 和 change 回调
  2094. } else if(options.type === 'date'){
  2095. that.setValue(that.parse()).remove().done();
  2096. } else if(options.type === 'datetime'){
  2097. that.calendar().done(null, 'change');
  2098. }
  2099. };
  2100. //底部按钮
  2101. Class.prototype.tool = function(btn, type){
  2102. var that = this
  2103. ,options = that.config
  2104. ,lang = that.lang()
  2105. ,dateTime = options.dateTime
  2106. ,isStatic = options.position === 'static'
  2107. ,active = {
  2108. //选择时间
  2109. datetime: function(){
  2110. if(lay(btn).hasClass(DISABLED)) return;
  2111. that.list('time', 0);
  2112. options.range && that.list('time', 1);
  2113. lay(btn).attr('lay-type', 'date').html(that.lang().dateTips);
  2114. }
  2115. //选择日期
  2116. ,date: function(){
  2117. that.closeList();
  2118. lay(btn).attr('lay-type', 'datetime').html(that.lang().timeTips);
  2119. }
  2120. //清空、重置
  2121. ,clear: function(){
  2122. isStatic && (
  2123. lay.extend(dateTime, that.firstDate)
  2124. ,that.calendar()
  2125. )
  2126. options.range && (
  2127. delete options.dateTime
  2128. ,delete that.endDate
  2129. ,delete that.startTime
  2130. ,delete that.endTime
  2131. );
  2132. that.setValue('').remove();
  2133. that.done(['', {}, {}]);
  2134. }
  2135. //现在
  2136. ,now: function(){
  2137. var thisDate = new Date();
  2138. lay.extend(dateTime, that.systemDate(), {
  2139. hours: thisDate.getHours()
  2140. ,minutes: thisDate.getMinutes()
  2141. ,seconds: thisDate.getSeconds()
  2142. });
  2143. that.setValue(that.parse()).remove();
  2144. isStatic && that.calendar();
  2145. that.done();
  2146. }
  2147. //确定
  2148. ,confirm: function(){
  2149. if(options.range){
  2150. if(lay(btn).hasClass(DISABLED)) return that.hint(
  2151. options.type === 'time' ? lang.timeout.replace(/日期/g, '时间') : lang.timeout
  2152. );
  2153. } else {
  2154. if(lay(btn).hasClass(DISABLED)) return that.hint(lang.invalidDate);
  2155. }
  2156. that.done();
  2157. that.setValue(that.parse()).remove()
  2158. }
  2159. };
  2160. active[type] && active[type]();
  2161. };
  2162. //统一切换处理
  2163. Class.prototype.change = function(index){
  2164. var that = this
  2165. ,options = that.config
  2166. ,dateTime = that.thisDateTime(index)
  2167. ,isAlone = options.range && (options.type === 'year' || options.type === 'month')
  2168. ,elemCont = that.elemCont[index || 0]
  2169. ,listYM = that.listYM[index]
  2170. ,addSubYeay = function(type){
  2171. var isYear = lay(elemCont).find('.laydate-year-list')[0]
  2172. ,isMonth = lay(elemCont).find('.laydate-month-list')[0];
  2173. //切换年列表
  2174. if(isYear){
  2175. listYM[0] = type ? listYM[0] - 15 : listYM[0] + 15;
  2176. that.list('year', index);
  2177. }
  2178. if(isMonth){ //切换月面板中的年
  2179. type ? listYM[0]-- : listYM[0]++;
  2180. that.list('month', index);
  2181. }
  2182. if(isYear || isMonth){
  2183. lay.extend(dateTime, {
  2184. year: listYM[0]
  2185. });
  2186. if(isAlone) dateTime.year = listYM[0];
  2187. options.range || that.done(null, 'change');
  2188. options.range || that.limit(lay(that.footer).find(ELEM_CONFIRM), {
  2189. year: listYM[0]
  2190. });
  2191. }
  2192. that.setBtnStatus();
  2193. return isYear || isMonth;
  2194. };
  2195. return {
  2196. prevYear: function(){
  2197. if(addSubYeay('sub')) return;
  2198. dateTime.year--;
  2199. that.checkDate('limit').calendar(null, index);
  2200. that.done(null, 'change');
  2201. }
  2202. ,prevMonth: function(){
  2203. var YM = that.getAsYM(dateTime.year, dateTime.month, 'sub');
  2204. lay.extend(dateTime, {
  2205. year: YM[0]
  2206. ,month: YM[1]
  2207. });
  2208. that.checkDate('limit').calendar(null, index);
  2209. that.done(null, 'change');
  2210. }
  2211. ,nextMonth: function(){
  2212. var YM = that.getAsYM(dateTime.year, dateTime.month);
  2213. lay.extend(dateTime, {
  2214. year: YM[0]
  2215. ,month: YM[1]
  2216. });
  2217. that.checkDate('limit').calendar(null, index);
  2218. that.done(null, 'change');
  2219. }
  2220. ,nextYear: function(){
  2221. if(addSubYeay()) return;
  2222. dateTime.year++
  2223. that.checkDate('limit').calendar(null, index);
  2224. that.done(null, 'change');
  2225. }
  2226. };
  2227. };
  2228. //日期切换事件
  2229. Class.prototype.changeEvent = function(){
  2230. var that = this
  2231. ,options = that.config;
  2232. //日期选择事件
  2233. lay(that.elem).on('click', function(e){
  2234. lay.stope(e);
  2235. }).on('mousedown', function(e){
  2236. lay.stope(e);
  2237. });
  2238. //年月切换
  2239. lay.each(that.elemHeader, function(i, header){
  2240. //上一年
  2241. lay(header[0]).on('click', function(e){
  2242. that.change(i).prevYear();
  2243. });
  2244. //上一月
  2245. lay(header[1]).on('click', function(e){
  2246. that.change(i).prevMonth();
  2247. });
  2248. //选择年月
  2249. lay(header[2]).find('span').on('click', function(e){
  2250. var othis = lay(this)
  2251. ,layYM = othis.attr('lay-ym')
  2252. ,layType = othis.attr('lay-type');
  2253. if(!layYM) return;
  2254. layYM = layYM.split('-');
  2255. that.listYM[i] = [layYM[0] | 0, layYM[1] | 0];
  2256. that.list(layType, i);
  2257. lay(that.footer).find('.'+ ELEM_TIME_BTN).addClass(DISABLED);
  2258. });
  2259. //下一月
  2260. lay(header[3]).on('click', function(e){
  2261. that.change(i).nextMonth();
  2262. });
  2263. //下一年
  2264. lay(header[4]).on('click', function(e){
  2265. that.change(i).nextYear();
  2266. });
  2267. });
  2268. //点击日期
  2269. lay.each(that.table, function(i, table){
  2270. var tds = lay(table).find('td');
  2271. tds.on('click', function(){
  2272. that.choose(lay(this), i);
  2273. });
  2274. });
  2275. //点击底部按钮
  2276. lay(that.footer).find('span').on('click', function(){
  2277. var type = lay(this).attr('lay-type');
  2278. that.tool(this, type);
  2279. });
  2280. };
  2281. //是否输入框
  2282. Class.prototype.isInput = function(elem){
  2283. return /input|textarea/.test(elem.tagName.toLocaleLowerCase());
  2284. };
  2285. //绑定的元素事件处理
  2286. Class.prototype.events = function(){
  2287. var that = this
  2288. ,options = that.config
  2289. //绑定呼出控件事件
  2290. ,showEvent = function(elem, bind){
  2291. elem.on(options.trigger, function(){
  2292. bind && (that.bindElem = this);
  2293. that.render();
  2294. });
  2295. };
  2296. if(!options.elem[0] || options.elem[0].eventHandler) return;
  2297. showEvent(options.elem, 'bind');
  2298. showEvent(options.eventElem);
  2299. options.elem[0].eventHandler = true;
  2300. };
  2301. //记录所有实例
  2302. thisModule.that = {}; //记录所有实例对象
  2303. //获取当前实例对象
  2304. thisModule.getThis = function(id){
  2305. var that = thisModule.that[id];
  2306. if(!that) hint.error(id ? (MOD_NAME +' instance with ID \''+ id +'\' not found') : 'ID argument required');
  2307. return that;
  2308. };
  2309. //初始执行
  2310. ready.run = function(lay){
  2311. //绑定关闭控件事件
  2312. lay(document).on('mousedown', function(e){
  2313. if(!laydate.thisId) return;
  2314. var that = thisModule.getThis(laydate.thisId);
  2315. if(!that) return;
  2316. var options = that.config;
  2317. if(
  2318. e.target === options.elem[0] ||
  2319. e.target === options.eventElem[0] ||
  2320. e.target === lay(options.closeStop)[0]
  2321. ) return;
  2322. that.remove();
  2323. }).on('keydown', function(e){
  2324. if(!laydate.thisId) return;
  2325. var that = thisModule.getThis(laydate.thisId);
  2326. if(!that) return;
  2327. if(e.keyCode === 13){
  2328. if(lay('#'+ that.elemID)[0] && that.elemID === Class.thisElemDate){
  2329. e.preventDefault();
  2330. lay(that.footer).find(ELEM_CONFIRM)[0].click();
  2331. }
  2332. }
  2333. });
  2334. //自适应定位
  2335. lay(window).on('resize', function(){
  2336. if(!laydate.thisId) return;
  2337. var that = thisModule.getThis(laydate.thisId);
  2338. if(!that) return;
  2339. if(!that.elem || !lay(ELEM)[0]){
  2340. return false;
  2341. }
  2342. that.position();
  2343. });
  2344. };
  2345. //核心接口
  2346. laydate.render = function(options){
  2347. var inst = new Class(options);
  2348. return thisModule.call(inst);
  2349. };
  2350. //将指定对象转化为日期值
  2351. laydate.parse = function(dateTime, format, one){
  2352. dateTime = dateTime || {};
  2353. //如果 format 是字符型,则转换为数组格式
  2354. if(typeof format === 'string'){
  2355. format = thisModule.formatArr(format);
  2356. }
  2357. format = (format || []).concat();
  2358. //转义为规定格式
  2359. lay.each(format, function(i, item){
  2360. if(/yyyy|y/.test(item)){ //年
  2361. format[i] = lay.digit(dateTime.year, item.length);
  2362. } else if(/MM|M/.test(item)){ //月
  2363. format[i] = lay.digit(dateTime.month + (one || 0), item.length);
  2364. } else if(/dd|d/.test(item)){ //日
  2365. format[i] = lay.digit(dateTime.date, item.length);
  2366. } else if(/HH|H/.test(item)){ //时
  2367. format[i] = lay.digit(dateTime.hours, item.length);
  2368. } else if(/mm|m/.test(item)){ //分
  2369. format[i] = lay.digit(dateTime.minutes, item.length);
  2370. } else if(/ss|s/.test(item)){ //秒
  2371. format[i] = lay.digit(dateTime.seconds, item.length);
  2372. }
  2373. });
  2374. return format.join('');
  2375. };
  2376. //得到某月的最后一天
  2377. laydate.getEndDate = function(month, year){
  2378. var thisDate = new Date();
  2379. //设置日期为下个月的第一天
  2380. thisDate.setFullYear(
  2381. year || thisDate.getFullYear()
  2382. ,month || (thisDate.getMonth() + 1)
  2383. ,1);
  2384. //减去一天,得到当前月最后一天
  2385. return new Date(thisDate.getTime() - 1000*60*60*24).getDate();
  2386. };
  2387. //加载方式
  2388. isLayui ? (
  2389. laydate.ready()
  2390. ,layui.define('lay', function(exports){ //layui 加载
  2391. laydate.path = layui.cache.dir;
  2392. ready.run(lay);
  2393. exports(MOD_NAME, laydate);
  2394. })
  2395. ) : (
  2396. (typeof define === 'function' && define.amd) ? define(function(){ //requirejs 加载
  2397. ready.run(lay);
  2398. return laydate;
  2399. }) : function(){ //普通 script 标签加载
  2400. laydate.ready();
  2401. ready.run(window.lay);
  2402. window.laydate = laydate;
  2403. }()
  2404. );
  2405. }(window, window.document);