123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- /**
- @ Name:layui.regionCheckBox 中国省市复选框
- @ Author:wanmianji
- */
-
- ;!function () {
- 'use strict';
- var new_element = document.createElement('script');
- new_element.setAttribute('type', 'text/javascript');
- new_element.setAttribute('src', layui.cache.base + 'regionCheckBox/data/region.json');
- document.body.appendChild(new_element);
- }();
-
- layui.define('form', function (exports) {
-
- 'use strict';
-
- var $ = layui.$
- , form = layui.form
- , MOD_NAME = 'regionCheckBox', ELEM = '.layui-regionContent'
- , regionCheckBox = {
- index: layui.regionCheckBox ? (layui.regionCheckBox.index + 10000) : 0
- , set: function (options) {
- var that = this;
- that.config = $.extend({}, that.config, options);
- return that;
- }
- , on: function (events, callback) {
- return layui.onevent.call(this, MOD_NAME, events, callback);
- }
- }
- , thisIns = function () {
- var that = this
- , options = that.config
- , id = options.id || options.index;
-
- return {
- reload: function (options) {
- that.config = $.extend({}, that.config, options);
- that.render();
- }
- , val: function (valueArr) {
- setValue(options, valueArr);
- }
- , config: options
- };
- }
- , Class = function (options) {
- var that = this;
- that.index = ++regionCheckBox.index;
- that.config = $.extend({}, that.config, regionCheckBox.config, options);
- that.render();
- };
-
-
- Class.prototype.config = {
- value: []
- , width: '550px'
- , border: true
- , change: function (result) {
- }
- , ready: function () {
- }
- };
-
- Class.prototype.render = function () {
- var that = this
- , options = that.config;
-
- options.elem = $(options.elem);
- var id = options.elem.attr('id');
-
- if (!options.elem.hasClass('layui-form') && options.elem.parents('.layui-form').length == 0) {
- options.elem.addClass('layui-form');
- }
- options.elem.addClass('layui-regionContent');
- options.elem.css('width', options.width);
- if (!options.border) {
- options.elem.css('border', 'none');
- }
- options.elem.attr('lay-filter', 'region-' + id);
-
- options.elem.html(getCheckBoxs(options));
-
- //初始值
- setValue(options, options.value);
-
- options.elem.find('.parent').mouseover(function () {
- $(this).find('.city').show();
- });
- options.elem.find('.parent').mouseout(function () {
- $(this).find('.city').hide();
- });
-
- form.on('checkbox(regionCheckBox-' + id + ')', function (data) {
- if (data.elem.value == '所有地域') { //选择所有地域
- if (data.elem.checked) {
- options.elem.find(':checkbox').prop('checked', true);
- } else {
- options.elem.find(':checkbox').prop('checked', false);
- }
- } else {
- //选择省(不包括直辖市)
- if ($(data.elem).parent().hasClass('parent')) {
- if (data.elem.checked) {
- $(data.elem).parent().find('.city :checkbox').prop('checked', true);
- } else {
- $(data.elem).parent().find('.city :checkbox').prop('checked', false);
- }
- }
- //选择城市
- if ($(data.elem).parent().hasClass('city')) {
- $(data.elem).parents('.parent').attr('name', options.name);
- if (data.elem.checked) {
- var is_all = true;
- $(data.elem).parent().find(':checkbox').each(function (i, item) {
- if (!item.checked) {
- is_all = false;
- return false;
- }
- });
- if (is_all) {
- $(data.elem).parents('.parent').find(':checkbox:first').prop('checked', true);
- }
- } else {
- $(data.elem).parents('.parent').find(':checkbox:first').prop('checked', false);
- }
- }
- //选择除所有地域外任意
- if (data.elem.checked) {
- var is_all = true;
- options.elem.find(':checkbox[value!="所有地域"]').each(function (i, item) {
- if (!item.checked) {
- is_all = false;
- return false;
- }
- });
- if (is_all) {
- options.elem.find(':checkbox[value="所有地域"]').prop('checked', true);
- }
- } else {
- options.elem.find(':checkbox[value="所有地域"]').prop('checked', false);
- }
- }
- form.render('checkbox', options.elem.attr('lay-filter'));
-
- renderParentDom(options.elem);
- initName(options);
-
- options.change(data);
- });
-
- options.ready();
- }
-
- function getCheckBoxs(options) {
- var name = options.name,
- id = options.elem.attr('id'),
- skin = 'primary';
-
- var boxs = '<div class="layui-form-item" style="margin-left:15px;">' +
- '<input type="checkbox" name="' + name + '" value="所有地域" title="所有地域" lay-skin="' + skin + '" lay-filter="regionCheckBox-' + id + '">' +
- '</div>';
- console.log(regionList);
- for (var area in regionList) {
- boxs += '<div class="layui-form-item" style="margin-bottom:0;">' +
- '<label class="layui-form-label area">' + area + ':</label>' +
- '<div class="layui-input-block province">' +
- '<ul>';
- for (var province in regionList[area]) {
- var city_num = regionList[area][province].length;
- boxs += '<li' + (city_num > 0 ? ' class="parent"' : '') + '>' +
- '<input type="checkbox" name="' + name + '" value="' + province + '" title="' + province + '" lay-skin="' + skin + '" lay-filter="regionCheckBox-' + id + '">';
-
- if (city_num > 0) {
- boxs += '<div class="city">';
- for (var i = 0; i < city_num; i++) {
- var city = regionList[area][province][i];
- boxs += '<input type="checkbox" name="' + name + '" value="' + province + '-' + city + '" title="' + city + '" lay-skin="' + skin + '" lay-filter="regionCheckBox-' + id + '">';
- }
- boxs += '</div>';
- }
-
- boxs += '</li>';
- }
- boxs += '</div></div>';
- }
-
- return boxs;
- }
-
- function setValue(options, valueArr) {
- options.elem.find(':checkbox').prop('checked', false);
- if (valueArr.indexOf('所有地域') > -1) {
- options.elem.find(':checkbox').prop('checked', true);
- } else {
- if (typeof valueArr == 'string') {
- valueArr = valueArr.split(',');
- }
- for (var i = 0; i < valueArr.length; i++) {
- var value = valueArr[i]
- , $elem = options.elem.find(':checkbox[value="' + value + '"]');
-
- $elem.prop('checked', true);
-
- if (value.indexOf('-') < 0) { //省
- $elem.parent().find('.city :checkbox').prop('checked', true);
- }
- }
- }
- form.render('checkbox', options.elem.attr('lay-filter'));
-
- renderParentDom(options.elem);
- initName(options);
- }
-
- function initName(options) {
- var $elem = options.elem;
-
- $elem.find(':checkbox').attr('name', options.name);
-
- if ($elem.find(':checkbox[value="所有地域"]').prop('checked')) {
- $elem.find(':checkbox[value!="所有地域"]').removeAttr('name');
- } else {
- $elem.find('.parent').find(':checkbox:first:checked').each(function () {
- $(this).parent().find('.city :checkbox').removeAttr('name');
- });
- }
- }
-
- function renderParentDom(elem) {
- elem.find('.parent').find(':checkbox:first').not(':checked').each(function () {
- var is_yes_all = true;
- var is_no_all = true;
- $(this).parent().find('.city :checkbox').each(function (i, item) {
- if (item.checked) {
- is_no_all = false;
- } else {
- is_yes_all = false;
- }
- });
- if (!is_yes_all && !is_no_all) {
- $(this).parent().find('.layui-icon:first').removeClass('layui-icon-ok');
- $(this).parent().find('.layui-icon:first').css('border-color', '#5FB878');
- $(this).parent().find('.layui-icon:first').css('background-color', '#5FB878');
- }
- });
- }
-
- regionCheckBox.render = function (options) {
- var ins = new Class(options);
- return thisIns.call(ins);
- };
-
- layui.link(layui.cache.base + 'regionCheckBox/regionCheckBox.css?v=1', function () {
-
- }, 'regionCheckBox');
-
- exports('regionCheckBox', regionCheckBox);
- });
|