截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

regionCheckBox.js 9.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /**
  2. @ Name:layui.regionCheckBox 中国省市复选框
  3. @ Author:wanmianji
  4. */
  5. ;!function () {
  6. 'use strict';
  7. var new_element = document.createElement('script');
  8. new_element.setAttribute('type', 'text/javascript');
  9. new_element.setAttribute('src', layui.cache.base + 'regionCheckBox/data/region.json');
  10. document.body.appendChild(new_element);
  11. }();
  12. layui.define('form', function (exports) {
  13. 'use strict';
  14. var $ = layui.$
  15. , form = layui.form
  16. , MOD_NAME = 'regionCheckBox', ELEM = '.layui-regionContent'
  17. , regionCheckBox = {
  18. index: layui.regionCheckBox ? (layui.regionCheckBox.index + 10000) : 0
  19. , set: function (options) {
  20. var that = this;
  21. that.config = $.extend({}, that.config, options);
  22. return that;
  23. }
  24. , on: function (events, callback) {
  25. return layui.onevent.call(this, MOD_NAME, events, callback);
  26. }
  27. }
  28. , thisIns = function () {
  29. var that = this
  30. , options = that.config
  31. , id = options.id || options.index;
  32. return {
  33. reload: function (options) {
  34. that.config = $.extend({}, that.config, options);
  35. that.render();
  36. }
  37. , val: function (valueArr) {
  38. setValue(options, valueArr);
  39. }
  40. , config: options
  41. };
  42. }
  43. , Class = function (options) {
  44. var that = this;
  45. that.index = ++regionCheckBox.index;
  46. that.config = $.extend({}, that.config, regionCheckBox.config, options);
  47. that.render();
  48. };
  49. Class.prototype.config = {
  50. value: []
  51. , width: '550px'
  52. , border: true
  53. , change: function (result) {
  54. }
  55. , ready: function () {
  56. }
  57. };
  58. Class.prototype.render = function () {
  59. var that = this
  60. , options = that.config;
  61. options.elem = $(options.elem);
  62. var id = options.elem.attr('id');
  63. if (!options.elem.hasClass('layui-form') && options.elem.parents('.layui-form').length == 0) {
  64. options.elem.addClass('layui-form');
  65. }
  66. options.elem.addClass('layui-regionContent');
  67. options.elem.css('width', options.width);
  68. if (!options.border) {
  69. options.elem.css('border', 'none');
  70. }
  71. options.elem.attr('lay-filter', 'region-' + id);
  72. options.elem.html(getCheckBoxs(options));
  73. //初始值
  74. setValue(options, options.value);
  75. options.elem.find('.parent').mouseover(function () {
  76. $(this).find('.city').show();
  77. });
  78. options.elem.find('.parent').mouseout(function () {
  79. $(this).find('.city').hide();
  80. });
  81. form.on('checkbox(regionCheckBox-' + id + ')', function (data) {
  82. if (data.elem.value == '所有地域') { //选择所有地域
  83. if (data.elem.checked) {
  84. options.elem.find(':checkbox').prop('checked', true);
  85. } else {
  86. options.elem.find(':checkbox').prop('checked', false);
  87. }
  88. } else {
  89. //选择省(不包括直辖市)
  90. if ($(data.elem).parent().hasClass('parent')) {
  91. if (data.elem.checked) {
  92. $(data.elem).parent().find('.city :checkbox').prop('checked', true);
  93. } else {
  94. $(data.elem).parent().find('.city :checkbox').prop('checked', false);
  95. }
  96. }
  97. //选择城市
  98. if ($(data.elem).parent().hasClass('city')) {
  99. $(data.elem).parents('.parent').attr('name', options.name);
  100. if (data.elem.checked) {
  101. var is_all = true;
  102. $(data.elem).parent().find(':checkbox').each(function (i, item) {
  103. if (!item.checked) {
  104. is_all = false;
  105. return false;
  106. }
  107. });
  108. if (is_all) {
  109. $(data.elem).parents('.parent').find(':checkbox:first').prop('checked', true);
  110. }
  111. } else {
  112. $(data.elem).parents('.parent').find(':checkbox:first').prop('checked', false);
  113. }
  114. }
  115. //选择除所有地域外任意
  116. if (data.elem.checked) {
  117. var is_all = true;
  118. options.elem.find(':checkbox[value!="所有地域"]').each(function (i, item) {
  119. if (!item.checked) {
  120. is_all = false;
  121. return false;
  122. }
  123. });
  124. if (is_all) {
  125. options.elem.find(':checkbox[value="所有地域"]').prop('checked', true);
  126. }
  127. } else {
  128. options.elem.find(':checkbox[value="所有地域"]').prop('checked', false);
  129. }
  130. }
  131. form.render('checkbox', options.elem.attr('lay-filter'));
  132. renderParentDom(options.elem);
  133. initName(options);
  134. options.change(data);
  135. });
  136. options.ready();
  137. }
  138. function getCheckBoxs(options) {
  139. var name = options.name,
  140. id = options.elem.attr('id'),
  141. skin = 'primary';
  142. var boxs = '<div class="layui-form-item" style="margin-left:15px;">' +
  143. '<input type="checkbox" name="' + name + '" value="所有地域" title="所有地域" lay-skin="' + skin + '" lay-filter="regionCheckBox-' + id + '">' +
  144. '</div>';
  145. console.log(regionList);
  146. for (var area in regionList) {
  147. boxs += '<div class="layui-form-item" style="margin-bottom:0;">' +
  148. '<label class="layui-form-label area">' + area + ':</label>' +
  149. '<div class="layui-input-block province">' +
  150. '<ul>';
  151. for (var province in regionList[area]) {
  152. var city_num = regionList[area][province].length;
  153. boxs += '<li' + (city_num > 0 ? ' class="parent"' : '') + '>' +
  154. '<input type="checkbox" name="' + name + '" value="' + province + '" title="' + province + '" lay-skin="' + skin + '" lay-filter="regionCheckBox-' + id + '">';
  155. if (city_num > 0) {
  156. boxs += '<div class="city">';
  157. for (var i = 0; i < city_num; i++) {
  158. var city = regionList[area][province][i];
  159. boxs += '<input type="checkbox" name="' + name + '" value="' + province + '-' + city + '" title="' + city + '" lay-skin="' + skin + '" lay-filter="regionCheckBox-' + id + '">';
  160. }
  161. boxs += '</div>';
  162. }
  163. boxs += '</li>';
  164. }
  165. boxs += '</div></div>';
  166. }
  167. return boxs;
  168. }
  169. function setValue(options, valueArr) {
  170. options.elem.find(':checkbox').prop('checked', false);
  171. if (valueArr.indexOf('所有地域') > -1) {
  172. options.elem.find(':checkbox').prop('checked', true);
  173. } else {
  174. if (typeof valueArr == 'string') {
  175. valueArr = valueArr.split(',');
  176. }
  177. for (var i = 0; i < valueArr.length; i++) {
  178. var value = valueArr[i]
  179. , $elem = options.elem.find(':checkbox[value="' + value + '"]');
  180. $elem.prop('checked', true);
  181. if (value.indexOf('-') < 0) { //省
  182. $elem.parent().find('.city :checkbox').prop('checked', true);
  183. }
  184. }
  185. }
  186. form.render('checkbox', options.elem.attr('lay-filter'));
  187. renderParentDom(options.elem);
  188. initName(options);
  189. }
  190. function initName(options) {
  191. var $elem = options.elem;
  192. $elem.find(':checkbox').attr('name', options.name);
  193. if ($elem.find(':checkbox[value="所有地域"]').prop('checked')) {
  194. $elem.find(':checkbox[value!="所有地域"]').removeAttr('name');
  195. } else {
  196. $elem.find('.parent').find(':checkbox:first:checked').each(function () {
  197. $(this).parent().find('.city :checkbox').removeAttr('name');
  198. });
  199. }
  200. }
  201. function renderParentDom(elem) {
  202. elem.find('.parent').find(':checkbox:first').not(':checked').each(function () {
  203. var is_yes_all = true;
  204. var is_no_all = true;
  205. $(this).parent().find('.city :checkbox').each(function (i, item) {
  206. if (item.checked) {
  207. is_no_all = false;
  208. } else {
  209. is_yes_all = false;
  210. }
  211. });
  212. if (!is_yes_all && !is_no_all) {
  213. $(this).parent().find('.layui-icon:first').removeClass('layui-icon-ok');
  214. $(this).parent().find('.layui-icon:first').css('border-color', '#5FB878');
  215. $(this).parent().find('.layui-icon:first').css('background-color', '#5FB878');
  216. }
  217. });
  218. }
  219. regionCheckBox.render = function (options) {
  220. var ins = new Class(options);
  221. return thisIns.call(ins);
  222. };
  223. layui.link(layui.cache.base + 'regionCheckBox/regionCheckBox.css?v=1', function () {
  224. }, 'regionCheckBox');
  225. exports('regionCheckBox', regionCheckBox);
  226. });