admin.js 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176
  1. ;(function () {
  2. //全局ajax处理
  3. $.ajaxSetup({
  4. complete: function (jqXHR) {
  5. },
  6. data: {},
  7. error: function (jqXHR, textStatus, errorThrown) {
  8. //请求失败处理
  9. }
  10. });
  11. if ($.browser && $.browser.msie) {
  12. //ie 都不缓存
  13. $.ajaxSetup({
  14. cache: false
  15. });
  16. }
  17. //不支持placeholder浏览器下对placeholder进行处理
  18. if (document.createElement('input').placeholder !== '') {
  19. $('[placeholder]').focus(function () {
  20. var input = $(this);
  21. if (input.val() == input.attr('placeholder')) {
  22. input.val('');
  23. input.removeClass('placeholder');
  24. }
  25. }).blur(function () {
  26. var input = $(this);
  27. if (input.val() == '' || input.val() == input.attr('placeholder')) {
  28. input.addClass('placeholder');
  29. input.val(input.attr('placeholder'));
  30. }
  31. }).blur().parents('form').submit(function () {
  32. $(this).find('[placeholder]').each(function () {
  33. var input = $(this);
  34. if (input.val() == input.attr('placeholder')) {
  35. input.val('');
  36. }
  37. });
  38. });
  39. }
  40. // 所有加了dialog类名的a链接,自动弹出它的href
  41. if ($('a.js-dialog').length) {
  42. Wind.css('artDialog');
  43. Wind.use('artDialog', 'iframeTools', function () {
  44. $('.js-dialog').on('click', function (e) {
  45. e.preventDefault();
  46. var $this = $(this);
  47. art.dialog.open($(this).prop('href'), {
  48. close: function () {
  49. $this.focus(); // 关闭时让触发弹窗的元素获取焦点
  50. return true;
  51. },
  52. title: $this.prop('title')
  53. });
  54. }).attr('role', 'button');
  55. });
  56. }
  57. // 所有的ajax form提交,由于大多业务逻辑都是一样的,故统一处理
  58. var ajaxForm_list = $('form.js-ajax-form');
  59. if (ajaxForm_list.length) {
  60. Wind.css('artDialog');
  61. Wind.use('ajaxForm', 'artDialog', 'noty', 'validate', function () {
  62. var $btn;
  63. $('button.js-ajax-submit').on('click', function (e) {
  64. var btn = $(this), form = btn.parents('form.js-ajax-form');
  65. $btn = btn;
  66. if (btn.data("loading")) {
  67. return;
  68. }
  69. //批量操作 判断选项
  70. if (btn.data('subcheck')) {
  71. btn.parent().find('span').remove();
  72. if (form.find('input.js-check:checked').length) {
  73. btn.data('subcheck', false);
  74. } else {
  75. $('<span class="tips_error">请至少选择一项</span>').appendTo(btn.parent()).fadeIn('fast');
  76. return false;
  77. }
  78. }
  79. var msg = btn.data('msg');
  80. if (msg) {
  81. art.dialog({
  82. id: 'warning',
  83. icon: 'warning',
  84. content: btn.data('msg'),
  85. cancelVal: '关闭',
  86. cancel: function () {
  87. //btn.data('subcheck', false);
  88. //btn.click();
  89. },
  90. ok: function () {
  91. btn.data('msg', false);
  92. btn.click();
  93. }
  94. });
  95. return false;
  96. }
  97. //ie处理placeholder提交问题
  98. if ($.browser && $.browser.msie) {
  99. form.find('[placeholder]').each(function () {
  100. var input = $(this);
  101. if (input.val() == input.attr('placeholder')) {
  102. input.val('');
  103. }
  104. });
  105. }
  106. });
  107. ajaxForm_list.each(function () {
  108. $(this).validate({
  109. //是否在获取焦点时验证
  110. //onfocusout : false,
  111. //是否在敲击键盘时验证
  112. //onkeyup : false,
  113. //当鼠标点击时验证
  114. //onclick : false,
  115. //给未通过验证的元素加效果,闪烁等
  116. highlight: function (element, errorClass, validClass) {
  117. if (element.type === "radio") {
  118. this.findByName(element.name).addClass(errorClass).removeClass(validClass);
  119. } else {
  120. var $element = $(element);
  121. $element.addClass(errorClass).removeClass(validClass);
  122. $element.parent().addClass("has-error");//bootstrap3表单
  123. $element.parents('.control-group').addClass("error");//bootstrap2表单
  124. }
  125. },
  126. unhighlight: function (element, errorClass, validClass) {
  127. if (element.type === "radio") {
  128. this.findByName(element.name).removeClass(errorClass).addClass(validClass);
  129. } else {
  130. var $element = $(element);
  131. $element.removeClass(errorClass).addClass(validClass);
  132. $element.parent().removeClass("has-error");//bootstrap3表单
  133. $element.parents('.control-group').removeClass("error");//bootstrap2表单
  134. }
  135. },
  136. showErrors: function (errorMap, errorArr) {
  137. var i, elements, error;
  138. for (i = 0; this.errorList[i]; i++) {
  139. error = this.errorList[i];
  140. if (this.settings.highlight) {
  141. this.settings.highlight.call(this, error.element, this.settings.errorClass, this.settings.validClass);
  142. }
  143. //this.showLabel( error.element, error.message );
  144. }
  145. if (this.errorList.length) {
  146. //this.toShow = this.toShow.add( this.containers );
  147. }
  148. if (this.settings.success) {
  149. for (i = 0; this.successList[i]; i++) {
  150. //this.showLabel( this.successList[ i ] );
  151. }
  152. }
  153. if (this.settings.unhighlight) {
  154. for (i = 0, elements = this.validElements(); elements[i]; i++) {
  155. this.settings.unhighlight.call(this, elements[i], this.settings.errorClass, this.settings.validClass);
  156. }
  157. }
  158. this.toHide = this.toHide.not(this.toShow);
  159. this.hideErrors();
  160. this.addWrapper(this.toShow).show();
  161. },
  162. submitHandler: function (form) {
  163. var $form = $(form);
  164. $form.ajaxSubmit({
  165. url: $btn.data('action') ? $btn.data('action') : $form.attr('action'), //按钮上是否自定义提交地址(多按钮情况)
  166. dataType: 'json',
  167. beforeSubmit: function (arr, $form, options) {
  168. $btn.data("loading", true);
  169. var text = $btn.text();
  170. //按钮文案、状态修改
  171. $btn.text(text + '...').prop('disabled', true).addClass('disabled');
  172. },
  173. success: function (data, statusText, xhr, $form) {
  174. function _refresh() {
  175. if (data.url) {
  176. //返回带跳转地址
  177. window.location.href = data.url;
  178. } else {
  179. if (data.code == 1) {
  180. //刷新当前页
  181. reloadPage(window);
  182. }
  183. }
  184. }
  185. var text = $btn.text();
  186. //按钮文案、状态修改
  187. $btn.removeClass('disabled').prop('disabled', false).text(text.replace('...', '')).parent().find('span').remove();
  188. if (data.code == 1) {
  189. if ($btn.data('success')) {
  190. var successCallback = $btn.data('success');
  191. window[successCallback](data, statusText, xhr, $form);
  192. return;
  193. }
  194. noty({
  195. text: data.msg,
  196. type: 'success',
  197. layout: 'topCenter',
  198. modal: true,
  199. // animation: {
  200. // open: 'animated bounceInDown', // Animate.css class names
  201. // close: 'animated bounceOutUp', // Animate.css class names
  202. // },
  203. timeout: 800,
  204. callback: {
  205. afterClose: function () {
  206. if ($btn.data('refresh') == undefined || $btn.data('refresh')) {
  207. if ($btn.data('success_refresh')) {
  208. var successRefreshCallback = $btn.data('success_refresh');
  209. window[successRefreshCallback](data, statusText, xhr, $form);
  210. return;
  211. } else {
  212. _refresh();
  213. }
  214. }
  215. }
  216. }
  217. }).show();
  218. $(window).focus();
  219. } else if (data.code == 0) {
  220. var $verify_img = $form.find(".verify_img");
  221. if ($verify_img.length) {
  222. $verify_img.attr("src", $verify_img.attr("src") + "&refresh=" + Math.random());
  223. }
  224. var $verify_input = $form.find("[name='verify']");
  225. $verify_input.val("");
  226. //$('<span class="tips_error">' + data.msg + '</span>').appendTo($btn.parent()).fadeIn('fast');
  227. $btn.removeProp('disabled').removeClass('disabled');
  228. noty({
  229. text: data.msg,
  230. type: 'error',
  231. layout: 'topCenter',
  232. modal: true,
  233. // animation: {
  234. // open: 'animated bounceInDown', // Animate.css class names
  235. // close: 'animated bounceOutUp', // Animate.css class names
  236. // },
  237. timeout: 800,
  238. callback: {
  239. afterClose: function () {
  240. _refresh();
  241. }
  242. }
  243. }).show();
  244. $(window).focus();
  245. }
  246. },
  247. error: function (xhr, e, statusText) {
  248. art.dialog({
  249. id: 'warning',
  250. icon: 'warning',
  251. content: statusText,
  252. cancelVal: '关闭',
  253. cancel: function () {
  254. reloadPage(window);
  255. },
  256. ok: function () {
  257. reloadPage(window);
  258. }
  259. });
  260. },
  261. complete: function () {
  262. $btn.data("loading", false);
  263. }
  264. });
  265. }
  266. });
  267. });
  268. });
  269. }
  270. //dialog弹窗内的关闭方法
  271. $('#js-dialog-close').on('click', function (e) {
  272. e.preventDefault();
  273. try {
  274. art.dialog.close();
  275. } catch (err) {
  276. Wind.css('artDialog');
  277. Wind.use('artDialog', 'iframeTools', function () {
  278. art.dialog.close();
  279. });
  280. }
  281. ;
  282. });
  283. //所有的删除操作,删除数据后刷新页面
  284. if ($('a.js-ajax-delete').length) {
  285. Wind.css('artDialog');
  286. Wind.use('artDialog', 'noty', function () {
  287. $('body').on('click', '.js-ajax-delete', function (e) {
  288. e.preventDefault();
  289. var $_this = this,
  290. $this = $($_this),
  291. href = $this.data('href'),
  292. refresh = $this.data('refresh'),
  293. msg = $this.data('msg');
  294. href = href ? href : $this.attr('href');
  295. art.dialog({
  296. title: false,
  297. icon: 'question',
  298. content: msg ? msg : '确定要删除吗?',
  299. follow: $_this,
  300. close: function () {
  301. $_this.focus(); //关闭时让触发弹窗的元素获取焦点
  302. return true;
  303. },
  304. okVal: "确定",
  305. ok: function () {
  306. $.getJSON(href).done(function (data) {
  307. if (data.code == '1') {
  308. noty({
  309. text: data.msg,
  310. type: 'success',
  311. layout: 'topCenter',
  312. modal: true,
  313. // animation: {
  314. // open: 'animated bounceInDown', // Animate.css class names
  315. // close: 'animated bounceOutUp', // Animate.css class names
  316. // },
  317. timeout: 800,
  318. callback: {
  319. afterClose: function () {
  320. if (refresh == undefined || refresh) {
  321. if (data.url) {
  322. //返回带跳转地址
  323. window.location.href = data.url;
  324. } else {
  325. //刷新当前页
  326. reloadPage(window);
  327. }
  328. }
  329. }
  330. }
  331. }).show();
  332. } else if (data.code == '0') {
  333. //art.dialog.alert(data.info);
  334. //alert(data.info);//暂时处理方案
  335. art.dialog({
  336. content: data.msg,
  337. icon: 'warning',
  338. ok: function () {
  339. this.title(data.msg);
  340. return true;
  341. }
  342. });
  343. }
  344. });
  345. },
  346. cancelVal: '关闭',
  347. cancel: true
  348. });
  349. });
  350. });
  351. }
  352. if ($('a.js-ajax-dialog-btn').length) {
  353. Wind.use('artDialog', 'noty', function () {
  354. $('.js-ajax-dialog-btn').on('click', function (e) {
  355. e.preventDefault();
  356. var $_this = this,
  357. $this = $($_this),
  358. href = $this.data('href'),
  359. refresh = $this.data('refresh'),
  360. msg = $this.data('msg');
  361. href = href ? href : $this.attr('href');
  362. if (!msg) {
  363. msg = "您确定要进行此操作吗?";
  364. }
  365. art.dialog({
  366. title: false,
  367. icon: 'question',
  368. content: msg,
  369. follow: $_this,
  370. close: function () {
  371. $_this.focus(); //关闭时让触发弹窗的元素获取焦点
  372. return true;
  373. },
  374. ok: function () {
  375. $.ajax({
  376. url: href,
  377. type: 'post',
  378. success: function (data) {
  379. if (data.code == 1) {
  380. noty({
  381. text: data.msg,
  382. type: 'success',
  383. layout: 'topCenter',
  384. modal: true,
  385. // animation: {
  386. // open: 'animated bounceInDown', // Animate.css class names
  387. // close: 'animated bounceOutUp', // Animate.css class names
  388. // },
  389. timeout: 800,
  390. callback: {
  391. afterClose: function () {
  392. if (refresh == undefined || refresh) {
  393. if (data.url) {
  394. //返回带跳转地址
  395. window.location.href = data.url;
  396. } else {
  397. //刷新当前页
  398. reloadPage(window);
  399. }
  400. }
  401. }
  402. }
  403. }).show();
  404. } else if (data.code == 0) {
  405. //art.dialog.alert(data.info);
  406. art.dialog({
  407. content: data.msg,
  408. icon: 'warning',
  409. ok: function () {
  410. this.title(data.msg);
  411. return true;
  412. }
  413. });
  414. }
  415. }
  416. })
  417. },
  418. cancelVal: '关闭',
  419. cancel: true
  420. });
  421. });
  422. });
  423. }
  424. if ($('a.js-ajax-btn').length) {
  425. Wind.use('noty', function () {
  426. $('.js-ajax-btn').on('click', function (e) {
  427. e.preventDefault();
  428. var $_this = this,
  429. $this = $($_this),
  430. href = $this.data('href'),
  431. msg = $this.data('msg');
  432. refresh = $this.data('refresh');
  433. href = href ? href : $this.attr('href');
  434. refresh = refresh == undefined ? 1 : refresh;
  435. $.getJSON(href).done(function (data) {
  436. if (data.code == 1) {
  437. noty({
  438. text: data.msg,
  439. type: 'success',
  440. layout: 'center',
  441. callback: {
  442. afterClose: function () {
  443. if (data.url) {
  444. location.href = data.url;
  445. return;
  446. }
  447. if (refresh || refresh == undefined) {
  448. reloadPage(window);
  449. }
  450. }
  451. }
  452. });
  453. } else if (data.code == 0) {
  454. noty({
  455. text: data.msg,
  456. type: 'error',
  457. layout: 'center',
  458. callback: {
  459. afterClose: function () {
  460. if (data.url) {
  461. location.href = data.url;
  462. }
  463. }
  464. }
  465. });
  466. }
  467. });
  468. });
  469. });
  470. }
  471. /*复选框全选(支持多个,纵横双控全选)。
  472. *实例:版块编辑-权限相关(双控),验证机制-验证策略(单控)
  473. *说明:
  474. * "js-check"的"data-xid"对应其左侧"js-check-all"的"data-checklist";
  475. * "js-check"的"data-yid"对应其上方"js-check-all"的"data-checklist";
  476. * 全选框的"data-direction"代表其控制的全选方向(x或y);
  477. * "js-check-wrap"同一块全选操作区域的父标签class,多个调用考虑
  478. */
  479. if ($('.js-check-wrap').length) {
  480. var total_check_all = $('input.js-check-all');
  481. //遍历所有全选框
  482. $.each(total_check_all, function () {
  483. var check_all = $(this),
  484. check_items;
  485. //分组各纵横项
  486. var check_all_direction = check_all.data('direction');
  487. check_items = $('input.js-check[data-' + check_all_direction + 'id="' + check_all.data('checklist') + '"]').not(":disabled");
  488. if($('.js-check-all').is(':checked')) {
  489. check_items.prop('checked', true);
  490. }
  491. //点击全选框
  492. check_all.change(function (e) {
  493. var check_wrap = check_all.parents('.js-check-wrap'); //当前操作区域所有复选框的父标签(重用考虑)
  494. if ($(this).prop('checked')) {
  495. //全选状态
  496. check_items.prop('checked', true);
  497. //所有项都被选中
  498. if (check_wrap.find('input.js-check').length === check_wrap.find('input.js-check:checked').length) {
  499. check_wrap.find(total_check_all).prop('checked', true);
  500. }
  501. } else {
  502. //非全选状态
  503. check_items.removeProp('checked');
  504. check_wrap.find(total_check_all).removeProp('checked');
  505. //另一方向的全选框取消全选状态
  506. var direction_invert = check_all_direction === 'x' ? 'y' : 'x';
  507. check_wrap.find($('input.js-check-all[data-direction="' + direction_invert + '"]')).removeProp('checked');
  508. }
  509. });
  510. //点击非全选时判断是否全部勾选
  511. check_items.change(function () {
  512. if ($(this).prop('checked')) {
  513. if (check_items.filter(':checked').length === check_items.length) {
  514. //已选择和未选择的复选框数相等
  515. check_all.prop('checked', true);
  516. }
  517. } else {
  518. check_all.removeProp('checked');
  519. }
  520. });
  521. });
  522. }
  523. //日期选择器
  524. var dateInput = $("input.js-date");
  525. if (dateInput.length) {
  526. Wind.use('datePicker', function () {
  527. dateInput.datePicker();
  528. });
  529. }
  530. //日期+时间选择器
  531. var dateTimeInput = $("input.js-datetime");
  532. if (dateTimeInput.length) {
  533. Wind.use('datePicker', function () {
  534. dateTimeInput.datePicker({
  535. time: true
  536. });
  537. });
  538. }
  539. var yearInput = $("input.js-year");
  540. if (yearInput.length) {
  541. Wind.use('datePicker', function () {
  542. yearInput.datePicker({
  543. startView: 'decade',
  544. minView: 'decade',
  545. format: 'yyyy',
  546. autoclose: true
  547. });
  548. });
  549. }
  550. // bootstrap年选择器
  551. var bootstrapYearInput = $("input.js-bootstrap-year")
  552. if (bootstrapYearInput.length) {
  553. Wind.css('bootstrapDatetimePicker');
  554. Wind.use('bootstrapDatetimePicker', function () {
  555. bootstrapYearInput.datetimepicker({
  556. language: 'zh-CN',
  557. format: 'yyyy',
  558. minView: 'decade',
  559. startView: 'decade',
  560. todayBtn: 1,
  561. autoclose: true
  562. });
  563. });
  564. }
  565. // bootstrap日期选择器
  566. var bootstrapDateInput = $("input.js-bootstrap-date")
  567. if (bootstrapDateInput.length) {
  568. Wind.css('bootstrapDatetimePicker');
  569. Wind.use('bootstrapDatetimePicker', function () {
  570. bootstrapDateInput.datetimepicker({
  571. language: 'zh-CN',
  572. format: 'yyyy-mm-dd',
  573. minView: 'month',
  574. todayBtn: 1,
  575. autoclose: true
  576. });
  577. });
  578. }
  579. // bootstrap日期选择器日期+时间选择器
  580. var bootstrapDateTimeInput = $("input.js-bootstrap-datetime");
  581. if (bootstrapDateTimeInput.length) {
  582. Wind.css('bootstrapDatetimePicker');
  583. Wind.use('bootstrapDatetimePicker', function () {
  584. bootstrapDateTimeInput.datetimepicker({
  585. language: 'zh-CN',
  586. format: 'yyyy-mm-dd hh:ii',
  587. todayBtn: 1,
  588. autoclose: true
  589. });
  590. });
  591. }
  592. //tab
  593. var tabs_nav = $('ul.js-tabs-nav');
  594. if (tabs_nav.length) {
  595. Wind.use('tabs', function () {
  596. tabs_nav.tabs('.js-tabs-content > div');
  597. });
  598. }
  599. //地址联动
  600. var $js_address_select = $('.js-address-select');
  601. if ($js_address_select.length > 0) {
  602. $('.js-address-province-select,.js-address-city-select').change(function () {
  603. var $this = $(this);
  604. var id = $this.val();
  605. var $child_area_select;
  606. var $this_js_address_select = $this.parents('.js-address-select');
  607. if ($this.is('.js-address-province-select')) {
  608. $child_area_select = $this_js_address_select.find('.js-address-city-select');
  609. $this_js_address_select.find('.js-address-district-select').hide();
  610. } else {
  611. $child_area_select = $this_js_address_select.find('.js-address-district-select');
  612. }
  613. var empty_option = '<option class="js-address-empty-option" value="">' + $child_area_select.find('.js-address-empty-option').text() + '</option>';
  614. $child_area_select.html(empty_option);
  615. var child_area_html = $this.data('childarea' + id);
  616. if (child_area_html) {
  617. $child_area_select.show();
  618. $child_area_select.html(child_area_html);
  619. return;
  620. }
  621. $.ajax({
  622. url: $this_js_address_select.data('url'),
  623. type: 'POST',
  624. dataType: 'JSON',
  625. data: {id: id},
  626. success: function (data) {
  627. if (data.code == 1) {
  628. if (data.data.areas.length > 0) {
  629. var html = [empty_option];
  630. $.each(data.data.areas, function (i, area) {
  631. var area_html = '<option value="[id]">[name]</option>';
  632. area_html = area_html.replace('[name]', area.name);
  633. area_html = area_html.replace('[id]', area.id);
  634. html.push(area_html);
  635. });
  636. html = html.join('', html);
  637. $this.data('childarea' + id, html);
  638. $child_area_select.html(html);
  639. $child_area_select.show();
  640. } else {
  641. $child_area_select.hide();
  642. }
  643. }
  644. },
  645. error: function () {
  646. },
  647. complete: function () {
  648. }
  649. });
  650. });
  651. }
  652. //地址联动end
  653. //图片放大效果
  654. var imgtip=$('.imgtip');
  655. if(imgtip.length>0){
  656. var html_tip='<div id="enlarge_images" style="position:fixed;display:none;z-index:2;"></div>';
  657. imgtip.parents('body').append(html_tip);
  658. var ei=imgtip.parents('body').find('#enlarge_images');
  659. if(ei.length>0){
  660. imgtip.mousemove(function(event){
  661. event = event || window.event;
  662. var html = '<img src="' + this.src + '" style="max-width:500px;max-height:500px;"/>';
  663. ei.html(html);
  664. var top = document.body.scrollTop + event.clientY + 10 + "px";
  665. var left = document.body.scrollLeft + event.clientX + 10 + "px";
  666. var css={
  667. 'display':'block',
  668. 'top':top,
  669. 'left':left,
  670. }
  671. ei.css(css);
  672. })
  673. imgtip.mouseout(function(){
  674. ei.html('');
  675. var css={
  676. 'display':'none',
  677. }
  678. ei.css(css);
  679. })
  680. imgtip.click(function(){
  681. ei.html('');
  682. var css={
  683. 'display':'none',
  684. }
  685. ei.css(css);
  686. window.open( this.src );
  687. })
  688. }
  689. }
  690. })();
  691. //重新刷新页面,使用location.reload()有可能导致重新提交
  692. function reloadPage(win) {
  693. var location = win.location;
  694. location.href = location.pathname + location.search;
  695. }
  696. /**
  697. * 页面跳转
  698. * @param url 要打开的页面地址
  699. */
  700. function redirect(url) {
  701. location.href = url;
  702. }
  703. /**
  704. * 读取cookie
  705. * @param name
  706. * @returns
  707. */
  708. function getCookie(name) {
  709. var cookieValue = null;
  710. if (document.cookie && document.cookie != '') {
  711. var cookies = document.cookie.split(';');
  712. for (var i = 0; i < cookies.length; i++) {
  713. var cookie = jQuery.trim(cookies[i]);
  714. // Does this cookie string begin with the name we want?
  715. if (cookie.substring(0, name.length + 1) == (name + '=')) {
  716. cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
  717. break;
  718. }
  719. }
  720. }
  721. return cookieValue;
  722. }
  723. /**
  724. * 设置cookie
  725. */
  726. function setCookie(name, value, options) {
  727. options = options || {};
  728. if (value === null) {
  729. value = '';
  730. options.expires = -1;
  731. }
  732. var expires = '';
  733. if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
  734. var date;
  735. if (typeof options.expires == 'number') {
  736. date = new Date();
  737. date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
  738. } else {
  739. date = options.expires;
  740. }
  741. expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
  742. }
  743. var path = options.path ? '; path=' + options.path : '';
  744. var domain = options.domain ? '; domain=' + options.domain : '';
  745. var secure = options.secure ? '; secure' : '';
  746. document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
  747. }
  748. /**
  749. * 打开iframe式的窗口对话框
  750. * @param url
  751. * @param title
  752. * @param options
  753. */
  754. function openIframeDialog(url, title, options) {
  755. Wind.css('artDialog');
  756. var params = {
  757. title: title,
  758. lock: true,
  759. opacity: 0,
  760. width: "95%",
  761. height: '90%'
  762. };
  763. params = options ? $.extend(params, options) : params;
  764. Wind.use('artDialog', 'iframeTools', function () {
  765. art.dialog.open(url, params);
  766. });
  767. }
  768. /**
  769. * 打开地图对话框
  770. *
  771. * @param url
  772. * @param title
  773. * @param options
  774. * @param callback
  775. */
  776. function openMapDialog(url, title, options, callback) {
  777. Wind.css('artDialog');
  778. var params = {
  779. title: title,
  780. lock: true,
  781. opacity: 0,
  782. width: "95%",
  783. height: 400,
  784. ok: function () {
  785. if (callback) {
  786. var d = this.iframe.contentWindow;
  787. var lng = $("#lng_input", d.document).val();
  788. var lat = $("#lat_input", d.document).val();
  789. var address = {};
  790. address.address = $("#address_input", d.document).val();
  791. address.province = $("#province_input", d.document).val();
  792. address.city = $("#city_input", d.document).val();
  793. address.district = $("#district_input", d.document).val();
  794. callback.apply(this, [lng, lat, address]);
  795. }
  796. }
  797. };
  798. params = options ? $.extend(params, options) : params;
  799. Wind.use('artDialog', 'iframeTools', function () {
  800. art.dialog.open(url, params);
  801. });
  802. }
  803. /**
  804. * 打开文件上传对话框
  805. * @param dialog_title 对话框标题
  806. * @param callback 回调方法,参数有(当前dialog对象,选择的文件数组,你设置的extra_params)
  807. * @param extra_params 额外参数,object
  808. * @param multi 是否可以多选
  809. * @param filetype 文件类型,image,video,audio,file
  810. * @param app 应用名,CMF的应用名
  811. */
  812. function openUploadDialog(dialog_title, callback, extra_params, multi, filetype, app) {
  813. Wind.css('artDialog');
  814. multi = multi ? 1 : 0;
  815. filetype = filetype ? filetype : 'image';
  816. app = app ? app : GV.APP;
  817. var params = '&multi=' + multi + '&filetype=' + filetype + '&app=' + app;
  818. Wind.use("artDialog", "iframeTools", function () {
  819. art.dialog.open(GV.ROOT + 'user/Asset/webuploader?' + params, {
  820. title: dialog_title,
  821. id: new Date().getTime(),
  822. width: '600px',
  823. height: '350px',
  824. lock: true,
  825. fixed: true,
  826. background: "#CCCCCC",
  827. opacity: 0,
  828. ok: function () {
  829. if (typeof callback == 'function') {
  830. var iframewindow = this.iframe.contentWindow;
  831. var files = iframewindow.get_selected_files();
  832. //console.log("1111111");
  833. //console.log(files);
  834. if (files && files.length > 0) {
  835. callback.apply(this, [this, files, extra_params]);
  836. } else {
  837. return false;
  838. }
  839. }
  840. },
  841. cancel: true
  842. });
  843. });
  844. }
  845. /**
  846. * 单个文件上传
  847. * @param dialog_title 上传对话框标题
  848. * @param input_selector 图片容器
  849. * @param filetype 文件类型,image,video,audio,file
  850. * @param extra_params 额外参数,object
  851. * @param app 应用名,CMF的应用名
  852. */
  853. function uploadOne(dialog_title, input_selector, filetype, extra_params, app) {
  854. filetype = filetype ? filetype : 'file';
  855. openUploadDialog(dialog_title, function (dialog, files) {
  856. $(input_selector).val(files[0].filepath); //隐藏上传域赋值
  857. $(input_selector + '-preview').attr('href', files[0].preview_url); //缩略图赋值
  858. $(input_selector + '-name').val(files[0].name);
  859. $(input_selector + '-name-text').text(files[0].name);
  860. }, extra_params, 0, filetype, app);
  861. }
  862. /**
  863. * 单个图片上传
  864. * @param dialog_title 上传对话框标题
  865. * @param input_selector 图片容器
  866. * @param extra_params 额外参数,object
  867. * @param app 应用名,CMF的应用名
  868. */
  869. function uploadOneImage(dialog_title, input_selector, extra_params, app) {
  870. openUploadDialog(dialog_title, function (dialog, files) {
  871. //console.log('uploadOneImage');
  872. //console.log(files[0]);
  873. $(input_selector).val(files[0].filepath);
  874. $(input_selector + '-preview').attr('src', files[0].preview_url);
  875. $(input_selector + '-name').val(files[0].name);
  876. $(input_selector + '-name-text').text(files[0].name);
  877. }, extra_params, 0, 'image', app);
  878. }
  879. /**
  880. * 多图上传
  881. * @param dialog_title 上传对话框标题
  882. * @param container_selector 图片容器
  883. * @param item_tpl_wrapper_id 单个图片html模板容器id
  884. * @param extra_params 额外参数,object
  885. * @param app 应用名,CMF 的应用名
  886. */
  887. function uploadMultiImage(dialog_title, container_selector, item_tpl_wrapper_id, extra_params, app) {
  888. openUploadDialog(dialog_title, function (dialog, files) {
  889. var tpl = $('#' + item_tpl_wrapper_id).html();
  890. var html = '';
  891. $.each(files, function (i, item) {
  892. var itemtpl = tpl;
  893. itemtpl = itemtpl.replace(/\{id\}/g, item.id);
  894. itemtpl = itemtpl.replace(/\{url\}/g, item.url);
  895. itemtpl = itemtpl.replace(/\{preview_url\}/g, item.preview_url);
  896. itemtpl = itemtpl.replace(/\{filepath\}/g, item.filepath);
  897. itemtpl = itemtpl.replace(/\{name\}/g, item.name);
  898. html += itemtpl;
  899. });
  900. $(container_selector).append(html);
  901. }, extra_params, 1, 'image', app);
  902. }
  903. /**
  904. * 多文件上传
  905. * @param dialog_title 上传对话框标题
  906. * @param container_selector 图片容器
  907. * @param item_tpl_wrapper_id 单个图片html模板容器id
  908. * @param filetype 文件类型,image,video,audio,file
  909. * @param extra_params 额外参数,object
  910. * @param app 应用名,CMF 的应用名
  911. */
  912. function uploadMultiFile(dialog_title, container_selector, item_tpl_wrapper_id, filetype, extra_params, app) {
  913. filetype = filetype ? filetype : 'file';
  914. openUploadDialog(dialog_title, function (dialog, files) {
  915. var tpl = $('#' + item_tpl_wrapper_id).html();
  916. var html = '';
  917. $.each(files, function (i, item) {
  918. var itemtpl = tpl;
  919. itemtpl = itemtpl.replace(/\{id\}/g, item.id);
  920. itemtpl = itemtpl.replace(/\{url\}/g, item.url);
  921. itemtpl = itemtpl.replace(/\{preview_url\}/g, item.preview_url);
  922. itemtpl = itemtpl.replace(/\{filepath\}/g, item.filepath);
  923. itemtpl = itemtpl.replace(/\{name\}/g, item.name);
  924. html += itemtpl;
  925. });
  926. $(container_selector).append(html);
  927. }, extra_params, 1, filetype, app);
  928. }
  929. /**
  930. * 查看图片对话框
  931. * @param img 图片地址
  932. */
  933. function imagePreviewDialog(img) {
  934. Wind.css('layer');
  935. Wind.use("layer", function () {
  936. layer.photos({
  937. photos: {
  938. "title": "", //相册标题
  939. "id": 'image_preview', //相册id
  940. "start": 0, //初始显示的图片序号,默认0
  941. "data": [ //相册包含的图片,数组格式
  942. {
  943. "alt": "",
  944. "pid": 666, //图片id
  945. "src": img, //原图地址
  946. "thumb": img //缩略图地址
  947. }
  948. ]
  949. } //格式见API文档手册页
  950. , anim: 5, //0-6的选择,指定弹出图片动画类型,默认随机
  951. shadeClose: true,
  952. // skin: 'layui-layer-nobg',
  953. shade: [0.5, '#000000'],
  954. shadeClose: true,
  955. })
  956. });
  957. }
  958. function artdialogAlert(msg) {
  959. Wind.css('artDialog');
  960. Wind.use("artDialog", function () {
  961. art.dialog({
  962. id: new Date().getTime(),
  963. icon: "error",
  964. fixed: true,
  965. lock: true,
  966. background: "#CCCCCC",
  967. opacity: 0,
  968. content: msg,
  969. ok: function () {
  970. return true;
  971. }
  972. });
  973. });
  974. }
  975. function openIframeLayer(url, title, options) {
  976. var params = {
  977. type: 2,
  978. title: title,
  979. shadeClose: true,
  980. // skin: 'layui-layer-nobg',
  981. anim: -1,
  982. shade: [0.001, '#000000'],
  983. shadeClose: true,
  984. area: ['95%', '90%'],
  985. move: false,
  986. content: url,
  987. yes: function (index, layero) {
  988. //do something
  989. layer.close(index); //如果设定了yes回调,需进行手工关闭
  990. }
  991. };
  992. params = options ? $.extend(params, options) : params;
  993. Wind.css('layer');
  994. Wind.use("layer", function () {
  995. layer.open(params);
  996. });
  997. }
  998. /**
  999. * 获取layer居中的位置
  1000. */
  1001. var getMiddlePos=function(obj){
  1002. this.objPop=obj;
  1003. this.winW=oPos.windowWidth();
  1004. this.winH=oPos.windowHeight();
  1005. this.dScrollTop=oPos.scrollY();
  1006. this.dScrollLeft=oPos.scrollX();
  1007. this.dWidth=$('#'+this.objPop).width(),dHeight=$('#'+this.objPop).height();
  1008. this.dLeft=(this.winW/2)-(this.dWidth)/2+this.dScrollLeft;
  1009. this.dTop=(this.winH/2)-(this.dHeight/2)+this.dScrollTop;
  1010. return {"pl":this.dLeft,'pt':this.dTop};
  1011. }
  1012. /**
  1013. * 判断浏览器
  1014. */
  1015. var Sys={};
  1016. var Gift_obj={};
  1017. var Gift_numobj={};
  1018. var ua=navigator.userAgent.toLowerCase();
  1019. Sys.ie=(s=ua.match(/msie ([\d.]+)/)) ? true : false;
  1020. Sys.ie6=(s=ua.match(/msie ([0-6]\.+)/)) ? s[1] : false;
  1021. Sys.ie7=(s=ua.match(/msie ([7]\.+)/)) ? s[1] : false;
  1022. Sys.ie8=(s=ua.match(/msie ([8]\.+)/)) ? s[1] : false;
  1023. Sys.firefox=(s=ua.match(/firefox\/([\d.]+)/)) ? true : false;
  1024. Sys.chrome=(s=ua.match(/chrome\/([\d.]+)/)) ? true : false;
  1025. Sys.opera=(s=ua.match(/opera.([\d.]+)/)) ? s[1] : false;
  1026. Sys.safari=(s=ua.match(/version\/([\d.]+).*safari/)) ? s[1] : false;
  1027. Sys.ie6&&document.execCommand("BackgroundImageCache",false,true);
  1028. Sys.ispro="";//是否推广url过来
  1029. String.prototype.hasString=function(a){
  1030. if(typeof a=="object"){
  1031. for(var b=0,c=a.length;b<c;b++)
  1032. if(!this.hasString(a[b]))
  1033. return false;
  1034. return true
  1035. }else if(this.indexOf(a)!=-1)
  1036. return true
  1037. };
  1038. /**
  1039. * 计算位置
  1040. */
  1041. var dom=document.documentElement || document.body;
  1042. var oPos={
  1043. width:function(a){return parseInt(a.offsetWidth)},
  1044. height:function(a){return parseInt(a.offsetHeight)},
  1045. pageWidth:function(){return document.body.scrollWidth||document.documentElement.scrollWidth},
  1046. pageHeight:function(){return document.body.scrollHeight||document.documentElement.scrollHeight},
  1047. windowWidth:function(){var a=document.documentElement;return self.innerWidth||a&&a.clientWidth||document.body.clientWidth},
  1048. windowHeight:function(){var a=document.documentElement;return self.innerHeight||a&&a.clientHeight||document.body.clientHeight},
  1049. scrollX:function(){
  1050. var b=document.documentElement;
  1051. return self.pageXOffset||b&&b.scrollLeft||document.body.scrollLeft
  1052. }
  1053. ,scrollY:function(){
  1054. var b=document.documentElement;
  1055. return self.pageYOffset||b&&b.scrollTop||document.body.scrollTop
  1056. },
  1057. popW:function(){return Math.max(dom.clientWidth,dom.scrollWidth)},
  1058. popH:function(){return Math.max(dom.clientHeight,dom.scrollHeight)}
  1059. }
  1060. var mousePosition=function(e){
  1061. var e=e || window.event;
  1062. return {x:e.clientX+oPos.scrollX(),y:e.clientY+oPos.scrollY()}
  1063. };