admin.js 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779
  1. // +----------------------------------------------------------------------
  2. // | ThinkAdmin
  3. // +----------------------------------------------------------------------
  4. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  5. // +----------------------------------------------------------------------
  6. // | 官方网站: http://demo.thinkadmin.top
  7. // +----------------------------------------------------------------------
  8. // | 开源协议 ( https://mit-license.org )
  9. // +----------------------------------------------------------------------
  10. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  11. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. // Layui & jQuery
  14. if (typeof jQuery === 'undefined') window.$ = window.jQuery = layui.$;
  15. window.form = layui.form, window.layer = layui.layer, window.laydate = layui.laydate;
  16. // 资源URL目录
  17. window.baseRoot = (function (src) {
  18. src = document.scripts[document.scripts.length - 1].src;
  19. return src.substring(0, src.lastIndexOf("/") + 1);
  20. })();
  21. // require 配置参数
  22. require.config({
  23. waitSeconds: 60,
  24. baseUrl: baseRoot,
  25. map: {'*': {css: baseRoot + 'plugs/require/css.js'}},
  26. paths: {
  27. 'md5': ['plugs/jquery/md5.min'],
  28. 'json': ['plugs/jquery/json.min'],
  29. 'michat': ['plugs/michat/michat'],
  30. 'upload': ['plugs/jquery/uploader'],
  31. 'base64': ['plugs/jquery/base64.min'],
  32. 'echarts': ['plugs/echarts/echarts.min'],
  33. 'angular': ['plugs/angular/angular.min'],
  34. 'ckeditor': ['plugs/ckeditor/ckeditor'],
  35. 'websocket': ['plugs/socket/websocket'],
  36. 'pcasunzips': ['plugs/jquery/pcasunzips'],
  37. 'jquery.ztree': ['plugs/ztree/ztree.all.min'],
  38. 'jquery.masonry': ['plugs/jquery/masonry.min'],
  39. 'jquery.autocompleter': ['plugs/jquery/autocompleter.min'],
  40. },
  41. shim: {
  42. 'websocket': {deps: [baseRoot + 'plugs/socket/swfobject.min.js']},
  43. 'jquery.ztree': {deps: ['jquery', 'css!' + baseRoot + 'plugs/ztree/zTreeStyle/zTreeStyle.css']},
  44. 'jquery.autocompleter': {deps: ['jquery', 'css!' + baseRoot + 'plugs/jquery/autocompleter.css']},
  45. }
  46. });
  47. // 注册jquery到require模块
  48. define('jquery', [], function () {
  49. return layui.$;
  50. });
  51. $(function () {
  52. window.$body = $('body');
  53. /*! 消息组件实例 */
  54. $.msg = new function (that) {
  55. that = this;
  56. this.idx = [];
  57. this.shade = [0.02, '#000'];
  58. // 关闭消息框
  59. this.close = function (index) {
  60. return layer.close(index);
  61. };
  62. // 弹出警告框
  63. this.alert = function (msg, callback) {
  64. var index = layer.alert(msg, {end: callback, scrollbar: false});
  65. return this.idx.push(index), index;
  66. };
  67. // 确认对话框
  68. this.confirm = function (msg, ok, no) {
  69. var index = layer.confirm(msg, {title: '操作确认', btn: ['确认', '取消']}, function () {
  70. typeof ok === 'function' && ok.call(this, index);
  71. }, function () {
  72. typeof no === 'function' && no.call(this, index);
  73. that.close(index);
  74. });
  75. return index;
  76. };
  77. // 显示成功类型的消息
  78. this.success = function (msg, time, callback) {
  79. var index = layer.msg(msg, {icon: 1, shade: this.shade, scrollbar: false, end: callback, time: (time || 2) * 1000, shadeClose: true});
  80. return this.idx.push(index), index;
  81. };
  82. // 显示失败类型的消息
  83. this.error = function (msg, time, callback) {
  84. var index = layer.msg(msg, {icon: 2, shade: this.shade, scrollbar: false, time: (time || 3) * 1000, end: callback, shadeClose: true});
  85. return this.idx.push(index), index;
  86. };
  87. // 状态消息提示
  88. this.tips = function (msg, time, callback) {
  89. var index = layer.msg(msg, {time: (time || 3) * 1000, shade: this.shade, end: callback, shadeClose: true});
  90. return this.idx.push(index), index;
  91. };
  92. // 显示正在加载中的提示
  93. this.loading = function (msg, callback) {
  94. var index = msg ? layer.msg(msg, {icon: 16, scrollbar: false, shade: this.shade, time: 0, end: callback}) : layer.load(2, {time: 0, scrollbar: false, shade: this.shade, end: callback});
  95. return this.idx.push(index), index;
  96. };
  97. // 自动处理显示Think返回的Json数据
  98. this.auto = function (ret, time) {
  99. var url = ret.url || (typeof ret.data === 'string' ? ret.data : '');
  100. var msg = ret.msg || (typeof ret.info === 'string' ? ret.info : '');
  101. if (parseInt(ret.code) === 1 && time === 'false') {
  102. return url ? (window.location.href = url) : $.form.reload();
  103. }
  104. return (parseInt(ret.code) === 1) ? this.success(msg, time, function () {
  105. url ? (window.location.href = url) : $.form.reload();
  106. for (var i in that.idx) layer.close(that.idx[i]);
  107. that.idx = [];
  108. }) : this.error(msg, 3, function () {
  109. url ? window.location.href = url : '';
  110. });
  111. };
  112. };
  113. /*! 表单自动化组件 */
  114. $.form = new function (that) {
  115. that = this;
  116. // 内容区选择器
  117. this.selecter = '.layui-layout-admin>.layui-body';
  118. // 刷新当前页面
  119. this.reload = function () {
  120. window.onhashchange.call(this);
  121. };
  122. // 内容区域动态加载后初始化
  123. this.reInit = function ($dom) {
  124. $.vali.listen(this);
  125. $dom = $dom || $(this.selecter);
  126. $dom.find('[required]').map(function ($parent) {
  127. if (($parent = $(this).parent()) && $parent.is('label')) {
  128. $parent.addClass('label-required-prev');
  129. } else {
  130. $parent.prevAll('label').addClass('label-required-next');
  131. }
  132. });
  133. $dom.find('input[data-date-range]').map(function () {
  134. this.setAttribute('autocomplete', 'off');
  135. laydate.render({
  136. type: this.getAttribute('data-date-range') || 'date',
  137. range: true, elem: this, done: function (value) {
  138. $(this.elem).val(value).trigger('change');
  139. }
  140. });
  141. });
  142. $dom.find('input[data-date-input]').map(function () {
  143. this.setAttribute('autocomplete', 'off');
  144. laydate.render({
  145. type: this.getAttribute('data-date-input') || 'date',
  146. range: false, elem: this, done: function (value) {
  147. $(this.elem).val(value).trigger('change');
  148. }
  149. });
  150. });
  151. $dom.find('[data-file]:not([data-inited])').map(function (index, elem, $this, field) {
  152. $this = $(elem), field = $this.attr('data-field') || 'file';
  153. if (!$this.data('input')) $this.data('input', $('[name="' + field + '"]').get(0));
  154. $this.uploadFile(function (url) {
  155. $($this.data('input')).val(url).trigger('change');
  156. });
  157. });
  158. };
  159. // 在内容区显示视图
  160. this.show = function (html) {
  161. $(this.selecter).html(html);
  162. this.reInit($(this.selecter));
  163. setTimeout(function () {
  164. that.reInit($(that.selecter));
  165. }, 1000);
  166. };
  167. // 以HASH打开新网页
  168. this.href = function (url, obj) {
  169. if (url !== '#') {
  170. window.location.href = '#' + $.menu.parseUri(url, obj);
  171. } else if (obj && obj.getAttribute('data-menu-node')) {
  172. $('[data-menu-node^="' + obj.getAttribute('data-menu-node') + '-"][data-open!="#"]:first').trigger('click');
  173. }
  174. };
  175. // 异步加载的数据
  176. this.load = function (url, data, method, callback, loading, tips, time, headers) {
  177. var index = loading !== false ? $.msg.loading(tips) : 0;
  178. if (typeof data === 'object' && typeof data['_csrf_'] === 'string') {
  179. headers = headers || {};
  180. headers['User-Token-Csrf'] = data['_csrf_'];
  181. delete data['_csrf_'];
  182. }
  183. $.ajax({
  184. data: data || {}, type: method || 'GET', url: $.menu.parseUri(url), beforeSend: function (xhr) {
  185. if (typeof Pace === 'object') Pace.restart();
  186. if (typeof headers === 'object') for (var i in headers) xhr.setRequestHeader(i, headers[i]);
  187. }, error: function (XMLHttpRequest) {
  188. if (XMLHttpRequest.responseText.indexOf('exception') > -1) layer.open({
  189. title: XMLHttpRequest.status + ' - ' + XMLHttpRequest.statusText, type: 2,
  190. area: '800px', content: 'javascript:void(0)', success: function ($element, index) {
  191. try {
  192. layer.full(index);
  193. $element.find('iframe')[0].contentWindow.document.write(XMLHttpRequest.responseText);
  194. $element.find('.layui-layer-setwin').css({right: '35px', top: '28px'}).find('a').css({marginLeft: 0});
  195. $element.find('.layui-layer-title').css({color: 'red', height: '70px', lineHeight: '70px', fontSize: '22px', textAlign: 'center', fontWeight: 700});
  196. } catch (e) {
  197. layer.close(index);
  198. }
  199. }
  200. });
  201. if (parseInt(XMLHttpRequest.status) === 200) {
  202. this.success(XMLHttpRequest.responseText);
  203. } else {
  204. $.msg.tips('E' + XMLHttpRequest.status + ' - 服务器繁忙,请稍候再试!');
  205. }
  206. }, success: function (ret) {
  207. if (typeof callback === 'function' && callback.call(that, ret) === false) return false;
  208. return typeof ret === 'object' ? $.msg.auto(ret, time || ret.wait || undefined) : that.show(ret);
  209. }, complete: function () {
  210. $.msg.close(index);
  211. }
  212. });
  213. };
  214. // 加载HTML到目标位置
  215. this.open = function (url, data, callback, loading, tips) {
  216. this.load(url, data, 'get', function (ret) {
  217. return (typeof ret === 'object' ? $.msg.auto(ret) : that.show(ret)), false;
  218. }, loading, tips);
  219. };
  220. // 打开一个iframe窗口
  221. this.iframe = function (url, title, area) {
  222. return layer.open({title: title || '窗口', type: 2, area: area || ['800px', '580px'], fix: true, maxmin: false, content: url});
  223. };
  224. // 加载HTML到弹出层
  225. this.modal = function (url, data, title, callback, loading, tips) {
  226. this.load(url, data, 'GET', function (res, index) {
  227. if (typeof (res) === 'object') return $.msg.auto(res), false;
  228. index = layer.open({
  229. type: 1, btn: false, area: "800px", content: res, title: title || '', success: function (dom, index) {
  230. $(dom).find('[data-close]').off('click').on('click', function () {
  231. if ($(this).attr('data-confirm')) return $.msg.confirm($(this).attr('data-confirm'), function (_index) {
  232. layer.close(_index), layer.close(index);
  233. }), false;
  234. layer.close(index);
  235. });
  236. $.form.reInit($(dom));
  237. }
  238. });
  239. $.msg.idx.push(index);
  240. return (typeof callback === 'function') && callback.call(that);
  241. }, loading, tips);
  242. };
  243. };
  244. /*! 后台菜单辅助插件 */
  245. $.menu = new function (that) {
  246. that = this;
  247. // 计算URL地址中有效的URI
  248. this.getUri = function (uri) {
  249. uri = uri || window.location.href;
  250. uri = (uri.indexOf(window.location.host) > -1 ? uri.split(window.location.host)[1] : uri);
  251. return (uri.indexOf('#') > -1 ? uri.split('#')[1] : uri).split('?')[0];
  252. };
  253. // 通过URI查询最有可能的菜单NODE
  254. this.queryNode = function (url, node) {
  255. node = node || location.href.replace(/.*spm=([\d\-m]+).*/ig, '$1');
  256. if (!/^m-/.test(node)) {
  257. var $menu = $('[data-menu-node][data-open*="' + url.replace(/\.html$/ig, '') + '"]');
  258. return $menu.size() ? $menu.get(0).getAttribute('data-menu-node') : '';
  259. }
  260. return node;
  261. };
  262. // URL转URI
  263. this.parseUri = function (uri, obj) {
  264. var params = {};
  265. if (uri.indexOf('?') > -1) {
  266. var attrs = uri.split('?')[1].split('&');
  267. for (var i in attrs) if (attrs[i].indexOf('=') > -1) {
  268. var tmp = attrs[i].split('=').slice();
  269. if (typeof tmp[0] === 'string' && tmp[0].length > 0) {
  270. params[tmp[0]] = decodeURIComponent(tmp[1].replace(/%2B/ig, '%20'));
  271. }
  272. }
  273. }
  274. uri = this.getUri(uri);
  275. if (typeof params.spm !== 'string') {
  276. params.spm = obj && obj.getAttribute('data-menu-node') || this.queryNode(uri);
  277. }
  278. if (typeof params.spm !== 'string' || params.spm.length < 1) delete params.spm;
  279. // 生成新的 URL 参数
  280. var attrs = [];
  281. for (var i in params) attrs.push([i, params[i]].join('='));
  282. var query = '?' + attrs.join('&');
  283. return uri + (query === '?' ? '' : query);
  284. };
  285. // 后台菜单动作初始化
  286. this.listen = function () {
  287. // 菜单模式切换
  288. (function ($menu, miniClass) {
  289. // Mini 菜单模式切换及显示
  290. if (layui.data('admin-menu-type')['type-min']) $menu.addClass(miniClass);
  291. $body.on('click', '[data-target-menu-type]', function () {
  292. $menu.toggleClass(miniClass);
  293. layui.data('admin-menu-type', {key: 'type-min', value: $menu.hasClass(miniClass)});
  294. }).on('resize', function () {
  295. if ($body.width() > 1000) {
  296. layui.data('admin-menu-type')['type-min'] ? $menu.addClass(miniClass) : $menu.removeClass(miniClass);
  297. } else {
  298. $menu.addClass(miniClass);
  299. }
  300. }).trigger('resize');
  301. // Mini 菜单模式时TIPS文字显示
  302. $('[data-target-tips]').mouseenter(function () {
  303. if ($menu.hasClass(miniClass)) {
  304. $(this).attr('index', layer.tips($(this).attr('data-target-tips') || '', this));
  305. }
  306. }).mouseleave(function () {
  307. layer.close($(this).attr('index'));
  308. });
  309. })($('.layui-layout-admin'), 'layui-layout-left-mini');
  310. // 左则二级菜单展示
  311. $('[data-submenu-layout]>a').on('click', function () {
  312. that.syncOpenStatus(1);
  313. });
  314. // 同步二级菜单展示状态
  315. this.syncOpenStatus = function (mode) {
  316. $('[data-submenu-layout]').map(function (node) {
  317. node = $(this).attr('data-submenu-layout');
  318. if (mode === 1) layui.data('menu', {key: node, value: $(this).hasClass('layui-nav-itemed') ? 2 : 1});
  319. else if ((layui.data('menu')[node] || 2) === 2) $(this).addClass('layui-nav-itemed');
  320. });
  321. };
  322. window.onhashchange = function (hash, node) {
  323. hash = window.location.hash || '';
  324. if (hash.length < 1) return $('[data-menu-node][data-open!="#"]:first').trigger('click');
  325. $.form.load(hash), that.syncOpenStatus(2);
  326. // 菜单选择切换
  327. node = that.queryNode(that.getUri());
  328. if (/^m-/.test(node)) {
  329. var $all = $('a[data-menu-node]').parent(), tmp = node.split('-'), tmpNode = tmp.shift();
  330. while (tmp.length > 0) {
  331. tmpNode = tmpNode + '-' + tmp.shift();
  332. $all = $all.not($('a[data-menu-node="' + tmpNode + '"]').parent().addClass('layui-this'));
  333. }
  334. $all.removeClass('layui-this');
  335. // 菜单模式切换
  336. if (node.split('-').length > 2) {
  337. var _tmp = node.split('-'), _node = _tmp.shift() + '-' + _tmp.shift();
  338. $('[data-menu-layout]').not($('[data-menu-layout="' + _node + '"]').removeClass('layui-hide')).addClass('layui-hide');
  339. $('[data-menu-node="' + node + '"]').parent().parent().parent().addClass('layui-nav-itemed');
  340. $('.layui-layout-admin').removeClass('layui-layout-left-hide');
  341. } else $('.layui-layout-admin').addClass('layui-layout-left-hide');
  342. that.syncOpenStatus(1);
  343. }
  344. };
  345. // URI初始化动作
  346. window.onhashchange.call(this);
  347. };
  348. };
  349. /*! 注册对象到Jq */
  350. $.vali = function (form, callback, options) {
  351. return (new function (that) {
  352. that = this;
  353. // 表单元素
  354. this.tags = 'input,textarea,select';
  355. // 检测元素事件
  356. this.checkEvent = {change: true, blur: true, keyup: false};
  357. // 去除字符串两头的空格
  358. this.trim = function (str) {
  359. return str.replace(/(^\s*)|(\s*$)/g, '');
  360. };
  361. // 标签元素是否可见
  362. this.isVisible = function (ele) {
  363. return $(ele).is(':visible');
  364. };
  365. // 检测属性是否有定义
  366. this.hasProp = function (ele, prop) {
  367. if (typeof prop !== "string") return false;
  368. var attrProp = ele.getAttribute(prop);
  369. return (typeof attrProp !== 'undefined' && attrProp !== null && attrProp !== false);
  370. };
  371. // 判断表单元素是否为空
  372. this.isEmpty = function (ele, value) {
  373. var trim = this.trim(ele.value);
  374. value = value || ele.getAttribute('placeholder');
  375. return (trim === "" || trim === value);
  376. };
  377. // 正则验证表单元素
  378. this.isRegex = function (ele, regex, params) {
  379. var input = $(ele).val(), real = this.trim(input);
  380. regex = regex || ele.getAttribute('pattern');
  381. if (real === "" || !regex) return true;
  382. return new RegExp(regex, params || 'i').test(real);
  383. };
  384. // 检侧所的表单元素
  385. this.checkAllInput = function () {
  386. var isPass = true;
  387. $(form).find(this.tags).each(function () {
  388. if (that.checkInput(this) === false) return $(this).focus(), isPass = false;
  389. });
  390. return isPass;
  391. };
  392. // 检测表单单元
  393. this.checkInput = function (input) {
  394. var tag = input.tagName.toLowerCase(), need = this.hasProp(input, "required");
  395. var type = (input.getAttribute("type") || '').replace(/\W+/, "").toLowerCase();
  396. if (this.hasProp(input, 'data-auto-none')) return true;
  397. var ingoreTags = ['select'], ingoreType = ['radio', 'checkbox', 'submit', 'reset', 'image', 'file', 'hidden'];
  398. for (var i in ingoreTags) if (tag === ingoreTags[i]) return true;
  399. for (var i in ingoreType) if (type === ingoreType[i]) return true;
  400. if (need && this.isEmpty(input)) return this.remind(input);
  401. return this.isRegex(input) ? (this.hideError(input), true) : this.remind(input);
  402. };
  403. // 验证标志
  404. this.remind = function (input) {
  405. if (!this.isVisible(input)) return true;
  406. this.showError(input, input.getAttribute('title') || input.getAttribute('placeholder') || '输入错误');
  407. return false;
  408. };
  409. // 错误消息显示
  410. this.showError = function (ele, content) {
  411. $(ele).addClass('validate-error'), this.insertError(ele);
  412. $($(ele).data('input-info')).addClass('layui-anim layui-anim-fadein').css({width: 'auto'}).html(content);
  413. };
  414. // 错误消息消除
  415. this.hideError = function (ele) {
  416. $(ele).removeClass('validate-error'), this.insertError(ele);
  417. $($(ele).data('input-info')).removeClass('layui-anim-fadein').css({width: '30px'}).html('');
  418. };
  419. // 错误消息标签插入
  420. this.insertError = function (ele) {
  421. var $html = $('<span style="padding-right:12px;color:#a94442;position:absolute;right:0;font-size:12px;z-index:2;display:block;width:34px;text-align:center;pointer-events:none"></span>');
  422. $html.css({top: $(ele).position().top + 'px', paddingBottom: $(ele).css('paddingBottom'), lineHeight: $(ele).css('height')});
  423. $(ele).data('input-info') || $(ele).data('input-info', $html.insertAfter(ele));
  424. };
  425. // 表单验证入口
  426. this.check = function (form, callback) {
  427. $(form).attr("novalidate", "novalidate");
  428. $(form).find(that.tags).map(function () {
  429. this.bindEventMethod = function () {
  430. that.checkInput(this);
  431. };
  432. for (var e in that.checkEvent) if (that.checkEvent[e] === true) {
  433. $(this).off(e, this.bindEventMethod).on(e, this.bindEventMethod);
  434. }
  435. });
  436. $(form).bind("submit", function (event) {
  437. if (that.checkAllInput() && typeof callback === 'function') {
  438. if (typeof CKEDITOR === 'object' && typeof CKEDITOR.instances === 'object') {
  439. for (var i in CKEDITOR.instances) CKEDITOR.instances[i].updateElement();
  440. }
  441. callback.call(this, $(form).formToJson());
  442. }
  443. return event.preventDefault(), false;
  444. });
  445. $(form).find('[data-form-loaded]').map(function () {
  446. $(this).html(this.getAttribute('data-form-loaded') || this.innerHTML);
  447. $(this).removeAttr('data-form-loaded').removeClass('layui-disabled');
  448. });
  449. return $(form).data('validate', this);
  450. };
  451. }).check(form, callback, options);
  452. };
  453. /*! 自动监听规则内表单 */
  454. $.vali.listen = function () {
  455. $('form[data-auto]').map(function () {
  456. if ($(this).attr('data-listen') !== 'true') $(this).attr('data-listen', 'true').vali(function (data) {
  457. var call = $(this).attr('data-callback') || '_default_callback';
  458. var type = this.getAttribute('method') || 'POST', tips = this.getAttribute('data-tips') || undefined;
  459. var time = this.getAttribute('data-time') || undefined, href = this.getAttribute('action') || window.location.href;
  460. $.form.load(href, data, type, window[call] || undefined, true, tips, time);
  461. });
  462. });
  463. };
  464. /*! 注册对象到JqFn */
  465. $.fn.vali = function (callback, options) {
  466. return $.vali(this, callback, options);
  467. };
  468. /*! 表单转JSON */
  469. $.fn.formToJson = function () {
  470. var self = this, data = {}, pushCounters = {};
  471. var patterns = {"key": /[a-zA-Z0-9_]+|(?=\[\])/g, "push": /^$/, "fixed": /^\d+$/, "named": /^[a-zA-Z0-9_]+$/};
  472. this.build = function (base, key, value) {
  473. base[key] = value;
  474. return base;
  475. };
  476. this.pushCounter = function (name) {
  477. if (pushCounters[name] === undefined) pushCounters[name] = 0;
  478. return pushCounters[name]++;
  479. };
  480. $.each($(this).serializeArray(), function () {
  481. var key, keys = this.name.match(patterns.key), merge = this.value, name = this.name;
  482. while ((key = keys.pop()) !== undefined) {
  483. name = name.replace(new RegExp("\\[" + key + "\\]$"), '');
  484. if (key.match(patterns.push)) { // push
  485. merge = self.build([], self.pushCounter(name), merge);
  486. } else if (key.match(patterns.fixed)) { // fixed
  487. merge = self.build([], key, merge);
  488. } else if (key.match(patterns.named)) { // named
  489. merge = self.build({}, key, merge);
  490. }
  491. }
  492. data = $.extend(true, data, merge);
  493. });
  494. return data;
  495. };
  496. /*! 全局文件上传入口 */
  497. $.fn.uploadFile = function (callback) {
  498. if (this.attr('data-inited')) return false;
  499. var that = this, mode = $(this).attr('data-file') || 'one';
  500. this.attr('data-inited', true).attr('data-multiple', (mode !== 'btn' && mode !== 'one') ? 1 : 0);
  501. setTimeout(function () {
  502. require(['upload'], function (apply) {
  503. apply(that, null, callback);
  504. });
  505. },500)
  506. };
  507. /*! 上传单个图视频 */
  508. $.fn.uploadOneVideo = function () {
  509. var name = $(this).attr('name') || 'video_link', type = $(this).data('type') || 'mp4';
  510. if(type == 'mp3'){
  511. var $tpl = $('<aduio data-file="btn" class="uploadimage"></aduio>').attr('data-field', name).attr('data-type', type);
  512. $(this).attr('name', name).after($tpl.data('input', this)).on('change', function () {
  513. if (this.value) $tpl.attr('src', this.value)
  514. }).trigger('change');
  515. }else{
  516. var $tpl = $('<video data-file="btn" class="uploadimage"></video>').attr('data-field', name).attr('data-type', type);
  517. $(this).attr('name', name).after($tpl.data('input', this)).on('change', function () {
  518. if (this.value) $tpl.attr('src', this.value)
  519. }).trigger('change');
  520. }
  521. };
  522. /*! 上传单个图片 */
  523. $.fn.uploadOneImage = function () {
  524. var name = $(this).attr('name') || 'image', type = $(this).data('type') || 'png,jpg,gif';
  525. var $tpl = $('<a data-file="btn" class="uploadimage"></a>').attr('data-field', name).attr('data-type', type);
  526. $(this).attr('name', name).after($tpl.data('input', this)).on('change', function () {
  527. if (this.value) $tpl.css('backgroundImage', 'url(' + this.value + ')');
  528. }).trigger('change');
  529. };
  530. /*! 上传多个图片 */
  531. $.fn.uploadMultipleImage = function () {
  532. var type = $(this).data('type') || 'png,jpg,gif', name = $(this).attr('name') || 'umt-image';
  533. var $tpl = $('<a class="uploadimage"></a>').attr('data-file', 'mul').attr('data-field', name).attr('data-type', type);
  534. $(this).attr('name', name).after($tpl.data('input', this)).on('change', function () {
  535. var input = this;
  536. this.setImageData = function () {
  537. input.value = input.getImageData().join('|');
  538. };
  539. this.getImageData = function () {
  540. var values = [];
  541. $(input).prevAll('.uploadimage').map(function () {
  542. values.push($(this).attr('data-tips-image'));
  543. });
  544. return values.reverse(), values;
  545. };
  546. var urls = this.getImageData(), srcs = this.value.split('|');
  547. for (var i in srcs) if (srcs[i]) urls.push(srcs[i]);
  548. $(this).prevAll('.uploadimage').remove();
  549. this.value = urls.join('|');
  550. for (var i in urls) {
  551. var tpl = '<div class="uploadimage uploadimagemtl"><a class="layui-icon margin-right-5">&#xe602;</a><a class="layui-icon margin-right-5">&#x1006;</a><a class="layui-icon margin-right-5">&#xe603;</a></div>';
  552. var $tpl = $(tpl).attr('data-tips-image', urls[i]).css('backgroundImage', 'url(' + urls[i] + ')').on('click', 'a', function (e) {
  553. e.stopPropagation();
  554. var $cur = $(this).parent();
  555. switch ($(this).index()) {
  556. case 1:// remove
  557. return $.msg.confirm('确定要移除这张图片吗?', function (index) {
  558. $cur.remove(), input.setImageData(), $.msg.close(index);
  559. });
  560. case 0: // right
  561. var lenght = $cur.siblings('div.uploadimagemtl').length;
  562. if ($cur.index() !== lenght) $cur.next().after($cur);
  563. return input.setImageData();
  564. case 2: // left
  565. if ($cur.index() !== 0) $cur.prev().before($cur);
  566. return input.setImageData();
  567. }
  568. });
  569. $(this).before($tpl);
  570. }
  571. }).trigger('change');
  572. };
  573. /*! 注册 data-load 事件行为 */
  574. $body.on('click', '[data-load]', function () {
  575. var url = $(this).attr('data-load'), tips = $(this).attr('data-tips'), time = $(this).attr('data-time');
  576. if ($(this).attr('data-confirm')) return $.msg.confirm($(this).attr('data-confirm'), function () {
  577. $.form.load(url, {}, 'get', null, true, tips, time);
  578. });
  579. $.form.load(url, {}, 'get', null, true, tips, time);
  580. });
  581. /*! 注册 data-serach 表单搜索行为 */
  582. $body.on('submit', 'form.form-search', function () {
  583. var url = $(this).attr('action').replace(/&?page=\d+/g, ''), split = url.indexOf('?') === -1 ? '?' : '&';
  584. if ((this.method || 'get').toLowerCase() === 'get') {
  585. return window.location.href = '#' + $.menu.parseUri(url + split + $(this).serialize());
  586. }
  587. $.form.load(url, this, 'post');
  588. });
  589. /*! 注册 data-modal 事件行为 */
  590. $body.on('click', '[data-modal]', function () {
  591. return $.form.modal($(this).attr('data-modal'), 'open_type=modal', $(this).attr('data-title') || $(this).text() || '编辑');
  592. });
  593. /*! 注册 data-open 事件行为 */
  594. $body.on('click', '[data-open]', function () {
  595. $.form.href($(this).attr('data-open'), this);
  596. });
  597. /*! 注册 data-dbclick 事件行为 */
  598. $body.on('dblclick', '[data-dbclick]', function () {
  599. $(this).find(this.getAttribute('data-dbclick') || '[data-dbclick]').trigger('click');
  600. });
  601. /*! 注册 data-reload 事件行为 */
  602. $body.on('click', '[data-reload]', function () {
  603. $.form.reload();
  604. });
  605. /*! 注册 data-check 事件行为 */
  606. $body.on('click', '[data-check-target]', function () {
  607. var checked = !!this.checked;
  608. $($(this).attr('data-check-target')).map(function () {
  609. this.checked = checked;
  610. $(this).trigger('change');
  611. });
  612. });
  613. /*! 注册 data-action 事件行为 */
  614. $body.on('click', '[data-action]', function () {
  615. var $this = $(this), data = {}, time = $this.attr('data-time'), action = $this.attr('data-action');
  616. var loading = $this.attr('data-loading'), method = $this.attr('data-method') || 'post';
  617. var rule = $this.attr('data-value') || (function (rule, ids) {
  618. $($this.attr('data-target') || 'input[type=checkbox].list-check-box').map(function () {
  619. (this.checked) && ids.push(this.value);
  620. });
  621. return ids.length > 0 ? rule.replace('{key}', ids.join(',')) : '';
  622. }).call(this, $this.attr('data-rule') || '', []) || '';
  623. if (rule.length < 1) return $.msg.tips('请选择需要更改的数据!');
  624. var rules = rule.split(';');
  625. for (var i in rules) {
  626. if (rules[i].length < 2) return $.msg.tips('异常的数据操作规则,请修改规则!');
  627. data[rules[i].split('#')[0]] = rules[i].split('#')[1];
  628. }
  629. data['_csrf_'] = $this.attr('data-token') || $this.attr('data-csrf') || '--';
  630. var load = loading !== 'false', tips = typeof loading === 'string' ? loading : undefined;
  631. if (!$this.attr('data-confirm')) $.form.load(action, data, method, false, load, tips, time);
  632. else $.msg.confirm($this.attr('data-confirm'), function () {
  633. $.form.load(action, data, method, false, load, tips, time);
  634. });
  635. });
  636. /*! 输入框失焦提交 */
  637. $body.on('blur', '[data-action-blur]', function () {
  638. var data = {}, that = this, $this = $(this), action = $this.attr('data-action-blur');
  639. var time = $this.attr('data-time'), loading = $this.attr('data-loading') || false;
  640. var load = loading !== 'false', tips = typeof loading === 'string' ? loading : undefined;
  641. var method = $this.attr('data-method') || 'post', confirm = $this.attr('data-confirm');
  642. var attrs = $this.attr('data-value').replace('{value}', $this.val()).split(';');
  643. for (var i in attrs) {
  644. if (attrs[i].length < 2) return $.msg.tips('异常的数据操作规则,请修改规则!');
  645. data[attrs[i].split('#')[0]] = attrs[i].split('#')[1];
  646. }
  647. that.callback = function (ret) {
  648. $this.css('border', (ret && ret.code) ? '1px solid #e6e6e6' : '1px solid red');
  649. return false;
  650. };
  651. data['_csrf_'] = $this.attr('data-token') || $this.attr('data-csrf') || '--';
  652. if (!confirm) return $.form.load(action, data, method, that.callback, load, tips, time);
  653. $.msg.confirm(confirm, function () {
  654. $.form.load(action, data, method, that.callback, load, tips, time);
  655. });
  656. });
  657. /*! 注册 data-href 事件行为 */
  658. $body.on('click', '[data-href]', function (href) {
  659. href = $(this).attr('data-href');
  660. if (href && href.indexOf('#') !== 0) window.location.href = href;
  661. });
  662. /*! 注册 data-iframe 事件行为 */
  663. $body.on('click', '[data-iframe]', function () {
  664. $(this).attr('data-index', $.form.iframe(this.dataset.iframe, this.dataset.title || '窗口', this.dataset.area || [
  665. this.dataset.width || '800px', this.dataset.height || '580px'
  666. ]));
  667. });
  668. /*! 注册 data-icon 事件行为 */
  669. $body.on('click', '[data-icon]', function (field, location) {
  670. field = $(this).attr('data-icon') || $(this).attr('data-field') || 'icon';
  671. location = window.ROOT_URL + '?s=admin/api.plugs/icon.html&field=' + field;
  672. $.form.iframe(location, '图标选择');
  673. });
  674. /*! 注册 data-copy 事件行为 */
  675. $body.on('click', '[data-copy]', function () {
  676. $.copyToClipboard(this.getAttribute('data-copy'));
  677. });
  678. $.copyToClipboard = function (content, input) {
  679. input = document.createElement('textarea');
  680. input.style.position = 'absolute', input.style.left = '-100000px';
  681. input.style.width = '1px', input.style.height = '1px', input.innerText = content;
  682. document.body.appendChild(input), input.select(), setTimeout(function () {
  683. document.execCommand('Copy') ? $.msg.tips('复制成功') : $.msg.tips('复制失败,请使用鼠标操作复制!');
  684. document.body.removeChild(input);
  685. }, 100);
  686. };
  687. /*! 注册 data-tips-text 事件行为 */
  688. $body.on('mouseenter', '[data-tips-text]', function () {
  689. $(this).attr('index', layer.tips($(this).attr('data-tips-text'), this, {tips: [$(this).attr('data-tips-type') || 3, '#78BA32']}));
  690. }).on('mouseleave', '[data-tips-text]', function () {
  691. layer.close($(this).attr('index'));
  692. });
  693. /*! 注册 data-tips-image 事件行为 */
  694. $body.on('click', '[data-tips-image]', function () {
  695. $.previewImage(this.getAttribute('data-tips-image') || this.src, this.getAttribute('data-width'));
  696. });
  697. $.previewImage = function (src, area) {
  698. var img = new Image(), index = $.msg.loading();
  699. img.style.background = '#fff', img.style.display = 'none';
  700. img.style.height = 'auto', img.style.width = area || '480px';
  701. document.body.appendChild(img), img.onerror = function () {
  702. $.msg.close(index);
  703. }, img.onload = function () {
  704. layer.open({
  705. type: 1, shadeClose: true, success: img.onerror, content: $(img), title: false,
  706. area: area || '480px', closeBtn: 1, skin: 'layui-layer-nobg', end: function () {
  707. document.body.removeChild(img);
  708. }
  709. });
  710. };
  711. img.src = src;
  712. };
  713. /*! 注册 data-phone-view 事件行为 */
  714. $body.on('click', '[data-phone-view]', function () {
  715. $.previewPhonePage(this.getAttribute('data-phone-view') || this.href);
  716. });
  717. $.previewPhonePage = function (href, title) {
  718. var tpl = '<div><div class="mobile-preview pull-left"><div class="mobile-header">_TITLE_</div><div class="mobile-body"><iframe id="phone-preview" src="_URL_" frameborder="0" marginheight="0" marginwidth="0"></iframe></div></div></div>';
  719. layer.style(layer.open({type: true, scrollbar: false, area: ['320px', '600px'], title: false, closeBtn: true, shadeClose: false, skin: 'layui-layer-nobg', content: $(tpl.replace('_TITLE_', title || '公众号').replace('_URL_', href)).html(),}), {boxShadow: 'none'});
  720. };
  721. /*! 表单编辑返回操作 */
  722. $body.on('click', '[data-history-back]', function (title) {
  723. title = this.getAttribute('data-history-back') || '确定要返回上一页吗?';
  724. $.msg.confirm(title, function (index) {
  725. history.back();
  726. $.msg.close(index);
  727. })
  728. });
  729. /*! 表单元素失去焦点处理 */
  730. $body.on('blur', '[data-blur-number]', function (fiexd) {
  731. fiexd = this.getAttribute('data-blur-number') || 0;
  732. this.value = (parseFloat(this.value) || 0).toFixed(fiexd);
  733. });
  734. /*! 图片加载异常处理 */
  735. document.addEventListener('error', function (e, elem) {
  736. elem = e.target;
  737. if (elem.tagName.toLowerCase() === 'img') {
  738. elem.src = baseRoot + 'theme/img/404_icon.png';
  739. }
  740. }, true);
  741. /*! 初始化事件 */
  742. $.menu.listen();
  743. $.vali.listen();
  744. });