admin.js 62 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136
  1. // +----------------------------------------------------------------------
  2. // | ThinkAdmin
  3. // +----------------------------------------------------------------------
  4. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  5. // +----------------------------------------------------------------------
  6. // | 官方网站: https://thinkadmin.top
  7. // +----------------------------------------------------------------------
  8. // | 开源协议 ( https://mit-license.org )
  9. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. /*! 应用根路径,静态插件库路径,动态插件库路径 */
  15. var srcs = document.scripts[document.scripts.length - 1].src.split('/');
  16. window.appRoot = srcs.slice(0, -2).join('/') + '/';
  17. window.baseRoot = srcs.slice(0, -1).join('/') + '/';
  18. window.tapiRoot = window.taAdmin || window.appRoot + "admin";
  19. /*! 挂载 layui & jquery 对象 */
  20. layui.config({base: baseRoot + 'plugs/layui_exts/'});
  21. window.form = layui.form, window.layer = layui.layer;
  22. window.laytpl = layui.laytpl, window.laydate = layui.laydate;
  23. window.jQuery = window.$ = window.jQuery || window.$ || layui.$;
  24. /*! 配置 require 参数 */
  25. require.config({
  26. baseUrl: baseRoot, waitSeconds: 60,
  27. map: {'*': {css: baseRoot + 'plugs/require/css.js'}},
  28. paths: {
  29. 'vue': ['plugs/vue/vue.min'],
  30. 'md5': ['plugs/jquery/md5.min'],
  31. 'json': ['plugs/jquery/json.min'],
  32. 'xlsx': ['plugs/jquery/xlsx.min'],
  33. 'jszip': ['plugs/jquery/jszip.min'],
  34. 'excel': ['plugs/jquery/excel.xlsx'],
  35. 'marked': ['plugs/jquery/marked.min'],
  36. 'base64': ['plugs/jquery/base64.min'],
  37. 'upload': [tapiRoot + '/api.upload/index?'],
  38. 'notify': ['plugs/notify/notify.min'],
  39. 'angular': ['plugs/angular/angular.min'],
  40. 'cropper': ['plugs/cropper/cropper.min'],
  41. 'echarts': ['plugs/echarts/echarts.min'],
  42. 'ckeditor4': ['plugs/ckeditor4/ckeditor'],
  43. 'ckeditor5': ['plugs/ckeditor5/ckeditor'],
  44. 'filesaver': ['plugs/jquery/filesaver.min'],
  45. 'websocket': ['plugs/socket/websocket'],
  46. 'pcasunzips': ['plugs/jquery/pcasunzips'],
  47. 'compressor': ['plugs/jquery/compressor.min'],
  48. 'sortablejs': ['plugs/sortable/sortable.min'],
  49. 'vue.sortable': ['plugs/sortable/vue.draggable.min'],
  50. 'jquery.ztree': ['plugs/ztree/ztree.all.min'],
  51. 'jquery.masonry': ['plugs/jquery/masonry.min'],
  52. 'jquery.cropper': ['plugs/cropper/cropper.min'],
  53. 'jquery.autocompleter': ['plugs/jquery/autocompleter.min'],
  54. }, shim: {
  55. 'jszip': {deps: ['filesaver']},
  56. 'excel': {deps: [baseRoot + 'plugs/layui_exts/excel.js']},
  57. 'notify': {deps: ['css!' + baseRoot + 'plugs/notify/light.css']},
  58. 'cropper': {deps: ['css!' + baseRoot + 'plugs/cropper/cropper.min.css']},
  59. 'websocket': {deps: [baseRoot + 'plugs/socket/swfobject.js']},
  60. 'ckeditor5': {deps: ['jquery', 'upload', 'css!' + baseRoot + 'plugs/ckeditor5/ckeditor.css']},
  61. 'vue.sortable': {deps: ['vue', 'sortablejs']},
  62. 'jquery.ztree': {deps: ['jquery', 'css!' + baseRoot + 'plugs/ztree/zTreeStyle/zTreeStyle.css']},
  63. 'jquery.autocompleter': {deps: ['jquery', 'css!' + baseRoot + 'plugs/jquery/autocompleter.css']},
  64. }
  65. });
  66. /*! 注册 jquery 组件 */
  67. define('jquery', [], function () {
  68. return layui.$;
  69. });
  70. /*! 注册 ckeditor 组件 */
  71. define('ckeditor', (function (type) {
  72. if (/^ckeditor[45]$/.test(type)) return [type];
  73. return [Object.fromEntries ? 'ckeditor5' : 'ckeditor4'];
  74. })(window.taEditor || 'ckeditor4'), function (ckeditor) {
  75. return ckeditor;
  76. });
  77. $(function () {
  78. window.$body = $('body');
  79. /*! 注册单次事件 */
  80. function onEvent(event, select, callable) {
  81. return $body.off(event, select).on(event, select, callable);
  82. }
  83. /*! 注册确认回调 */
  84. function onConfirm(confirm, callable) {
  85. return confirm ? $.msg.confirm(confirm, callable) : callable();
  86. }
  87. /*! 获取加载回调 */
  88. onConfirm.getLoadCallable = function (tabldId, callable) {
  89. typeof callable === 'function' && callable();
  90. return tabldId ? function (ret, time) {
  91. if (ret.code < 1) return true;
  92. time === 'false' ? $.layTable.reload(tabldId) : $.msg.success(ret.info, time, function () {
  93. $.layTable.reload(tabldId);
  94. });
  95. return false;
  96. } : false;
  97. }
  98. /*! 读取 data-value & data-rule 并应用到 callable */
  99. function applyRuleValue(elem, data, callabel) {
  100. // 新 tableId 规则兼容处理
  101. if (elem.dataset.tableId && elem.dataset.rule) {
  102. var idx1, idx2, temp, regx, field, rule = {};
  103. var json = layui.table.checkStatus(elem.dataset.tableId).data;
  104. layui.each(elem.dataset.rule.split(';'), function (idx, item, attr) {
  105. (attr = item.split('#', 2)), rule[attr[0]] = attr[1];
  106. });
  107. for (idx1 in rule) {
  108. temp = [], regx = new RegExp(/^{(.*?)}$/);
  109. if (regx.test(rule[idx1]) && (field = rule[idx1].replace(regx, '$1'))) {
  110. for (idx2 in json) if (json[idx2][field]) temp.push(json[idx2][field]);
  111. if (temp.length < 1) return $.msg.tips('请选择需要更改的数据!'), false;
  112. data[idx1] = temp.join(',');
  113. } else {
  114. data[idx1] = rule[idx1];
  115. }
  116. }
  117. return onConfirm(elem.dataset.confirm, function () {
  118. return callabel.call(elem, data);
  119. });
  120. } else if (elem.dataset.value || elem.dataset.rule) {
  121. var value = elem.dataset.value || (function (rule, array) {
  122. $(elem.dataset.target || 'input[type=checkbox].list-check-box').map(function () {
  123. this.checked && array.push(this.value);
  124. });
  125. return array.length > 0 ? rule.replace('{key}', array.join(',')) : '';
  126. })(elem.dataset.rule || '', []) || '';
  127. if (value.length < 1) return $.msg.tips('请选择需要更改的数据!'), false;
  128. value.split(';').forEach(function (item) {
  129. data[item.split('#')[0]] = item.split('#')[1];
  130. });
  131. return onConfirm(elem.dataset.confirm, function () {
  132. return callabel.call(elem, data);
  133. });
  134. } else {
  135. return onConfirm(elem.dataset.confirm, function () {
  136. return callabel.call(elem, data);
  137. });
  138. }
  139. }
  140. /*! 消息组件实例 */
  141. $.msg = new function () {
  142. this.idx = [], this.mdx = [], this.shade = [0.02, '#000000'];
  143. /*! 关闭最新窗口 */
  144. this.closeLastModal = function () {
  145. while ($.msg.mdx.length > 0 && (this.tdx = $.msg.mdx.pop()) > 0) {
  146. if ($('#layui-layer' + this.tdx).size()) return layer.close(this.tdx);
  147. }
  148. };
  149. /*! 关闭消息框 */
  150. this.close = function (idx) {
  151. if (idx !== null) return layer.close(idx);
  152. for (var i in this.idx) $.msg.close(this.idx[i]);
  153. this.idx = [];
  154. };
  155. /*! 弹出警告框 */
  156. this.alert = function (msg, call) {
  157. var idx = layer.alert(msg, {end: call, scrollbar: false});
  158. return $.msg.idx.push(idx), idx;
  159. };
  160. /*! 显示成功类型的消息 */
  161. this.success = function (msg, time, call) {
  162. var idx = layer.msg(msg, {icon: 1, shade: this.shade, scrollbar: false, end: call, time: (time || 2) * 1000, shadeClose: true});
  163. return $.msg.idx.push(idx), idx;
  164. };
  165. /*! 显示失败类型的消息 */
  166. this.error = function (msg, time, call) {
  167. var idx = layer.msg(msg, {icon: 2, shade: this.shade, scrollbar: false, time: (time || 3) * 1000, end: call, shadeClose: true});
  168. return $.msg.idx.push(idx), idx;
  169. };
  170. /*! 状态消息提示 */
  171. this.tips = function (msg, time, call) {
  172. var idx = layer.msg(msg, {time: (time || 3) * 1000, shade: this.shade, end: call, shadeClose: true});
  173. return $.msg.idx.push(idx), idx;
  174. };
  175. /*! 显示加载提示 */
  176. this.loading = function (msg, call) {
  177. var idx = msg ? layer.msg(msg, {icon: 16, scrollbar: false, shade: this.shade, time: 0, end: call}) : layer.load(2, {time: 0, scrollbar: false, shade: this.shade, end: call});
  178. return $.msg.idx.push(idx), idx;
  179. };
  180. /*! 页面加载层 */
  181. this.page = new function () {
  182. this.$body = $('body>.think-page-loader');
  183. this.$main = $('.think-page-body+.think-page-loader');
  184. this.stat = function () {
  185. return this.$body.is(':visible');
  186. }, this.done = function () {
  187. $.msg.page.$body.fadeOut();
  188. }, this.show = function () {
  189. this.stat() || this.$main.removeClass('layui-hide').show();
  190. }, this.hide = function () {
  191. if (this.time) clearTimeout(this.time);
  192. this.time = setTimeout(function () {
  193. ($.msg.page.time = 0) || $.msg.page.$main.fadeOut();
  194. }, 200);
  195. };
  196. };
  197. /*! 确认对话框 */
  198. this.confirm = function (msg, ok, no) {
  199. return layer.confirm(msg, {title: '操作确认', btn: ['确认', '取消']}, function (idx) {
  200. (typeof ok === 'function' && ok.call(this, idx)), $.msg.close(idx);
  201. }, function (idx) {
  202. (typeof no === 'function' && no.call(this, idx)), $.msg.close(idx);
  203. });
  204. };
  205. /*! 自动处理JSON数据 */
  206. this.auto = function (ret, time) {
  207. var url = ret.url || (typeof ret.data === 'string' ? ret.data : '');
  208. var msg = ret.msg || (typeof ret.info === 'string' ? ret.info : '');
  209. if (parseInt(ret.code) === 1 && time === 'false') {
  210. return url ? $.form.goto(url) : $.form.reload();
  211. } else return (parseInt(ret.code) === 1) ? this.success(msg, time, function () {
  212. $.msg.closeLastModal(url ? $.form.goto(url) : $.form.reload());
  213. }) : this.error(msg, 3, function () {
  214. $.form.goto(url);
  215. });
  216. };
  217. };
  218. /*! 表单自动化组件 */
  219. $.form = new function () {
  220. /*! 内容区选择器 */
  221. this.selecter = '.layui-layout-admin>.layui-body>.think-page-body';
  222. /*! 刷新当前页面 */
  223. this.reload = function (force) {
  224. if (force) return top.location.reload();
  225. if (self !== top) return location.reload();
  226. return $.menu.href(location.hash);
  227. };
  228. /*! 内容区域动态加载后初始化 */
  229. this.reInit = function ($dom) {
  230. layui.form.render(), layui.element.render(), $(window).trigger('scroll');
  231. $.vali.listen($dom = $dom || $(this.selecter)), $body.trigger('reInit', $dom);
  232. return $dom.find('[required]').map(function () {
  233. this.$parent = $(this).parent();
  234. if (this.$parent.is('label')) this.$parent.addClass('label-required-prev'); else this.$parent.prevAll('label.layui-form-label').addClass('label-required-next');
  235. }), $dom.find('[data-lazy-src]:not([data-lazy-loaded])').map(function () {
  236. if (this.dataset.lazyLoaded === 'true') return; else this.dataset.lazyLoaded = 'true';
  237. if (this.nodeName === 'IMG') this.src = this.dataset.lazySrc; else this.style.backgroundImage = 'url(' + this.dataset.lazySrc + ')';
  238. }), $dom.find('input[data-date-range]').map(function () {
  239. this.setAttribute('autocomplete', 'off'), laydate.render({
  240. type: this.dataset.dateRange || 'date', range: true, elem: this, done: function (value) {
  241. $(this.elem).val(value).trigger('change');
  242. }
  243. });
  244. }), $dom.find('input[data-date-input]').map(function () {
  245. this.setAttribute('autocomplete', 'off'), laydate.render({
  246. type: this.dataset.dateInput || 'date', range: false, elem: this, done: function (value) {
  247. $(this.elem).val(value).trigger('change');
  248. }
  249. });
  250. }), $dom;
  251. };
  252. /*! 在内容区显示视图 */
  253. this.show = function (html) {
  254. $.form.reInit($(this.selecter).html(html));
  255. };
  256. /*! 异步加载的数据 */
  257. this.load = function (url, data, method, callable, loading, tips, time, headers) {
  258. // 如果主页面 loader 显示中,绝对不显示 loading 图标
  259. loading = $('.layui-page-loader').is(':visible') ? false : loading;
  260. var loadidx = loading !== false ? $.msg.loading(tips) : 0;
  261. if (typeof data === 'object' && typeof data['_token_'] === 'string') {
  262. headers = headers || {}, headers['User-Form-Token'] = data['_token_'], delete data['_token_'];
  263. }
  264. $.ajax({
  265. data: data || {}, type: method || 'GET', url: $.menu.parseUri(url), beforeSend: function (xhr, i) {
  266. if (typeof Pace === 'object' && loading !== false) Pace.restart();
  267. if (typeof headers === 'object') for (i in headers) xhr.setRequestHeader(i, headers[i]);
  268. }, error: function (XMLHttpRequest, $dialog, layIdx, iframe) {
  269. if (parseInt(XMLHttpRequest.status) !== 200 && XMLHttpRequest.responseText.indexOf('Call Stack') > -1) try {
  270. layIdx = layer.open({title: XMLHttpRequest.status + ' - ' + XMLHttpRequest.statusText, type: 2, move: false, content: 'javascript:;'});
  271. layer.full(layIdx), $dialog = $('#layui-layer' + layIdx), iframe = $dialog.find('iframe').get(0);
  272. (iframe.contentDocument || iframe.contentWindow.document).write(XMLHttpRequest.responseText);
  273. $dialog.find('.layui-layer-setwin').css({right: '35px', top: '28px'}).find('a').css({marginLeft: 0});
  274. $dialog.find('.layui-layer-title').css({color: 'red', height: '70px', lineHeight: '70px', fontSize: '22px', textAlign: 'center', fontWeight: 700});
  275. } catch (e) {
  276. layer.close(layIdx);
  277. }
  278. layer.closeAll('loading');
  279. if (parseInt(XMLHttpRequest.status) !== 200) {
  280. $.msg.tips('E' + XMLHttpRequest.status + ' - 服务器繁忙,请稍候再试!');
  281. } else {
  282. this.success(XMLHttpRequest.responseText);
  283. }
  284. }, success: function (ret) {
  285. time = time || ret.wait || undefined;
  286. if (typeof callable === 'function' && callable.call($.form, ret, time) === false) return false;
  287. return typeof ret === 'object' ? $.msg.auto(ret, time) : $.form.show(ret);
  288. }, complete: function () {
  289. $.msg.page.done();
  290. $.msg.close(loadidx);
  291. }
  292. });
  293. };
  294. /*! 兼容跳转与执行 */
  295. this.goto = function (url) {
  296. if (typeof url !== 'string' || url.length < 1) return;
  297. if (url.toLocaleString().indexOf('javascript:') === 0) {
  298. return eval(url.split('javascript:', 2)[1]);
  299. } else {
  300. return location.href = url;
  301. }
  302. };
  303. /*! 以 HASH 打开新网页 */
  304. this.href = function (url, elem) {
  305. this.isMenu = elem && elem.dataset.menuNode;
  306. if (this.isMenu) layui.sessionData('pages', null);
  307. if (url !== '#') return location.hash = $.menu.parseUri(url, elem);
  308. if (this.isMenu) return $('[data-menu-node^="' + elem.dataset.menuNode + '-"]:first').trigger('click');
  309. };
  310. /*! 加载 HTML 到 BODY 位置 */
  311. this.open = function (url, data, call, load, tips) {
  312. this.load(url, data, 'get', function (ret) {
  313. return (typeof ret === 'object' ? $.msg.auto(ret) : $.form.show(ret)), false;
  314. }, load, tips);
  315. };
  316. /*! 打开 IFRAME 窗口 */
  317. this.iframe = function (url, name, area, offset, destroy, success, isfull) {
  318. this.idx = layer.open({title: name || '窗口', type: 2, area: area || ['800px', '580px'], end: destroy || null, offset: offset, fixed: true, maxmin: false, content: url, success: success});
  319. return isfull && layer.full(this.idx), this.idx;
  320. };
  321. /*! 加载 HTML 到弹出层 */
  322. this.modal = function (url, data, name, call, load, tips, area, offset, isfull) {
  323. this.load(url, data, 'GET', function (res) {
  324. if (typeof res === 'object') return $.msg.auto(res), false;
  325. return $.msg.mdx.push(this.idx = layer.open({
  326. type: 1, btn: false, area: area || "800px", resize: false, content: res, title: name || '', offset: offset || 'auto', success: function ($dom, idx) {
  327. typeof call === 'function' && call.call($.form, $dom);
  328. $.form.reInit($dom.off('click', '[data-close]').on('click', '[data-close]', function () {
  329. onConfirm(this.dataset.confirm, function () {
  330. layer.close(idx);
  331. });
  332. }));
  333. }
  334. })), isfull && layer.full(this.idx), false;
  335. }, load, tips);
  336. };
  337. };
  338. /*! 后台菜单辅助插件 */
  339. $.menu = new function () {
  340. /*! 计算 URL 地址中有效的 URI */
  341. this.getUri = function (uri) {
  342. uri = uri || location.href;
  343. uri = uri.indexOf(location.host) > -1 ? uri.split(location.host)[1] : uri;
  344. return (uri.indexOf('#') > -1 ? uri.split('#')[1] : uri).split('?')[0];
  345. };
  346. /*! 通过 URI 查询最佳菜单 NODE */
  347. this.queryNode = function (uri, node) {
  348. if (!/^m-/.test(node = node || location.href.replace(/.*spm=([\d\-m]+).*/ig, '$1'))) {
  349. var $menu = $('[data-menu-node][data-open*="' + uri.replace(/\.html$/ig, '') + '"]');
  350. return $menu.size() ? $menu.get(0).dataset.menuNode : '';
  351. }
  352. return node;
  353. };
  354. /*! 完整 URL 转 URI 地址 */
  355. this.parseUri = function (uri, elem, vars, temp, attrs) {
  356. vars = {}, attrs = [], elem = elem || document.createElement('a');
  357. if (uri.indexOf('?') > -1) uri.split('?')[1].split('&').forEach(function (item) {
  358. if (item.indexOf('=') > -1 && (temp = item.split('=')) && typeof temp[0] === 'string' && temp[0].length > 0) {
  359. vars[temp[0]] = encodeURIComponent(decodeURIComponent(temp[1].replace(/%2B/ig, '%20')));
  360. }
  361. });
  362. uri = this.getUri(uri);
  363. if (typeof vars.spm !== 'string') vars.spm = elem.dataset.menuNode || this.queryNode(uri) || '';
  364. if (typeof vars.spm !== 'string' || vars.spm.length < 1) delete vars.spm;
  365. for (var i in vars) attrs.push(i + '=' + vars[i]);
  366. return uri + (attrs.length > 0 ? '?' + attrs.join('&') : '');
  367. };
  368. /*! 后台菜单动作初始化 */
  369. this.listen = function () {
  370. var layout = $('.layui-layout-admin'), mclass = 'layui-layout-left-mini';
  371. /*! 菜单切及MiniTips处理 */
  372. onEvent('click', '[data-target-menu-type]', function () {
  373. layui.data('AdminMenuType', {key: 'mini', value: layout.toggleClass(mclass).hasClass(mclass)});
  374. }).on('click', '[data-submenu-layout]>a', function () {
  375. setTimeout("$.menu.sync(1)", 100);
  376. }).on('mouseenter', '[data-target-tips]', function (evt) {
  377. if (!layout.hasClass(mclass) || !this.dataset.targetTips) return;
  378. evt.idx = layer.tips(this.dataset.targetTips, this, {time: 0});
  379. $(this).mouseleave(function () {
  380. layer.close(evt.idx);
  381. });
  382. });
  383. /*! 监听窗口大小及HASH切换 */
  384. $(window).on('resize', function () {
  385. (layui.data('AdminMenuType')['mini'] || $body.width() < 1000) ? layout.addClass(mclass) : layout.removeClass(mclass);
  386. }).trigger('resize').on('hashchange', function () {
  387. if (/^#(https?:)?(\/\/|\\\\)/.test(location.hash)) return $.msg.tips('禁止访问外部链接!');
  388. if (location.hash.length < 1) return $body.find('[data-menu-node]:first').trigger('click'); else return $.menu.href(location.hash);
  389. }).trigger('hashchange');
  390. };
  391. /*! 同步二级菜单展示状态 */
  392. this.sync = function (mode) {
  393. $('[data-submenu-layout]').map(function () {
  394. var node = this.dataset.submenuLayout;
  395. if (mode === 1) layui.data('AdminMenuState', {key: node, value: $(this).hasClass('layui-nav-itemed') ? 2 : 1}); else if (mode === 2) (layui.data('AdminMenuState')[node] || 2) === 2 && $(this).addClass('layui-nav-itemed');
  396. });
  397. };
  398. /*! 页面 LOCATION-HASH 跳转 */
  399. this.href = function (hash, node) {
  400. if ((hash || '').length < 1) return $('[data-menu-node]:first').trigger('click');
  401. // $.msg.page.show(),$.form.load(hash, {}, 'get', $.msg.page.hide, true),$.menu.sync(2);
  402. $.form.load(hash, {}, 'get', false, !$.msg.page.stat()), $.menu.sync(2);
  403. /*! 菜单选择切换 */
  404. if (/^m-/.test(node = node || $.menu.queryNode($.menu.getUri()))) {
  405. var arr = node.split('-'), tmp = arr.shift(), $all = $('a[data-menu-node]').parent('.layui-this');
  406. while (arr.length > 0) {
  407. tmp = tmp + '-' + arr.shift();
  408. $all = $all.not($('a[data-menu-node="' + tmp + '"]').parent().addClass('layui-this'));
  409. }
  410. $all.removeClass('layui-this');
  411. /*! 菜单模式切换 */
  412. if (node.split('-').length > 2) {
  413. var _tmp = node.split('-'), _node = _tmp.shift() + '-' + _tmp.shift();
  414. $('[data-menu-layout]').not($('[data-menu-layout="' + _node + '"]').removeClass('layui-hide')).addClass('layui-hide');
  415. $('[data-menu-node="' + node + '"]').parent().parent().parent().addClass('layui-nav-itemed');
  416. $('.layui-layout-admin').removeClass('layui-layout-left-hide');
  417. } else {
  418. $('.layui-layout-admin').addClass('layui-layout-left-hide');
  419. }
  420. setTimeout("$.menu.sync(1);", 100);
  421. }
  422. };
  423. };
  424. /*! 表单验证组件 */
  425. $.vali = function (form, callable) {
  426. return $(form).data('validate') || new Validate();
  427. function Validate() {
  428. var that = this;
  429. /* 绑定表单元素 */
  430. this.form = $(form);
  431. /* 绑定元素事件, 筛选表单元素 */
  432. this.evts = 'blur change';
  433. this.tags = 'input,textarea';
  434. /* 预设检测规则 */
  435. this.patterns = {
  436. phone: '^1[3-9][0-9]{9}$', email: '^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$'
  437. };
  438. /*! 检测属性是否有定义 */
  439. this.hasProp = function (ele, prop) {
  440. var attrProp = ele.getAttribute(prop);
  441. return typeof attrProp !== 'undefined' && attrProp !== null && attrProp !== false;
  442. }, this.isRegex = function (ele) {
  443. var real = $.trim($(ele).val());
  444. var regexp = ele.getAttribute('pattern');
  445. regexp = this.patterns[regexp] || regexp;
  446. if (real === "" || !regexp) return true;
  447. return new RegExp(regexp, 'i').test(real);
  448. }, this.checkAllInput = function () {
  449. var status = true;
  450. return that.form.find(this.tags).each(function () {
  451. if (that.checkInput(this) === false) return $(this).focus(), status = false;
  452. }), status;
  453. }, this.checkInput = function (input) {
  454. if (this.hasProp(input, 'data-auto-none')) return true;
  455. var type = (input.getAttribute('type') || '').replace(/\W+/, "").toLowerCase();
  456. var ingores = ['file', 'reset', 'image', 'radio', 'checkbox', 'submit', 'hidden'];
  457. if (ingores.length > 0) for (var i in ingores) if (type === ingores[i]) return true;
  458. if (this.hasProp(input, 'required') && $.trim($(input).val()) === '') return this.remind(input);
  459. return this.isRegex(input) ? (this.hideError(input), true) : this.remind(input);
  460. }, this.remind = function (input) {
  461. if (!$(input).is(':visible')) return true;
  462. return this.showError(input, input.getAttribute('title') || input.getAttribute('placeholder') || '输入错误'), false;
  463. }, this.showError = function (ele, tip) {
  464. $(ele).addClass('validate-error');
  465. this.insertError(ele).addClass('layui-anim-fadein').css({width: 'auto'}).html(tip);
  466. }, this.hideError = function (ele) {
  467. $(ele).removeClass('validate-error');
  468. this.insertError(ele).removeClass('layui-anim-fadein').css({width: '30px'}).html('');
  469. }, this.insertError = function (ele) {
  470. if ($(ele).data('input-info')) return $(ele).data('input-info');
  471. var $html = $('<span class="absolute block layui-anim text-center font-s12 notselect" style="color:#A44;z-index:2"></span>');
  472. var $next = $(ele).nextAll('.input-right-icon'), right = ($next ? $next.width() + parseFloat($next.css('right') || '0') : 0) + 10;
  473. var style = {top: $(ele).position().top + 'px', right: right + 'px', lineHeight: ele.nodeName === 'TEXTAREA' ? '32px' : $(ele).css('height')};
  474. return $(ele).data('input-info', $html.css(style).insertAfter(ele)), $html;
  475. };
  476. /*! 表单元素验证 */
  477. this.form.attr({onsubmit: 'return false', novalidate: 'novalidate', autocomplete: 'off'});
  478. this.form.off(this.evts, this.tags).on(this.evts, this.tags, function () {
  479. that.checkInput(this);
  480. }).data('validate', this).bind("submit", function (evt) {
  481. evt.button = that.form.find('button[type=submit],button:not([type=button])');
  482. /* 检查所有表单元素是否通过H5的规则验证 */
  483. if (that.checkAllInput() && typeof callable === 'function') {
  484. if (typeof CKEDITOR === 'object' && typeof CKEDITOR.instances === 'object') {
  485. for (var i in CKEDITOR.instances) CKEDITOR.instances[i].updateElement();
  486. }
  487. /* 触发表单提交后,锁定三秒不能再次提交表单 */
  488. if (that.form.attr('submit-locked')) return false;
  489. that.form.attr('submit-locked', 1), evt.button.addClass('submit-button-loading');
  490. callable.call(this, that.form.formToJson(), []), setTimeout(function () {
  491. that.form.removeAttr('submit-locked'), evt.button.removeClass('submit-button-loading');
  492. }, 3000);
  493. }
  494. return evt.preventDefault(), false;
  495. }).find('[data-form-loaded]').map(function () {
  496. $(this).html(this.dataset.formLoaded || this.innerHTML);
  497. $(this).removeAttr('data-form-loaded').removeClass('layui-disabled');
  498. });
  499. }
  500. };
  501. /*! 自动监听表单 */
  502. $.vali.listen = function ($dom, $els) {
  503. $els = $($dom || $body).find('form[data-auto]');
  504. $dom && $($dom).filter('form[data-auto]') && $els.add($dom);
  505. $els.size() > 0 && $els.map(function (idx, form) {
  506. $(this).vali(function (data) {
  507. var emap = form.dataset, type = form.method || 'POST', href = form.action || location.href;
  508. var tips = emap.tips || undefined, time = emap.time || undefined, taid = emap.tableId || false;
  509. var call = window[emap.callable || '_default_callable'] || (taid ? function (ret) {
  510. if (typeof ret === 'object' && ret.code > 0 && $('#' + taid).size() > 0) {
  511. return $.msg.success(ret.info, 3, function () {
  512. $.msg.closeLastModal();
  513. (typeof ret.data === 'string' && ret.data) ? $.form.goto(ret.data) : $.layTable.reload(taid);
  514. }) && false;
  515. }
  516. } : undefined);
  517. onConfirm(emap.confirm, function () {
  518. $.form.load(href, data, type, call, true, tips, time);
  519. });
  520. });
  521. });
  522. };
  523. /*! 注册对象到JqFn */
  524. $.fn.vali = function (callable) {
  525. return this.each(function () {
  526. $.vali(this, callable);
  527. });
  528. };
  529. /*! 表单转JSON */
  530. $.fn.formToJson = function () {
  531. var self = this, data = {}, push = {};
  532. var rules = {key: /\w+|(?=\[])/g, push: /^$/, fixed: /^\d+$/, named: /^\w+$/};
  533. this.build = function (base, key, value) {
  534. return (base[key] = value), base;
  535. }, this.pushCounter = function (name) {
  536. if (push[name] === undefined) push[name] = 0;
  537. return push[name]++;
  538. }, $.each($(this).serializeArray(), function () {
  539. var key, keys = this.name.match(rules.key), merge = this.value, name = this.name;
  540. while ((key = keys.pop()) !== undefined) {
  541. name = name.replace(new RegExp("\\[" + key + "\\]$"), '');
  542. if (key.match(rules.push)) merge = self.build([], self.pushCounter(name), merge);
  543. else if (key.match(rules.fixed)) merge = self.build([], key, merge);
  544. else if (key.match(rules.named)) merge = self.build({}, key, merge);
  545. }
  546. data = $.extend(true, data, merge);
  547. });
  548. return data;
  549. };
  550. /*! 全局文件上传 */
  551. $.fn.uploadFile = function (callable, initialize) {
  552. return this.each(function (idx, elem) {
  553. if (elem.dataset.inited) return false; else elem.dataset.inited = 'true';
  554. elem.dataset.multiple = '|one|btn|'.indexOf(elem.dataset.file || 'one') > -1 ? '0' : '1';
  555. require(['upload'], function (apply) {
  556. apply(elem, callable) && setTimeout(function () {
  557. typeof initialize === 'function' && initialize.call(elem, elem);
  558. }, 100);
  559. });
  560. });
  561. };
  562. /*! 上传单个视频 */
  563. $.fn.uploadOneVideo = function () {
  564. return this.each(function () {
  565. if ($(this).data('inited')) return true; else $(this).data('inited', true);
  566. var $in = $(this), $bt = $('<a data-file class="uploadimage uploadvideo"><span class="layui-icon">&#x1006;</span><span class="layui-icon">&#xe615;</span></a>').data('input', this);
  567. $bt.attr('data-size', $in.data('size') || 0).attr('data-type', $in.data('type') || 'mp4').find('span').on('click', function (event) {
  568. event.stopPropagation();
  569. if ($(this).index() === 0) $bt.attr('style', ''), $in.val(''); else $in.val() && $.previewImage(encodeURI($in.val()));
  570. }), $in.on('change', function () {
  571. if (this.value) $bt.html('<video width="76" height="76" controls><source src="' + encodeURI(this.value) + '" type="video/mp4"></video>');
  572. }).after($bt).trigger('change');
  573. });
  574. };
  575. /*! 上传单张图片 */
  576. $.fn.uploadOneImage = function () {
  577. // console.log('this.dataset.inited1',this.dataset.inited)
  578. // console.log('uploadOneImage', this)
  579. return this.each(function () {
  580. // console.log('this.dataset.inited',this.dataset.inited)
  581. if (this.dataset.inited) return; else this.dataset.inited = 'true';
  582. var $bt = $('<div class="uploadimage"><span><a data-file class="layui-icon layui-icon-upload-drag"></a><i class="layui-icon layui-icon-search"></i><i class="layui-icon layui-icon-close"></i></span><span data-file="image"></span></div>');
  583. var $in = $(this).on('change', function () {
  584. if (this.value) $bt.css('backgroundImage', 'url(' + encodeURI(this.value) + ')');
  585. }).after($bt).trigger('change');
  586. // console.log('$in = ',this.value)
  587. $bt.on('click', 'i.layui-icon-search', function (event) {
  588. event.stopPropagation(), $in.val() && $.previewImage(encodeURI($in.val()));
  589. }).on('click', 'i.layui-icon-close', function (event) {
  590. event.stopPropagation(), $bt.attr('style', ''), $in.val('');
  591. }).find('[data-file]').data('input', this).attr({
  592. 'data-path': $in.data('path') || '',
  593. 'data-size': $in.data('size') || 0,
  594. 'data-type': $in.data('type') || 'gif,png,jpg,jpeg',
  595. 'data-max-width': $in.data('max-width') || 0,
  596. 'data-max-height': $in.data('max-height') || 0,
  597. 'data-cut-width': $in.data('cut-width') || 0,
  598. 'data-cut-height': $in.data('cut-height') || 0,
  599. });
  600. });
  601. };
  602. /*! 上传多张图片 */
  603. $.fn.uploadMultipleImage = function () {
  604. return this.each(function () {
  605. if (this.dataset.inited) return; else this.dataset.inited = 'true';
  606. var $bt = $('<div class="uploadimage"><span><a data-file="mul" class="layui-icon layui-icon-upload-drag"></a></span><span data-file="images"></span></div>');
  607. var ims = this.value ? this.value.split('|') : [], $in = $(this).after($bt);
  608. $bt.find('[data-file]').attr({
  609. 'data-path': $in.data('path') || '', 'data-size': $in.data('size') || 0, 'data-type': $in.data('type') || 'gif,png,jpg,jpeg', 'data-max-width': $in.data('max-width') || 0, 'data-max-height': $in.data('max-height') || 0, 'data-cut-width': $in.data('cut-width') || 0, 'data-cut-height': $in.data('cut-height') || 0,
  610. }).on('push', function (evt, src) {
  611. ims.push(src), $in.val(ims.join('|')), showImageContainer([src]);
  612. }) && (ims.length > 0 && showImageContainer(ims));
  613. function showImageContainer(srcs) {
  614. $(srcs).each(function (idx, src, $img) {
  615. $img = $('<div class="uploadimage uploadimagemtl"><div><a class="layui-icon">&#xe603;</a><a class="layui-icon">&#x1006;</a><a class="layui-icon">&#xe602;</a></div></div>');
  616. $img.attr('data-tips-image', encodeURI(src)).css('backgroundImage', 'url(' + encodeURI(src) + ')').on('click', 'a', function (event, index, prevs, $item) {
  617. event.stopPropagation(), $item = $(this).parent().parent(), index = $(this).index();
  618. if (index === 2 && $item.index() !== $bt.prevAll('div.uploadimage').length) $item.next().after($item); else if (index === 0 && $item.index() > 1) $item.prev().before($item); else if (index === 1) $item.remove();
  619. ims = [], $bt.prevAll('.uploadimage').map(function () {
  620. ims.push($(this).attr('data-tips-image'));
  621. });
  622. ims.reverse(), $in.val(ims.join('|'));
  623. }), $bt.before($img);
  624. /*$img.on('click', function (event) {
  625. // console.log($(this).attr('data-tips-image'))
  626. var url = $(this).attr('data-tips-image')
  627. console.log(url.substring(url.length - 3,url.length))
  628. if(url.substring(url.length - 3,url.length) == 'mp4') {
  629. console.log('视频')
  630. } else {
  631. console.log('tupain')
  632. }
  633. })*/
  634. });
  635. }
  636. });
  637. };
  638. /*! 标签输入插件 */
  639. $.fn.initTagInput = function () {
  640. return this.each(function () {
  641. var $this = $(this), tags = this.value ? this.value.split(',') : [];
  642. var $text = $('<textarea class="layui-input layui-input-inline layui-tag-input"></textarea>');
  643. var $tags = $('<div class="layui-tags"></div>').append($text);
  644. $this.parent().append($tags), $text.off('keydown blur'), (tags.length > 0 && showTags(tags));
  645. $text.on('blur keydown', function (event, value) {
  646. if (event.keyCode === 13 || event.type === 'blur') {
  647. event.preventDefault(), (value = $text.val().replace(/^\s*|\s*$/g, ''));
  648. if (tags.indexOf($(this).val()) > -1) return layer.msg('该标签已经存在!');
  649. if (value.length > 0) tags.push(value), $this.val(tags.join(',')), showTags([value]), this.focus(), $text.val('');
  650. }
  651. });
  652. function showTags(tagsArr) {
  653. $(tagsArr).each(function (idx, text, elem) {
  654. elem = $('<div class="layui-tag"></div>').html(text + '<i class="layui-icon">&#x1006;</i>');
  655. elem.on('click', 'i', function (tagText, tagIdx) {
  656. tagText = $(this).parent().text(), tagIdx = tags.indexOf(tagText);
  657. tags.splice(tagIdx, 1), $(this).parent().remove(), $this.val(tags.join(','));
  658. }), $tags.append(elem, $text);
  659. });
  660. }
  661. });
  662. };
  663. /*! 文本框插入内容 */
  664. $.fn.insertAtCursor = function (value) {
  665. return this.each(function () {
  666. this.focus();
  667. if (document.selection) {
  668. var selection = document.selection.createRange();
  669. (selection.text = value), selection.select(), selection.unselect();
  670. } else if (this.selectionStart || this.selectionStart === 0) {
  671. var spos = this.selectionStart, apos = this.selectionEnd || spos;
  672. this.value = this.value.substring(0, spos) + value + this.value.substring(apos);
  673. this.selectionEnd = this.selectionStart = spos + value.length;
  674. } else {
  675. this.value += value;
  676. }
  677. this.focus();
  678. });
  679. };
  680. /*! 组件 layui.table 封装 */
  681. $.fn.layTable = function (params) {
  682. return this.each(function () {
  683. $.layTable.create(this, params);
  684. });
  685. };
  686. $.layTable = new function () {
  687. this.render = function (tabldId) {
  688. return this.reload(tabldId, true);
  689. }, this.reload = function (tabldId, force) {
  690. return typeof tabldId === 'string' ? $('#' + tabldId).trigger(force ? 'render' : 'reload') : $.form.reload();
  691. }, this.create = function (table, params) {
  692. // 动态初始化表格
  693. table.id = table.id || 't' + Math.random().toString().replace('.', '');
  694. var $table = $(table).attr('lay-filter', table.dataset.id = table.getAttribute('lay-filter') || table.id);
  695. // 插件初始化参数
  696. var option = params || {}, data = option.where || {}, sort = option.initSort || option.sort || {};
  697. option.id = table.id, option.elem = table, option.url = params.url || table.dataset.url || location.href;
  698. option.limit = params.limit || 20, option.loading = params.loading !== false, option.autoSort = params.autoSort === true;
  699. option.page = params.page !== false ? (params.page || true) : false, option.cols = params.cols || [[]], option.success = params.done || '';
  700. // 初始化不显示头部
  701. var cls = ['.layui-table-header', '.layui-table-fixed', '.layui-table-body', '.layui-table-page'];
  702. option.css = (option.css || '') + cls.join('{opacity:0}') + '{opacity:0}';
  703. // 默认动态设置页数, 动态设置最大高度
  704. if (option.page === true) option.page = {curr: layui.sessionData('pages')[option.id] || 1};
  705. if (option.height === 'full') if ($table.parents('.iframe-pagination').size()) {
  706. $table.parents('.iframe-pagination').addClass('not-footer');
  707. option.height = $(window).height() - $table.removeClass('layui-hide').offset().top - 20;
  708. } else {
  709. option.height = $(window).height() - $table.removeClass('layui-hide').offset().top - 35;
  710. }
  711. // 动态计算最大页数
  712. option.done = function (res, curr, count) {
  713. layui.sessionData('pages', {key: table.id, value: this.page.curr || 1});
  714. typeof option.success === 'function' && option.success.call(this, res, curr, count);
  715. $.form.reInit($table.next()).find('[data-load][data-time!="false"],[data-action][data-time!="false"],[data-queue],[data-iframe]').not('[data-table-id]').attr('data-table-id', table.id);
  716. (option.loading = this.loading = true) && $table.data('next', this).next().find(cls.join(',')).animate({opacity: 1});
  717. }, option.parseData = function (res) {
  718. if (typeof params.filter === 'function') {
  719. res.data = params.filter(res.data, res);
  720. }
  721. if (!this.page || !this.page.curr) return res;
  722. var curp = this.page.curr, maxp = Math.ceil(res.count / option.limit);
  723. if (curp > maxp && maxp > 1) $table.trigger('reload', {page: {curr: maxp}});
  724. return res;
  725. };
  726. // 关联搜索表单
  727. var sform, search = params.search || table.dataset.targetSearch;
  728. if (search) (sform = $body.find(search)).map(function () {
  729. $(this).attr('data-table-id', table.id);
  730. });
  731. // 关联绑定选择项
  732. var checked = params.checked || table.dataset.targetChecked;
  733. if (checked) $body.find(checked).map(function () {
  734. $(this).attr('data-table-id', table.id);
  735. });
  736. // 实例并绑定事件
  737. $table.data('this', layui.table.render(bindData(option)));
  738. $table.bind('reload render reloadData', function (evt, opts) {
  739. data = $.extend({}, data, (opts || {}).where || {});
  740. opts = bindData($.extend({}, opts || {}, {loading: true}));
  741. if (evt.type.indexOf('reload') > -1) {
  742. layui.table.reloadData(table.id, opts);
  743. } else {
  744. layui.table.render(table.id, opts);
  745. }
  746. }).bind('row sort tool edit radio toolbar checkbox rowDouble', function (evt, call) {
  747. layui.table.on(evt.type + '(' + table.dataset.id + ')', call)
  748. }).bind('setFullHeight', function () {
  749. $table.trigger('render', {height: $(window).height() - $table.next().offset().top - 35})
  750. }).trigger('sort', function (rets) {
  751. (sort = rets), $table.trigger('reload')
  752. }).trigger('rowDouble', function (event) {
  753. $(event.tr[0]).find('[data-event-dbclick]').map(function () {
  754. $(this).trigger(this.dataset.eventDbclick || 'click', event);
  755. });
  756. });
  757. return $table;
  758. // 生成初始化参数
  759. function bindData(options) {
  760. data['output'] = 'layui.table';
  761. if (sort.field && sort.type) {
  762. data['_order_'] = sort.type, data['_field_'] = sort.field;
  763. options.initSort = {type: sort.type.split(',')[0].split(' ')[0], field: sort.field.split(',')[0].split(' ')[0]};
  764. if (sform) $(sform).find('[data-form-export]').attr({'data-sort-type': sort.type, 'data-sort-field': sort.field});
  765. }
  766. if (options.page === false) options.limit = '';
  767. return (options['where'] = data), options;
  768. }
  769. };
  770. };
  771. /*!格式化文件大小 */
  772. $.formatFileSize = function (size, fixed, units) {
  773. var unit;
  774. units = units || ['B', 'K', 'M', 'G', 'TB'];
  775. while ((unit = units.shift()) && size > 1024) size = size / 1024;
  776. return (unit === 'B' ? size : size.toFixed(fixed === undefined ? 2 : fixed)) + unit;
  777. }
  778. /*! 弹出图片层 */
  779. $.previewImage = function (src, area) {
  780. var img = new Image(), defer = $.Deferred(), loaded = $.msg.loading();
  781. img.style.background = '#FFF', img.referrerPolicy = 'no-referrer';
  782. img.style.height = 'auto', img.style.width = area || '100%', img.style.display = 'none';
  783. return document.body.appendChild(img), img.onerror = function () {
  784. $.msg.close(loaded), defer.reject();
  785. }, img.src = src, img.onload = function () {
  786. layer.open({
  787. type: 1, title: false, shadeClose: true, content: $(img), success: function ($elem, idx) {
  788. $.msg.close(loaded), defer.notify($elem, idx);
  789. }, area: area || '480px', skin: 'layui-layer-nobg', closeBtn: 1, end: function () {
  790. document.body.removeChild(img), defer.resolve()
  791. }
  792. });
  793. }, defer.promise();
  794. };
  795. /*! 以手机模式显示内容 */
  796. $.previewPhonePage = function (href, title) {
  797. var template = '<div class="mobile-preview"><div class="mobile-header">{{d.title}}</div><div class="mobile-body"><iframe src="{{d.url}}"></iframe></div></div>';
  798. layer.style(layer.open({type: true, resize: false, scrollbar: false, area: ['320px', '600px'], title: false, closeBtn: true, shadeClose: false, skin: 'layui-layer-nobg', content: laytpl(template).render({title: title || '公众号', url: href})}), {boxShadow: 'none'});
  799. };
  800. /*! 显示任务进度消息 */
  801. $.loadQueue = function (code, doScript, element) {
  802. var doAjax = true, doReload = false, template = '<div class="padding-30 padding-bottom-0" data-queue-load="{{d.code}}"><div class="layui-elip notselect nowrap" data-message-title><b class="color-desc">...</b></div><div class="margin-top-15 layui-progress layui-progress-big" lay-showPercent="yes"><div class="layui-progress-bar transition" lay-percent="0.00%"></div></div>' + '<div class="margin-top-15"><code class="layui-textarea layui-bg-black border-0" style="resize:none;overflow:hidden;height:190px"></code></div></div>';
  803. layer.open({
  804. type: 1, title: false, area: ['560px', '315px'], anim: 2, shadeClose: false, end: function () {
  805. doAjax = doReload && doScript && $.layTable.reload(((element || {}).dataset || {}).tableId || true), false;
  806. }, content: laytpl(template).render({code: code}), success: function ($elem) {
  807. new function () {
  808. var that = this;
  809. this.$box = $elem.find('[data-queue-load=' + code + ']');
  810. if (doAjax === false || this.$box.length < 1) return false;
  811. this.$coder = this.$box.find('code'), this.$name = this.$box.find('[data-message-title]');
  812. this.$percent = this.$box.find('.layui-progress div'), this.SetCache = function (code, index, value) {
  813. var ckey = code + '_' + index, ctype = 'admin-queue-script';
  814. return value !== undefined ? layui.data(ctype, {key: ckey, value: value}) : layui.data(ctype)[ckey] || 0;
  815. }, this.SetState = function (status, message) {
  816. if (message.indexOf('javascript:') === -1) if (status === 1) {
  817. that.$name.html('<b class="color-text">' + message + '</b>').addClass('text-center');
  818. that.$percent.addClass('layui-bg-blue').removeClass('layui-bg-green layui-bg-red');
  819. } else if (status === 2) {
  820. if (message.indexOf('>>>') > -1) {
  821. that.$name.html('<b class="color-blue">' + message + '</b>').addClass('text-center');
  822. } else {
  823. that.$name.html('<b class="color-blue">正在处理:</b>' + message).removeClass('text-center');
  824. }
  825. that.$percent.addClass('layui-bg-blue').removeClass('layui-bg-green layui-bg-red');
  826. } else if (status === 3) {
  827. doReload = true;
  828. that.$name.html('<b class="color-green">' + message + '</b>').addClass('text-center');
  829. that.$percent.addClass('layui-bg-green').removeClass('layui-bg-blue layui-bg-red');
  830. } else if (status === 4) {
  831. that.$name.html('<b class="color-red">' + message + '</b>').addClass('text-center');
  832. that.$percent.addClass('layui-bg-red').removeClass('layui-bg-blue layui-bg-green');
  833. }
  834. }, (this.LoadProgress = function () {
  835. if (doAjax === false || that.$box.length < 1) return false;
  836. $.form.load(tapiRoot + '/api.queue/progress', {code: code}, 'post', function (ret) {
  837. if (ret.code) {
  838. var lines = [];
  839. for (var idx in ret.data.history) {
  840. var line = ret.data.history[idx], percent = '[ ' + line.progress + '% ] ';
  841. if (line.message.indexOf('javascript:') === -1) {
  842. lines.push(line.message.indexOf('>>>') > -1 ? line.message : percent + line.message);
  843. } else if (!that.SetCache(code, idx) && doScript !== false) {
  844. that.SetCache(code, idx, 1), $.form.goto(line.message);
  845. }
  846. }
  847. if (ret.data.status > 0) {
  848. that.SetState(parseInt(ret.data.status), ret.data.message);
  849. that.$percent.attr('lay-percent', (parseFloat(ret.data.progress || '0.00').toFixed(2)) + '%'), layui.element.render();
  850. that.$coder.html('<p class="layui-elip">' + lines.join('</p><p class="layui-elip">') + '</p>').animate({scrollTop: that.$coder[0].scrollHeight + 'px'}, 200);
  851. return parseInt(ret.data.status) === 3 || parseInt(ret.data.status) === 4 || setTimeout(that.LoadProgress, Math.floor(Math.random() * 200)), false;
  852. } else {
  853. return setTimeout(that.LoadProgress, Math.floor(Math.random() * 500) + 200), false;
  854. }
  855. }
  856. }, false);
  857. })();
  858. };
  859. }
  860. });
  861. };
  862. /*! 注册 data-search 表单搜索行为 */
  863. onEvent('submit', 'form.form-search', function () {
  864. if (this.dataset.tableId) return $('table#' + this.dataset.tableId).trigger('reload', {
  865. page: {curr: 1}, where: $(this).formToJson()
  866. });
  867. var url = $(this).attr('action').replace(/&?page=\d+/g, '');
  868. if ((this.method || 'get').toLowerCase() === 'get') {
  869. var split = url.indexOf('?') > -1 ? '&' : '?', stype = location.href.indexOf('spm=') > -1 ? '#' : '';
  870. return $.form.goto(stype + $.menu.parseUri(url + split + $(this).serialize().replace(/\+/g, ' ')));
  871. }
  872. return $.form.load(url, this, 'post');
  873. });
  874. /*! 注册 data-file 事件行为 */
  875. onEvent('click', '[data-file]', function () {
  876. this.id = this.dataset.id = this.id || (function (date) {
  877. return (date + Math.random()).replace('0.', '');
  878. })(layui.util.toDateString(Date.now(), 'yyyyMMddHHmmss-'));
  879. /*! 查找表单元素, 如果没有找到将不会自动写值 */
  880. if (!(this.$elem = $(this)).data('input') && this.$elem.data('field')) {
  881. var $input = $('input[name="' + this.$elem.data('field') + '"]:not([type=file])');
  882. this.$elem.data('input', $input.size() > 0 ? $input.get(0) : null);
  883. }
  884. // 单图或多图选择器 ( image|images )
  885. if (typeof this.dataset.file === 'string' && /^images?$/.test(this.dataset.file)) {
  886. return $.form.modal(tapiRoot + '/api.upload/image', this.dataset, '图片选择器')
  887. }
  888. // 其他文件上传处理
  889. this.dataset.inited || $(this).uploadFile(undefined, function () {
  890. $(this).trigger('upload.start');
  891. });
  892. });
  893. /*! 注册 data-load 事件行为 */
  894. onEvent('click', '[data-load]', function () {
  895. var emap = this.dataset, data = {};
  896. return applyRuleValue(this, data, function () {
  897. $.form.load(emap.load, data, 'get', onConfirm.getLoadCallable(emap.tableId), true, emap.tips, emap.time);
  898. });
  899. });
  900. /*! 注册 data-reload 事件行为 */
  901. onEvent('click', '[data-reload]', function () {
  902. $.layTable.reload(this.dataset.tableId || true);
  903. });
  904. /*! 注册 data-dbclick 事件行为 */
  905. onEvent('dblclick', '[data-dbclick]', function () {
  906. $(this).find(this.dataset.dbclick || '[data-dbclick]').trigger('click');
  907. });
  908. /*! 注册 data-check 事件行为 */
  909. onEvent('click', '[data-check-target]', function () {
  910. var target = this;
  911. $(this.dataset.checkTarget).map(function () {
  912. (this.checked = !!target.checked), $(this).trigger('change');
  913. });
  914. });
  915. /*! 表单元素失去焦点时数字 */
  916. onEvent('blur', '[data-blur-number]', function () {
  917. var emap = this.dataset, min = emap.valueMin, max = emap.valueMax;
  918. var value = parseFloat(this.value) || 0, fiexd = parseInt(emap.blurNumber || 0);
  919. if (typeof min !== 'undefined' && value < min) value = min;
  920. if (typeof max !== 'undefined' && value > max) value = max;
  921. this.value = parseFloat(value).toFixed(fiexd);
  922. });
  923. /*! 表单元素失焦时提交 */
  924. onEvent('blur', '[data-action-blur],[data-blur-action]', function () {
  925. var that = $(this), emap = this.dataset, data = {'_token_': emap.token || emap.csrf || '--'};
  926. var attrs = (emap.value || '').replace('{value}', that.val()).split(';');
  927. for (var i in attrs) data[attrs[i].split('#')[0]] = attrs[i].split('#')[1];
  928. onConfirm(emap.confirm, function () {
  929. $.form.load(emap.actionBlur || emap.blurAction, data, emap.method || 'post', function (ret) {
  930. return that.css('border', (ret && ret.code) ? '1px solid #e6e6e6' : '1px solid red') && false;
  931. }, emap.loading !== 'false', emap.loading, emap.time);
  932. });
  933. });
  934. /*! 注册 data-href 事件行为 */
  935. onEvent('click', '[data-href]', function () {
  936. if (this.dataset.href && this.dataset.href.indexOf('#') !== 0) {
  937. $.form.goto(this.dataset.href);
  938. }
  939. });
  940. /*! 注册 data-open 事件行为 */
  941. onEvent('click', '[data-open]', function () {
  942. if (this.dataset.open.match(/^https?:/)) {
  943. $.form.goto(this.dataset.open);
  944. } else {
  945. $.form.href(this.dataset.open, this);
  946. }
  947. });
  948. /*! 注册 data-action 事件行为 */
  949. onEvent('click', '[data-action]', function () {
  950. var emap = this.dataset, data = {'_token_': emap.token || emap.csrf || '--'};
  951. var load = emap.loading !== 'false', tips = typeof load === 'string' ? load : undefined;
  952. return applyRuleValue(this, data, function () {
  953. $.form.load(emap.action, data, emap.method || 'post', onConfirm.getLoadCallable(emap.tableId), load, tips, emap.time)
  954. });
  955. });
  956. /*! 注册 data-modal 事件行为 */
  957. onEvent('click', '[data-modal]', function () {
  958. var un = undefined, emap = this.dataset, data = {open_type: 'modal'};
  959. let area=null
  960. if(emap.area && typeof emap.area==='string'){
  961. area=JSON.parse(emap.area)
  962. }
  963. return applyRuleValue(this, data, function () {
  964. return $.form.modal(emap.modal, data, emap.title || this.innerText || '编辑', un, un, un, area||emap.area || emap.width || '800px', emap.offset || 'auto', emap.full !== un);
  965. })
  966. });
  967. /*! 注册 data-iframe 事件行为 */
  968. onEvent('click', '[data-iframe]', function () {
  969. var emap = this.dataset, data = {open_type: 'iframe'};
  970. var name = emap.title || this.innerText || 'IFRAME 窗口';
  971. var area = emap.area || [emap.width || '800px', emap.height || '580px'];
  972. var frame = emap.iframe + (emap.iframe.indexOf('?') > -1 ? '&' : '?') + $.param(data);
  973. return applyRuleValue(this, data, function () {
  974. $(this).attr('data-index', $.form.iframe(frame, name, area, emap.offset || 'auto', function () {
  975. typeof emap.refresh !== 'undefined' && $.layTable.reload(emap.tableId || true);
  976. }, undefined, emap.full !== undefined));
  977. })
  978. });
  979. /*! 注册 data-icon 事件行为 */
  980. onEvent('click', '[data-icon]', function () {
  981. var location = tapiRoot + '/api.plugs/icon', field = this.dataset.icon || this.dataset.field || 'icon';
  982. $.form.iframe(location + (location.indexOf('?') > -1 ? '&' : '?') + 'field=' + field, '图标选择', ['900px', '700px']);
  983. });
  984. /*! 注册 data-copy 事件行为 */
  985. onEvent('click', '[data-copy]', function () {
  986. var copy = this.dataset.copy || this.innerText;
  987. if (window.clipboardData) {
  988. window.clipboardData.setData('text', copy);
  989. $.msg.tips('已复制到剪贴板!');
  990. } else {
  991. var $input = $('<textarea readonly></textarea>');
  992. $input.css({position: 'fixed', top: '-500px'}).appendTo($body).val(copy).select();
  993. $.msg.tips(document.execCommand('Copy') ? '已复制到剪贴板!' : '请使用鼠标操作复制!') && $input.remove();
  994. }
  995. });
  996. /*! 异步任务状态监听与展示 */
  997. onEvent('click', '[data-queue]', function () {
  998. var that = this, emap = this.dataset;
  999. onConfirm(emap.confirm || false, function () {
  1000. $.form.load(emap.queue, {}, 'post', function (ret) {
  1001. if (typeof ret.data === 'string' && ret.data.indexOf('Q') === 0) {
  1002. return $.loadQueue(ret.data, true, that), false;
  1003. }
  1004. });
  1005. });
  1006. });
  1007. /*! 注册 data-tips-text 事件行为 */
  1008. onEvent('mouseenter', '[data-tips-text]', function () {
  1009. var opts = {tips: [$(this).attr('data-tips-type') || 3, '#78BA32'], time: 0};
  1010. var layidx = layer.tips($(this).attr('data-tips-text') || this.innerText, this, opts);
  1011. $(this).off('mouseleave').on('mouseleave', function () {
  1012. setTimeout("layer.close('" + layidx + "')", 100);
  1013. });
  1014. });
  1015. /*! 注册 data-tips-hover 事件行为 */
  1016. onEvent('mouseenter', '[data-tips-image][data-tips-hover]', function () {
  1017. var img = new Image(), ele = $(this);
  1018. if ((img.src = this.dataset.tipsImage || this.dataset.lazySrc || this.src)) {
  1019. img.layopt = {time: 0, skin: 'layui-layer-image', anim: 5, isOutAnim: false, scrollbar: false};
  1020. img.referrerPolicy = 'no-referrer', img.style.maxWidth = '260px', img.style.maxHeight = '260px';
  1021. ele.data('layidx', layer.tips(img.outerHTML, this, img.layopt)).off('mouseleave').on('mouseleave', function () {
  1022. layer.close(ele.data('layidx'));
  1023. });
  1024. }
  1025. });
  1026. /*! 注册 data-tips-image 事件行为 */
  1027. onEvent('click', '[data-tips-image]', function (event) {
  1028. var url = $(this).attr('data-tips-image')
  1029. if(url.substring(url.length - 3,url.length) == 'mp4') {
  1030. console.log('视频')
  1031. var loadstr = '<video width="100%" height="100%" controls="controls" autobuffer="autobuffer" autoplay="autoplay" loop="loop"><source src="' + url + '" type="video/mp4"></source></video>'
  1032. layer.open({
  1033. type: 1,
  1034. area: ['800px', '600px'],
  1035. title: '播放视频',
  1036. content: loadstr,
  1037. });
  1038. } else {
  1039. (event.items = [], event.$imgs = $(this).parent().find('[data-tips-image]')).map(function () {
  1040. event.items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src});
  1041. }) && layer.photos({
  1042. anim: 5, closeBtn: 1, photos: {start: event.$imgs.index(this), data: event.items}, tab: function (pic, $ele) {
  1043. $ele.find('img').attr('referrerpolicy', 'no-referrer');
  1044. $ele.find('.layui-layer-close').css({top: '20px', right: '20px', position: 'fixed'});
  1045. }
  1046. });
  1047. }
  1048. /*(event.items = [], event.$imgs = $(this).parent().find('[data-tips-image]')).map(function () {
  1049. event.items.push({src: this.dataset.tipsImage || this.dataset.lazySrc || this.src});
  1050. }) && layer.photos({
  1051. anim: 5, closeBtn: 1, photos: {start: event.$imgs.index(this), data: event.items}, tab: function (pic, $ele) {
  1052. console.log('土拍你')
  1053. /!*$ele.find('img').attr('referrerpolicy', 'no-referrer');
  1054. $ele.find('.layui-layer-close').css({top: '20px', right: '20px', position: 'fixed'});*!/
  1055. }
  1056. });*/
  1057. });
  1058. /*! 注册 data-phone-view 事件行为 */
  1059. onEvent('click', '[data-phone-view]', function () {
  1060. $.previewPhonePage(this.dataset.phoneView || this.href);
  1061. });
  1062. /*! 表单编辑返回操作 */
  1063. onEvent('click', '[data-history-back]', function () {
  1064. $.msg.confirm(this.dataset.historyBack || '确定要返回吗?', function () {
  1065. history.back();
  1066. })
  1067. });
  1068. /*! 图片加载异常处理 */
  1069. // document.addEventListener('error', function (event) {
  1070. // if (event.target.nodeName !== 'IMG') return;
  1071. // event.target.src = baseRoot + 'theme/img/404_icon.png';
  1072. // }, true);
  1073. /*! 系统菜单表单页面初始化 */
  1074. $.menu.listen(), $.form.reInit($body);
  1075. });