frontend.js 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350
  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.use('artDialog', 'iframeTools', function () {
  43. $('.js-dialog').on('click', function (e) {
  44. e.preventDefault();
  45. var $_this = this,
  46. _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.use('ajaxForm', 'noty', 'validate', function () {
  61. //var form = btn.parents('form.js-ajax-form');
  62. var $btn;
  63. $('button.js-ajax-submit').on('click', function (e) {
  64. //e.preventDefault();
  65. /*var btn = $(this).find('button.js-ajax-submit'),
  66. form = $(this);*/
  67. var btn = $(this), form = btn.parents('form.js-ajax-form');
  68. $btn = btn;
  69. if (btn.data("loading")) {
  70. return false;
  71. }
  72. //批量操作 判断选项
  73. if (btn.data('subcheck')) {
  74. btn.parent().find('span').remove();
  75. if (form.find('input.js-check:checked').length) {
  76. var msg = btn.data('msg');
  77. if (msg) {
  78. noty({
  79. text: msg,
  80. type: 'confirm',
  81. layout: "center",
  82. timeout: false,
  83. modal: true,
  84. buttons: [
  85. {
  86. addClass: 'btn btn-primary',
  87. text: '确定',
  88. onClick: function ($noty) {
  89. $noty.close();
  90. btn.data('subcheck', false);
  91. btn.click();
  92. }
  93. },
  94. {
  95. addClass: 'btn btn-danger',
  96. text: '取消',
  97. onClick: function ($noty) {
  98. $noty.close();
  99. }
  100. }
  101. ]
  102. });
  103. } else {
  104. btn.data('subcheck', false);
  105. btn.click();
  106. }
  107. } else {
  108. noty({
  109. text: "请至少选择一项",
  110. type: 'error',
  111. layout: 'center'
  112. });
  113. }
  114. return false;
  115. }
  116. //ie处理placeholder提交问题
  117. if ($.browser && $.browser.msie) {
  118. form.find('[placeholder]').each(function () {
  119. var input = $(this);
  120. if (input.val() == input.attr('placeholder')) {
  121. input.val('');
  122. }
  123. });
  124. }
  125. });
  126. ajaxForm_list.each(function () {
  127. $(this).validate({
  128. //是否在获取焦点时验证
  129. //onfocusout : false,
  130. //是否在敲击键盘时验证
  131. //onkeyup : false,
  132. //当鼠标点击时验证
  133. //onclick : false,
  134. //给未通过验证的元素加效果,闪烁等
  135. highlight: function (element, errorClass, validClass) {
  136. if (element.type === "radio") {
  137. this.findByName(element.name).addClass(errorClass).removeClass(validClass);
  138. } else {
  139. var $element = $(element);
  140. $element.addClass(errorClass).removeClass(validClass);
  141. $element.parent().addClass("has-error");//bootstrap3表单
  142. $element.parents('.control-group').addClass("error");//bootstrap2表单
  143. }
  144. },
  145. unhighlight: function (element, errorClass, validClass) {
  146. if (element.type === "radio") {
  147. this.findByName(element.name).removeClass(errorClass).addClass(validClass);
  148. } else {
  149. var $element = $(element);
  150. $element.removeClass(errorClass).addClass(validClass);
  151. $element.parent().removeClass("has-error");//bootstrap3表单
  152. $element.parents('.control-group').removeClass("error");//bootstrap2表单
  153. }
  154. },
  155. showErrors: function (errorMap, errorArr) {
  156. var i, elements, error;
  157. for (i = 0; this.errorList[i]; i++) {
  158. error = this.errorList[i];
  159. if (this.settings.highlight) {
  160. this.settings.highlight.call(this, error.element, this.settings.errorClass, this.settings.validClass);
  161. }
  162. //this.showLabel( error.element, error.message );
  163. }
  164. if (this.errorList.length) {
  165. //this.toShow = this.toShow.add( this.containers );
  166. }
  167. if (this.settings.success) {
  168. for (i = 0; this.successList[i]; i++) {
  169. //this.showLabel( this.successList[ i ] );
  170. }
  171. }
  172. if (this.settings.unhighlight) {
  173. for (i = 0, elements = this.validElements(); elements[i]; i++) {
  174. this.settings.unhighlight.call(this, elements[i], this.settings.errorClass, this.settings.validClass);
  175. }
  176. }
  177. this.toHide = this.toHide.not(this.toShow);
  178. this.hideErrors();
  179. this.addWrapper(this.toShow).show();
  180. },
  181. submitHandler: function (form) {
  182. var $form = $(form);
  183. if(!$btn){
  184. $btn=$form.find('button.js-ajax-submit');
  185. }
  186. $form.ajaxSubmit({
  187. url: $btn && $btn.data('action') ? $btn.data('action') : $form.attr('action'), //按钮上是否自定义提交地址(多按钮情况)
  188. dataType: 'json',
  189. beforeSubmit: function (arr, $form, options) {
  190. if($btn){
  191. $btn.data("loading", true);
  192. var text = $btn.text();
  193. //按钮文案、状态修改
  194. $btn.text(text + '...').prop('disabled', true).addClass('disabled');
  195. }
  196. },
  197. success: function (data, statusText, xhr, $form) {
  198. function _refresh() {
  199. if (data.url) {
  200. if (window.parent.art) {
  201. //iframe弹出页
  202. window.parent.location.href = data.url;
  203. } else {
  204. window.location.href = data.url;
  205. }
  206. } else {
  207. if (data.code == 1) {
  208. var wait = $btn.data("wait");
  209. if (window.parent.art) {
  210. reloadPage(window.parent);
  211. } else {
  212. //刷新当前页
  213. reloadPage(window);
  214. }
  215. }
  216. }
  217. }
  218. var text = $btn.text();
  219. //按钮文案、状态修改
  220. $btn.removeClass('disabled').prop('disabled', false).text(text.replace('...', '')).parent().find('span').remove();
  221. if (data.code == 1) {
  222. if ($btn.data('success')) {
  223. var successCallback = $btn.data('success');
  224. window[successCallback](data, statusText, xhr, $form);
  225. return;
  226. }
  227. noty({
  228. text: data.msg,
  229. type: 'success',
  230. layout: 'center',
  231. modal: true,
  232. callback: {
  233. afterClose: function () {
  234. _refresh();
  235. }
  236. }
  237. });
  238. } else if (data.code == 0) {
  239. if ($btn.data('error')) {
  240. var errorCallback = $btn.data('error');
  241. window[errorCallback](data, statusText, xhr, $form);
  242. return;
  243. }
  244. var $verify_img = $form.find(".verify_img");
  245. if ($verify_img.length) {
  246. $verify_img.attr("src", $verify_img.attr("src") + "&refresh=" + Math.random());
  247. }
  248. var $verify_input = $form.find("[name='verify']");
  249. $verify_input.val("");
  250. noty({
  251. text: data.msg,
  252. type: 'error',
  253. layout: 'center',
  254. callback: {
  255. afterClose: function () {
  256. _refresh();
  257. }
  258. }
  259. });
  260. }
  261. },
  262. error: function (xhr, e, statusText) {
  263. noty({
  264. text: statusText,
  265. type: 'error',
  266. layout: 'center',
  267. callback: {
  268. // afterClose: function () {
  269. // if (window.parent.art) {
  270. // reloadPage(window.parent);
  271. // } else {
  272. // //刷新当前页
  273. // reloadPage(window);
  274. // }
  275. // }
  276. }
  277. });
  278. },
  279. complete: function () {
  280. $btn.data("loading", false);
  281. }
  282. });
  283. }
  284. });
  285. });
  286. });
  287. }
  288. //dialog弹窗内的关闭方法
  289. $('#js-dialog-close').on('click', function (e) {
  290. e.preventDefault();
  291. try {
  292. art.dialog.close();
  293. } catch (err) {
  294. Wind.use('artDialog', 'iframeTools', function () {
  295. art.dialog.close();
  296. });
  297. }
  298. ;
  299. });
  300. //所有的删除操作,删除数据后刷新页面
  301. if ($('a.js-ajax-delete').length) {
  302. Wind.use('noty', function () {
  303. $('.js-ajax-delete').on('click', function (e) {
  304. e.preventDefault();
  305. var $_this = this,
  306. $this = $($_this),
  307. href = $this.data('href'),
  308. refresh = $this.data('refresh'),
  309. msg = $this.data('msg');
  310. okBtnText = $this.data('ok-btn');
  311. cancelBtnText = $this.data('cancel-btn');
  312. href = href ? href : $this.attr('href');
  313. noty({
  314. text: msg ? msg : '确定要删除吗?',
  315. type: 'confirm',
  316. layout: "center",
  317. timeout: false,
  318. modal: true,
  319. buttons: [
  320. {
  321. addClass: 'btn btn-primary',
  322. text: okBtnText ? okBtnText : '确定',
  323. onClick: function ($noty) {
  324. $noty.close();
  325. $.getJSON(href).done(function (data) {
  326. if (data.code == 1) {
  327. if (data.url) {
  328. location.href = data.url;
  329. } else if (refresh || refresh == undefined) {
  330. reloadPage(window);
  331. }
  332. } else if (data.code == 0) {
  333. noty({
  334. text: data.msg,
  335. type: 'error',
  336. layout: 'center',
  337. callback: {
  338. afterClose: function () {
  339. if (data.url) {
  340. location.href = data.url;
  341. }
  342. }
  343. }
  344. });
  345. }
  346. });
  347. }
  348. },
  349. {
  350. addClass: 'btn btn-danger',
  351. text: cancelBtnText ? cancelBtnText : '取消',
  352. onClick: function ($noty) {
  353. $noty.close();
  354. }
  355. }
  356. ]
  357. });
  358. });
  359. });
  360. }
  361. if ($('a.js-ajax-dialog-btn').length) {
  362. Wind.use('noty', function () {
  363. $('.js-ajax-dialog-btn').on('click', function (e) {
  364. e.preventDefault();
  365. var $_this = this,
  366. $this = $($_this),
  367. href = $this.data('href'),
  368. refresh = $this.data('refresh'),
  369. msg = $this.data('msg');
  370. href = href ? href : $this.attr('href');
  371. noty({
  372. text: msg,
  373. type: 'confirm',
  374. layout: "center",
  375. timeout: false,
  376. modal: true,
  377. buttons: [
  378. {
  379. addClass: 'btn btn-primary',
  380. text: '确定',
  381. onClick: function ($noty) {
  382. $noty.close();
  383. $.getJSON(href).done(function (data) {
  384. if (data.code == 1) {
  385. if (data.url) {
  386. location.href = data.url;
  387. } else if (refresh || refresh == undefined) {
  388. reloadPage(window);
  389. }
  390. } else if (data.code == 0) {
  391. noty({
  392. text: data.msg,
  393. type: 'error',
  394. layout: 'center',
  395. callback: {
  396. afterClose: function () {
  397. if (data.url) {
  398. location.href = data.url;
  399. }
  400. }
  401. }
  402. });
  403. }
  404. });
  405. }
  406. },
  407. {
  408. addClass: 'btn btn-danger',
  409. text: '取消',
  410. onClick: function ($noty) {
  411. $noty.close();
  412. }
  413. }
  414. ]
  415. });
  416. });
  417. });
  418. }
  419. if ($('a.js-ajax-btn').length) {
  420. Wind.use('noty', function () {
  421. $('.js-ajax-btn').on('click', function (e) {
  422. e.preventDefault();
  423. var $_this = this,
  424. $this = $($_this),
  425. href = $this.data('href'),
  426. msg = $this.data('msg');
  427. refresh = $this.data('refresh');
  428. href = href ? href : $this.attr('href');
  429. refresh = refresh == undefined ? 1 : refresh;
  430. $.getJSON(href).done(function (data) {
  431. if (data.code == 1) {
  432. noty({
  433. text: data.msg,
  434. type: 'success',
  435. layout: 'center',
  436. callback: {
  437. afterClose: function () {
  438. if (data.url) {
  439. location.href = data.url;
  440. return;
  441. }
  442. if (refresh || refresh == undefined) {
  443. reloadPage(window);
  444. }
  445. }
  446. }
  447. });
  448. } else if (data.code == 0) {
  449. noty({
  450. text: data.msg,
  451. type: 'error',
  452. layout: 'center',
  453. callback: {
  454. afterClose: function () {
  455. if (data.url) {
  456. location.href = data.url;
  457. }
  458. }
  459. }
  460. });
  461. }
  462. });
  463. });
  464. });
  465. }
  466. //所有的请求刷新操作
  467. var ajax_refresh = $('a.js-ajax-refresh'),
  468. refresh_lock = false;
  469. if (ajax_refresh.length) {
  470. ajax_refresh.on('click', function (e) {
  471. e.preventDefault();
  472. if (refresh_lock) {
  473. return false;
  474. }
  475. refresh_lock = true;
  476. $.post(this.href, function (data) {
  477. refresh_lock = false;
  478. if (data.code == 1) {
  479. if (data.url) {
  480. location.href = data.url;
  481. } else {
  482. reloadPage(window);
  483. }
  484. } else if (data.code == 0) {
  485. Wind.art.dialog.alert(data.msg);
  486. }
  487. }, 'json');
  488. });
  489. }
  490. //短信验证码
  491. var $js_get_mobile_code = $('.js-get-mobile-code');
  492. if ($js_get_mobile_code.length > 0) {
  493. Wind.use('noty', function () {
  494. $js_get_mobile_code.on('click', function () {
  495. var $this = $(this);
  496. if ($this.data('loading')) return;
  497. if ($this.data('sending')) return;
  498. var $mobile_input = $($this.data('mobile-input'));
  499. var mobile = $mobile_input.val();
  500. if (mobile == '') {
  501. $mobile_input.focus();
  502. return;
  503. }
  504. var $form = $this.parents('form');
  505. var $captchaInput = $("input[name='captcha']", $form);
  506. var $captchaIdInput = $("input[name='_captcha_id']", $form);
  507. var captcha = $captchaInput.val();
  508. var captchaId = $captchaIdInput.val();
  509. if (!captcha) {
  510. $captchaInput.focus();
  511. return;
  512. }
  513. $this.data('loading', true);
  514. $this.data('sending', true);
  515. var url = $this.data('url');
  516. var init_secode_left = parseInt($this.data('init-second-left'));
  517. init_secode_left = init_secode_left > 0 ? init_secode_left : 60;
  518. var init_text = $this.text();
  519. $this.data('second-left', init_secode_left);
  520. var wait_msg = $this.data('wait-msg');
  521. var codeType = $this.data('type');
  522. $.ajax({
  523. url: url,
  524. type: 'POST',
  525. dataType: 'json',
  526. data: {username: mobile, captcha: captcha, captcha_id: captchaId, type: codeType},
  527. success: function (data) {
  528. if (data.code == 1) {
  529. noty({
  530. text: data.msg,
  531. type: 'success',
  532. layout: 'center'
  533. });
  534. $this.text(wait_msg.replace('[second]', init_secode_left));
  535. var mtimer = setInterval(function () {
  536. if (init_secode_left > 0) {
  537. init_secode_left--;
  538. $this.text(wait_msg.replace('[second]', init_secode_left));
  539. } else {
  540. clearInterval(mtimer);
  541. $this.text(init_text);
  542. $this.data('sending', false);
  543. }
  544. }, 1000);
  545. } else {
  546. $captchaInput.val('');
  547. var $verify_img = $form.find(".verify_img");
  548. if ($verify_img.length) {
  549. $verify_img.attr("src", $verify_img.attr("src") + "&refresh=" + Math.random());
  550. }
  551. noty({
  552. text: data.msg,
  553. type: 'error',
  554. layout: 'center'
  555. });
  556. $this.data('sending', false);
  557. }
  558. },
  559. error: function () {
  560. $this.data('sending', false);
  561. },
  562. complete: function () {
  563. $this.data('loading', false);
  564. }
  565. });
  566. });
  567. });
  568. }
  569. //邮件验证码
  570. var $js_get_email_code = $('.js-get-email-code');
  571. if ($js_get_email_code.length > 0) {
  572. Wind.use('noty', function () {
  573. $js_get_email_code.on('click', function () {
  574. var $this = $(this);
  575. if ($this.data('loading')) return;
  576. if ($this.data('sending')) return;
  577. var $email_input = $($this.data('email-input'));
  578. var email = $email_input.val();
  579. if (email == '') {
  580. $email_input.focus();
  581. return;
  582. }
  583. var $form = $this.parents('form');
  584. var $captchaInput = $("input[name='captcha']", $form);
  585. var $captchaIdInput = $("input[name='_captcha_id']", $form);
  586. var captcha = $captchaInput.val();
  587. var captchaId = $captchaIdInput.val();
  588. if (!captcha) {
  589. $captchaInput.focus();
  590. return;
  591. }
  592. $this.data('loading', true);
  593. $this.data('sending', true);
  594. var url = $this.data('url');
  595. var init_secode_left = parseInt($this.data('init-second-left'));
  596. init_secode_left = init_secode_left > 0 ? init_secode_left : 60;
  597. var init_text = $this.text();
  598. $this.data('second-left', init_secode_left);
  599. var wait_msg = $this.data('wait-msg');
  600. var codeType = $this.data('type');
  601. $.ajax({
  602. url: url,
  603. type: 'POST',
  604. dataType: 'json',
  605. data: {username: email, captcha: captcha, captcha_id: captchaId, type: codeType},
  606. success: function (data) {
  607. if (data.code == 1) {
  608. noty({
  609. text: data.msg,
  610. type: 'success',
  611. layout: 'center'
  612. });
  613. $this.text(wait_msg.replace('[second]', init_secode_left));
  614. var mtimer = setInterval(function () {
  615. if (init_secode_left > 0) {
  616. init_secode_left--;
  617. $this.text(wait_msg.replace('[second]', init_secode_left));
  618. } else {
  619. clearInterval(mtimer);
  620. $this.text(init_text);
  621. $this.data('sending', false);
  622. }
  623. }, 1000);
  624. } else {
  625. $captchaInput.val('');
  626. var $verify_img = $form.find(".verify_img");
  627. if ($verify_img.length) {
  628. $verify_img.attr("src", $verify_img.attr("src") + "&refresh=" + Math.random());
  629. }
  630. noty({
  631. text: data.msg,
  632. type: 'error',
  633. layout: 'center'
  634. });
  635. $this.data('sending', false);
  636. }
  637. },
  638. error: function () {
  639. $this.data('sending', false);
  640. },
  641. complete: function () {
  642. $this.data('loading', false);
  643. }
  644. });
  645. });
  646. });
  647. }
  648. /*复选框全选(支持多个,纵横双控全选)。
  649. *实例:版块编辑-权限相关(双控),验证机制-验证策略(单控)
  650. *说明:
  651. * "js-check"的"data-xid"对应其左侧"js-check-all"的"data-checklist";
  652. * "js-check"的"data-yid"对应其上方"js-check-all"的"data-checklist";
  653. * 全选框的"data-direction"代表其控制的全选方向(x或y);
  654. * "js-check-wrap"同一块全选操作区域的父标签class,多个调用考虑
  655. */
  656. if ($('.js-check-wrap').length) {
  657. var total_check_all = $('input.js-check-all');
  658. //遍历所有全选框
  659. $.each(total_check_all, function () {
  660. var check_all = $(this),
  661. check_items;
  662. //分组各纵横项
  663. var check_all_direction = check_all.data('direction');
  664. check_items = $('input.js-check[data-' + check_all_direction + 'id="' + check_all.data('checklist') + '"]').not(":disabled");
  665. //点击全选框
  666. check_all.change(function (e) {
  667. var check_wrap = check_all.parents('.js-check-wrap'); //当前操作区域所有复选框的父标签(重用考虑)
  668. if ($(this).prop('checked')) {
  669. //全选状态
  670. check_items.prop('checked', true);
  671. //所有项都被选中
  672. if (check_wrap.find('input.js-check').length === check_wrap.find('input.js-check:checked').length) {
  673. check_wrap.find(total_check_all).prop('checked', true);
  674. }
  675. } else {
  676. //非全选状态
  677. check_items.removeProp('checked');
  678. check_wrap.find(total_check_all).removeProp('checked');
  679. //另一方向的全选框取消全选状态
  680. var direction_invert = check_all_direction === 'x' ? 'y' : 'x';
  681. check_wrap.find($('input.js-check-all[data-direction="' + direction_invert + '"]')).removeProp('checked');
  682. }
  683. });
  684. //点击非全选时判断是否全部勾选
  685. check_items.change(function () {
  686. if ($(this).prop('checked')) {
  687. if (check_items.filter(':checked').length === check_items.length) {
  688. //已选择和未选择的复选框数相等
  689. check_all.prop('checked', true);
  690. }
  691. } else {
  692. check_all.removeProp('checked');
  693. }
  694. });
  695. });
  696. }
  697. //日期选择器
  698. var dateInput = $("input.js-date");
  699. if (dateInput.length) {
  700. Wind.use('datePicker', function () {
  701. dateInput.datePicker();
  702. });
  703. }
  704. //日期+时间选择器
  705. var dateTimeInput = $("input.js-datetime");
  706. if (dateTimeInput.length) {
  707. Wind.use('datePicker', function () {
  708. dateTimeInput.datePicker({
  709. time: true
  710. });
  711. });
  712. }
  713. // bootstrap年选择器
  714. var bootstrapYearInput = $("input.js-bootstrap-year")
  715. if (bootstrapYearInput.length) {
  716. Wind.css('bootstrapDatetimePicker');
  717. Wind.use('bootstrapDatetimePicker', function () {
  718. bootstrapYearInput.datetimepicker({
  719. language: 'zh-CN',
  720. format: 'yyyy',
  721. minView: 'decade',
  722. startView: 'decade',
  723. todayBtn: 1,
  724. autoclose: true
  725. });
  726. });
  727. }
  728. // bootstrap日期选择器
  729. var bootstrapDateInput = $("input.js-bootstrap-date")
  730. if (bootstrapDateInput.length) {
  731. Wind.css('bootstrapDatetimePicker');
  732. Wind.use('bootstrapDatetimePicker', function () {
  733. bootstrapDateInput.datetimepicker({
  734. language: 'zh-CN',
  735. format: 'yyyy-mm-dd',
  736. minView: 'month',
  737. todayBtn: 1,
  738. autoclose: true
  739. });
  740. });
  741. }
  742. // bootstrap日期选择器日期+时间选择器
  743. var bootstrapDateTimeInput = $("input.js-bootstrap-datetime");
  744. if (bootstrapDateTimeInput.length) {
  745. Wind.css('bootstrapDatetimePicker');
  746. Wind.use('bootstrapDatetimePicker', function () {
  747. bootstrapDateTimeInput.datetimepicker({
  748. language: 'zh-CN',
  749. format: 'yyyy-mm-dd hh:ii',
  750. todayBtn: 1,
  751. autoclose: true
  752. });
  753. });
  754. }
  755. //赞,拍等,有数量操作的按钮
  756. var $js_count_btn = $('a.js-count-btn');
  757. if ($js_count_btn.length) {
  758. Wind.use('noty', function () {
  759. $js_count_btn.on('click', function (e) {
  760. e.preventDefault();
  761. var $this = $(this),
  762. href = $this.prop('href');
  763. $.post(href, {}, function (data) {
  764. if (data.code == 1) {
  765. var $count = $this.find(".count");
  766. var count = parseInt($count.text());
  767. $count.text(count + 1);
  768. if (data.msg) {
  769. noty({
  770. text: data.msg,
  771. type: 'success',
  772. layout: 'center',
  773. callback: {
  774. afterClose: function () {
  775. if (data.url) {
  776. location.href = data.url;
  777. }
  778. }
  779. }
  780. });
  781. }
  782. } else if (data.code == 0) {
  783. noty({
  784. text: data.msg,
  785. type: 'error',
  786. layout: 'center',
  787. callback: {
  788. afterClose: function () {
  789. if (data.url) {
  790. location.href = data.url;
  791. }
  792. }
  793. }
  794. });
  795. }
  796. }, "json");
  797. });
  798. });
  799. }
  800. //地址联动
  801. var $js_address_select = $('.js-address-select');
  802. if ($js_address_select.length > 0) {
  803. $('.js-address-province-select,.js-address-city-select').change(function () {
  804. var $this = $(this);
  805. var id = $this.val();
  806. var $child_area_select;
  807. var $this_js_address_select = $this.parents('.js-address-select');
  808. if ($this.is('.js-address-province-select')) {
  809. $child_area_select = $this_js_address_select.find('.js-address-city-select');
  810. $this_js_address_select.find('.js-address-district-select').hide();
  811. } else {
  812. $child_area_select = $this_js_address_select.find('.js-address-district-select');
  813. }
  814. var empty_option = '<option class="js-address-empty-option" value="">' + $child_area_select.find('.js-address-empty-option').text() + '</option>';
  815. $child_area_select.html(empty_option);
  816. var child_area_html = $this.data('childarea' + id);
  817. if (child_area_html) {
  818. $child_area_select.show();
  819. $child_area_select.html(child_area_html);
  820. return;
  821. }
  822. $.ajax({
  823. url: $this_js_address_select.data('url'),
  824. type: 'POST',
  825. dataType: 'JSON',
  826. data: {id: id},
  827. success: function (data) {
  828. if (data.code == 1) {
  829. if (data.data.areas.length > 0) {
  830. var html = [empty_option];
  831. $.each(data.data.areas, function (i, area) {
  832. var area_html = '<option value="[id]">[name]</option>';
  833. area_html = area_html.replace('[name]', area.name);
  834. area_html = area_html.replace('[id]', area.id);
  835. html.push(area_html);
  836. });
  837. html = html.join('', html);
  838. $this.data('childarea' + id, html);
  839. $child_area_select.html(html);
  840. $child_area_select.show();
  841. } else {
  842. $child_area_select.hide();
  843. }
  844. }
  845. },
  846. error: function () {
  847. },
  848. complete: function () {
  849. }
  850. });
  851. });
  852. }
  853. //地址联动end
  854. //
  855. var $js_action_btn = $('a.js-action-btn');
  856. if ($js_action_btn.length) {
  857. Wind.use('noty', function () {
  858. $js_action_btn.on('click', function (e) {
  859. e.preventDefault();
  860. var $this = $(this),
  861. href = $this.prop('href');
  862. $.post(href, {}, function (data) {
  863. if (data.code == '1') {
  864. if (data.msg) {
  865. noty({
  866. text: data.msg,
  867. type: 'success',
  868. layout: 'center',
  869. callback: {
  870. afterClose: function () {
  871. if (data.url) {
  872. location.href = data.url;
  873. }
  874. }
  875. }
  876. });
  877. }
  878. } else if (data.code == 0) {
  879. noty({
  880. text: data.msg,
  881. type: 'error',
  882. layout: 'center',
  883. callback: {
  884. afterClose: function () {
  885. if (data.url) {
  886. location.href = data.url;
  887. }
  888. }
  889. }
  890. });
  891. }
  892. }, "json");
  893. });
  894. });
  895. }
  896. var $js_favorite_btn = $('a.js-favorite-btn');
  897. if ($js_favorite_btn.length) {
  898. Wind.use('noty', function () {
  899. $js_favorite_btn.on('click', function (e) {
  900. e.preventDefault();
  901. var $this = $(this),
  902. href = $this.prop('href'),
  903. url = $this.data("url"),
  904. id = $this.data("id"),
  905. table = $this.data('table'),
  906. title = $this.data("title"),
  907. description = $this.data("description");
  908. $.post(href, {
  909. id: id,
  910. table: table,
  911. url: url,
  912. title: title,
  913. description: description
  914. }, function (data) {
  915. if (data.code == 1) {
  916. if (data.msg) {
  917. noty({
  918. text: data.msg,
  919. type: 'success',
  920. layout: 'center',
  921. callback: {
  922. afterClose: function () {
  923. if (data.url) {
  924. location.href = data.url;
  925. }
  926. }
  927. }
  928. });
  929. }
  930. } else if (data.code == 0) {
  931. noty({
  932. text: data.msg,
  933. type: 'error',
  934. layout: 'center',
  935. callback: {
  936. afterClose: function () {
  937. if (data.url) {
  938. location.href = data.url;
  939. }
  940. }
  941. }
  942. });
  943. }
  944. }, "json");
  945. });
  946. });
  947. }
  948. })();
  949. //重新刷新页面,使用location.reload()有可能导致重新提交
  950. function reloadPage(win) {
  951. if (win) {
  952. } else {
  953. win = window;
  954. }
  955. var location = win.location;
  956. location.href = location.pathname + location.search;
  957. }
  958. //页面跳转
  959. function redirect(url) {
  960. location.href = url;
  961. }
  962. /**
  963. * 读取cookie
  964. * @param name
  965. * @returns
  966. */
  967. function getCookie(name) {
  968. var cookieValue = null;
  969. if (document.cookie && document.cookie != '') {
  970. var cookies = document.cookie.split(';');
  971. for (var i = 0; i < cookies.length; i++) {
  972. var cookie = jQuery.trim(cookies[i]);
  973. // Does this cookie string begin with the name we want?
  974. if (cookie.substring(0, name.length + 1) == (name + '=')) {
  975. cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
  976. break;
  977. }
  978. }
  979. }
  980. return cookieValue;
  981. }
  982. /**
  983. * 设置cookie
  984. */
  985. function setCookie(name, value, options) {
  986. options = options || {};
  987. if (value === null) {
  988. value = '';
  989. options.expires = -1;
  990. }
  991. var expires = '';
  992. if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
  993. var date;
  994. if (typeof options.expires == 'number') {
  995. date = new Date();
  996. date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
  997. } else {
  998. date = options.expires;
  999. }
  1000. expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
  1001. }
  1002. var path = options.path ? '; path=' + options.path : '';
  1003. var domain = options.domain ? '; domain=' + options.domain : '';
  1004. var secure = options.secure ? '; secure' : '';
  1005. document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
  1006. }
  1007. function openIframeDialog(url, title, options) {
  1008. var params = {
  1009. title: title,
  1010. lock: true,
  1011. opacity: 0,
  1012. width: "95%"
  1013. };
  1014. params = options ? $.extend(params, options) : params;
  1015. Wind.use('artDialog', 'iframeTools', function () {
  1016. art.dialog.open(url, params);
  1017. });
  1018. }
  1019. /**
  1020. * 打开地图对话框
  1021. *
  1022. * @param url
  1023. * @param title
  1024. * @param options
  1025. * @param callback
  1026. */
  1027. function openMapDialog(url, title, options, callback) {
  1028. Wind.css('artDialog');
  1029. var params = {
  1030. title: title,
  1031. lock: true,
  1032. opacity: 0,
  1033. width: "95%",
  1034. height: 400,
  1035. ok: function () {
  1036. if (callback) {
  1037. var d = this.iframe.contentWindow;
  1038. var lng = $("#lng_input", d.document).val();
  1039. var lat = $("#lat_input", d.document).val();
  1040. var address = {};
  1041. address.address = $("#address_input", d.document).val();
  1042. address.province = $("#province_input", d.document).val();
  1043. address.city = $("#city_input", d.document).val();
  1044. address.district = $("#district_input", d.document).val();
  1045. callback.apply(this, [lng, lat, address]);
  1046. }
  1047. }
  1048. };
  1049. params = options ? $.extend(params, options) : params;
  1050. Wind.use('artDialog', 'iframeTools', function () {
  1051. art.dialog.open(url, params);
  1052. });
  1053. }
  1054. /**
  1055. * 打开文件上传对话框
  1056. * @param dialog_title 对话框标题
  1057. * @param callback 回调方法,参数有(当前dialog对象,选择的文件数组,你设置的extra_params)
  1058. * @param extra_params 额外参数,object
  1059. * @param multi 是否可以多选
  1060. * @param filetype 文件类型,image,video,audio,file
  1061. * @param app 应用名,CMF的应用名
  1062. */
  1063. function openUploadDialog(dialog_title, callback, extra_params, multi, filetype, app) {
  1064. Wind.css('artDialog');
  1065. multi = multi ? 1 : 0;
  1066. filetype = filetype ? filetype : 'image';
  1067. app = app ? app : GV.APP;
  1068. var params = '&multi=' + multi + '&filetype=' + filetype + '&app=' + app;
  1069. Wind.use("artDialog", "iframeTools", function () {
  1070. art.dialog.open(GV.ROOT + 'user/Asset/webuploader?' + params, {
  1071. title: dialog_title,
  1072. id: new Date().getTime(),
  1073. width: '600px',
  1074. height: '350px',
  1075. lock: true,
  1076. fixed: true,
  1077. background: "#CCCCCC",
  1078. opacity: 0,
  1079. ok: function () {
  1080. if (typeof callback == 'function') {
  1081. var iframewindow = this.iframe.contentWindow;
  1082. var files = iframewindow.get_selected_files();
  1083. console.log(files);
  1084. if (files && files.length > 0) {
  1085. callback.apply(this, [this, files, extra_params]);
  1086. } else {
  1087. return false;
  1088. }
  1089. }
  1090. },
  1091. cancel: true
  1092. });
  1093. });
  1094. }
  1095. /**
  1096. * 单个文件上传
  1097. * @param dialog_title 上传对话框标题
  1098. * @param input_selector 图片容器
  1099. * @param filetype 文件类型,image,video,audio,file
  1100. * @param extra_params 额外参数,object
  1101. * @param app 应用名,CMF的应用名
  1102. */
  1103. function uploadOne(dialog_title, input_selector, filetype, extra_params, app) {
  1104. filetype = filetype ? filetype : 'file';
  1105. openUploadDialog(dialog_title, function (dialog, files) {
  1106. $(input_selector).val(files[0].filepath);
  1107. $(input_selector + '-preview').attr('href', files[0].preview_url);
  1108. $(input_selector + '-name').val(files[0].name);
  1109. $(input_selector + '-name-text').text(files[0].name);
  1110. }, extra_params, 0, filetype, app);
  1111. }
  1112. /**
  1113. * 单个图片上传
  1114. * @param dialog_title 上传对话框标题
  1115. * @param input_selector 图片容器
  1116. * @param extra_params 额外参数,object
  1117. * @param app 应用名,CMF的应用名
  1118. */
  1119. function uploadOneImage(dialog_title, input_selector, extra_params, app) {
  1120. openUploadDialog(dialog_title, function (dialog, files) {
  1121. $(input_selector).val(files[0].filepath);
  1122. $(input_selector + '-preview').attr('src', files[0].preview_url);
  1123. $(input_selector + '-name').val(files[0].name);
  1124. $(input_selector + '-name-text').text(files[0].name);
  1125. }, extra_params, 0, 'image', app);
  1126. }
  1127. /**
  1128. * 多图上传
  1129. * @param dialog_title 上传对话框标题
  1130. * @param container_selector 图片容器
  1131. * @param item_tpl_wrapper_id 单个图片html模板容器id
  1132. * @param extra_params 额外参数,object
  1133. * @param app 应用名,CMF 的应用名
  1134. */
  1135. function uploadMultiImage(dialog_title, container_selector, item_tpl_wrapper_id, extra_params, app) {
  1136. openUploadDialog(dialog_title, function (dialog, files) {
  1137. var tpl = $('#' + item_tpl_wrapper_id).html();
  1138. var html = '';
  1139. $.each(files, function (i, item) {
  1140. var itemtpl = tpl;
  1141. itemtpl = itemtpl.replace(/\{id\}/g, item.id);
  1142. itemtpl = itemtpl.replace(/\{url\}/g, item.url);
  1143. itemtpl = itemtpl.replace(/\{preview_url\}/g, item.preview_url);
  1144. itemtpl = itemtpl.replace(/\{filepath\}/g, item.filepath);
  1145. itemtpl = itemtpl.replace(/\{name\}/g, item.name);
  1146. html += itemtpl;
  1147. });
  1148. $(container_selector).append(html);
  1149. }, extra_params, 1, 'image', app);
  1150. }
  1151. /**
  1152. * 多文件上传
  1153. * @param dialog_title 上传对话框标题
  1154. * @param container_selector 图片容器
  1155. * @param item_tpl_wrapper_id 单个图片html模板容器id
  1156. * @param filetype 文件类型,image,video,audio,file
  1157. * @param extra_params 额外参数,object
  1158. * @param app 应用名,CMF 的应用名
  1159. */
  1160. function uploadMultiFile(dialog_title, container_selector, item_tpl_wrapper_id, filetype, extra_params, app) {
  1161. filetype = filetype ? filetype : 'file';
  1162. openUploadDialog(dialog_title, function (dialog, files) {
  1163. var tpl = $('#' + item_tpl_wrapper_id).html();
  1164. var html = '';
  1165. $.each(files, function (i, item) {
  1166. var itemtpl = tpl;
  1167. itemtpl = itemtpl.replace(/\{id\}/g, item.id);
  1168. itemtpl = itemtpl.replace(/\{url\}/g, item.url);
  1169. itemtpl = itemtpl.replace(/\{preview_url\}/g, item.preview_url);
  1170. itemtpl = itemtpl.replace(/\{filepath\}/g, item.filepath);
  1171. itemtpl = itemtpl.replace(/\{name\}/g, item.name);
  1172. html += itemtpl;
  1173. });
  1174. $(container_selector).append(html);
  1175. }, extra_params, 1, filetype, app);
  1176. }
  1177. function openIframeLayer(url, title, options) {
  1178. var params = {
  1179. type: 2,
  1180. title: title,
  1181. shadeClose: true,
  1182. // skin: 'layui-layer-nobg',
  1183. shade: [0.001, '#000000'],
  1184. shadeClose: true,
  1185. area: ['95%', '90%'],
  1186. move: false,
  1187. content: url,
  1188. yes: function (index, layero) {
  1189. //do something
  1190. layer.close(index); //如果设定了yes回调,需进行手工关闭
  1191. }
  1192. };
  1193. params = options ? $.extend(params, options) : params;
  1194. Wind.css('layer');
  1195. Wind.use("layer", function () {
  1196. layer.open(params);
  1197. });
  1198. }