mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
[更新]增加区域数据管理与支持
This commit is contained in:
parent
2ab4cd3cad
commit
f35faf45bb
@ -16,7 +16,7 @@ namespace app\admin\controller;
|
||||
|
||||
use controller\BasicAdmin;
|
||||
use service\FileService;
|
||||
use think\View;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* 插件助手控制器
|
||||
@ -42,7 +42,7 @@ class Plugs extends BasicAdmin
|
||||
|
||||
/**
|
||||
* 文件上传
|
||||
* @return View
|
||||
* @return \think\response\View
|
||||
*/
|
||||
public function upfile()
|
||||
{
|
||||
@ -58,7 +58,7 @@ class Plugs extends BasicAdmin
|
||||
|
||||
/**
|
||||
* 通用文件上传
|
||||
* @return string
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function upload()
|
||||
{
|
||||
@ -132,7 +132,8 @@ class Plugs extends BasicAdmin
|
||||
}
|
||||
|
||||
/**
|
||||
* 字体图标
|
||||
* 字体图标选择器
|
||||
* @return \think\response\View
|
||||
*/
|
||||
public function icon()
|
||||
{
|
||||
@ -140,4 +141,14 @@ class Plugs extends BasicAdmin
|
||||
return view();
|
||||
}
|
||||
|
||||
/**
|
||||
* 区域数据
|
||||
* @return \think\response\Json
|
||||
*/
|
||||
public function region()
|
||||
{
|
||||
$list = Db::name('DataRegion')->where('status', '1')->column('code,name');
|
||||
return json($list);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -122,7 +122,7 @@ function sysconf($name, $value = false)
|
||||
* array_column 函数兼容
|
||||
*/
|
||||
if (!function_exists("array_column")) {
|
||||
|
||||
|
||||
function array_column(array &$rows, $column_key, $index_key = null)
|
||||
{
|
||||
$data = [];
|
||||
|
@ -5,7 +5,7 @@
|
||||
<meta name="renderer" content="webkit"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<link rel="shortcut icon" href="{:sysconf('browser_icon')}" />
|
||||
<title>{block name="title"}{$title|default=''} {if !empty($title)}-{/if} {:sysconf('site_name')}{/block}</title>
|
||||
<title>{block name="title"}{$title|default=''} {if !empty($title)}·{/if} {:sysconf('site_name')}{/block}</title>
|
||||
<link rel="stylesheet" href="__PUBLIC__/static/plugs/bootstrap/css/bootstrap.min.css?ver={:date('ymd')}"/>
|
||||
<link rel="stylesheet" href="__PUBLIC__/static/plugs/layui/css/layui.css?ver={:date('ymd')}"/>
|
||||
<link rel="stylesheet" href="__PUBLIC__/static/theme/default/css/console.css?ver={:date('ymd')}">
|
||||
|
@ -15,6 +15,7 @@
|
||||
namespace app\index\controller;
|
||||
|
||||
use think\Controller;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* 网站入口控制器
|
||||
@ -34,4 +35,13 @@ class Index extends Controller
|
||||
$this->redirect('@admin');
|
||||
}
|
||||
|
||||
public function test()
|
||||
{
|
||||
$json = json_decode(file_get_contents('citys.json'), true);
|
||||
// dump($json);
|
||||
foreach ($json as $key => $vo) {
|
||||
dump(Db::name('DataRegion')->insert(['code' => $key, 'name' => $vo]));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -18,8 +18,8 @@ var baseUrl = (function () {
|
||||
|
||||
// RequireJs 配置参数
|
||||
require.config({
|
||||
baseUrl: baseUrl,
|
||||
waitSeconds: 0,
|
||||
baseUrl: baseUrl,
|
||||
map: {'*': {css: baseUrl + '../plugs/require/require.css.js'}},
|
||||
paths: {
|
||||
// 自定义插件(源码自创建或已修改源码)
|
||||
@ -33,6 +33,7 @@ require.config({
|
||||
// 开源插件(未修改源码)
|
||||
'pace': ['../plugs/jquery/pace.min'],
|
||||
'json': ['../plugs/jquery/json2.min'],
|
||||
'citys': ['../plugs/juqyer/jquery.citys'],
|
||||
'print': ['../plugs/jquery/jquery.PrintArea'],
|
||||
'base64': ['../plugs/jquery/base64.min'],
|
||||
'jquery': ['../plugs/jquery/jquery.min'],
|
||||
@ -46,6 +47,7 @@ require.config({
|
||||
|
||||
},
|
||||
shim: {
|
||||
'citys': {deps: ['jquery']},
|
||||
'layui': {deps: ['jquery']},
|
||||
'laydate': {deps: ['jquery']},
|
||||
'bootstrap': {deps: ['jquery']},
|
||||
|
@ -26,31 +26,32 @@
|
||||
* @standard | [string] | strict, loose, (html5) | Only for popup. For html 4.01, strict or loose document standard, or html 5 standard
|
||||
* @extraHead | [string] | ('') | comma separated list of extra elements to be appended to the head tag
|
||||
*/
|
||||
(function($) {
|
||||
(function ($) {
|
||||
var counter = 0;
|
||||
var modes = { iframe : "iframe", popup : "popup" };
|
||||
var standards = { strict : "strict", loose : "loose", html5 : "html5" };
|
||||
var defaults = { mode : modes.iframe,
|
||||
standard : standards.html5,
|
||||
popHt : 500,
|
||||
popWd : 400,
|
||||
popX : 200,
|
||||
popY : 200,
|
||||
popTitle : '',
|
||||
popClose : false,
|
||||
extraCss : '',
|
||||
extraHead : '',
|
||||
retainAttr : ["id","class","style"] };
|
||||
var modes = {iframe: "iframe", popup: "popup"};
|
||||
var standards = {strict: "strict", loose: "loose", html5: "html5"};
|
||||
var defaults = {
|
||||
mode: modes.iframe,
|
||||
standard: standards.html5,
|
||||
popHt: 500,
|
||||
popWd: 400,
|
||||
popX: 200,
|
||||
popY: 200,
|
||||
popTitle: '',
|
||||
popClose: false,
|
||||
extraCss: '',
|
||||
extraHead: '',
|
||||
retainAttr: ["id", "class", "style"]
|
||||
};
|
||||
|
||||
var settings = {};//global settings
|
||||
|
||||
$.fn.printArea = function( options )
|
||||
{
|
||||
$.extend( settings, defaults, options );
|
||||
$.fn.printArea = function (options) {
|
||||
$.extend(settings, defaults, options);
|
||||
|
||||
counter++;
|
||||
var idPrefix = "printArea_";
|
||||
$( "[id^=" + idPrefix + "]" ).remove();
|
||||
$("[id^=" + idPrefix + "]").remove();
|
||||
|
||||
settings.id = idPrefix + counter;
|
||||
|
||||
@ -58,71 +59,78 @@
|
||||
|
||||
var PrintAreaWindow = PrintArea.getPrintWindow();
|
||||
|
||||
PrintArea.write( PrintAreaWindow.doc, $printSource );
|
||||
PrintArea.write(PrintAreaWindow.doc, $printSource);
|
||||
|
||||
setTimeout( function () { PrintArea.print( PrintAreaWindow ); }, 1000 );
|
||||
setTimeout(function () {
|
||||
PrintArea.print(PrintAreaWindow);
|
||||
}, 1000);
|
||||
};
|
||||
|
||||
var PrintArea = {
|
||||
print : function( PAWindow ) {
|
||||
print: function (PAWindow) {
|
||||
var paWindow = PAWindow.win;
|
||||
|
||||
$(PAWindow.doc).ready(function(){
|
||||
$(PAWindow.doc).ready(function () {
|
||||
paWindow.focus();
|
||||
paWindow.print();
|
||||
|
||||
if ( settings.mode == modes.popup && settings.popClose )
|
||||
setTimeout(function() { paWindow.close(); }, 2000);
|
||||
if (settings.mode == modes.popup && settings.popClose)
|
||||
setTimeout(function () {
|
||||
paWindow.close();
|
||||
}, 2000);
|
||||
});
|
||||
},
|
||||
write : function ( PADocument, $ele ) {
|
||||
write: function (PADocument, $ele) {
|
||||
PADocument.open();
|
||||
PADocument.write( PrintArea.docType() + "<html>" + PrintArea.getHead() + PrintArea.getBody( $ele ) + "</html>" );
|
||||
PADocument.write(PrintArea.docType() + "<html>" + PrintArea.getHead() + PrintArea.getBody($ele) + "</html>");
|
||||
PADocument.close();
|
||||
},
|
||||
docType : function() {
|
||||
if ( settings.mode == modes.iframe ) return "";
|
||||
docType: function () {
|
||||
if (settings.mode == modes.iframe) return "";
|
||||
|
||||
if ( settings.standard == standards.html5 ) return "<!DOCTYPE html>";
|
||||
if (settings.standard == standards.html5) return "<!DOCTYPE html>";
|
||||
|
||||
var transitional = settings.standard == standards.loose ? " Transitional" : "";
|
||||
var dtd = settings.standard == standards.loose ? "loose" : "strict";
|
||||
|
||||
return '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01' + transitional + '//EN" "http://www.w3.org/TR/html4/' + dtd + '.dtd">';
|
||||
return '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01' + transitional + '//EN" "http://www.w3.org/TR/html4/' + dtd + '.dtd">';
|
||||
},
|
||||
getHead : function() {
|
||||
getHead: function () {
|
||||
var extraHead = "";
|
||||
var links = "";
|
||||
|
||||
if ( settings.extraHead ) settings.extraHead.replace( /([^,]+)/g, function(m){ extraHead += m });
|
||||
if (settings.extraHead) settings.extraHead.replace(/([^,]+)/g, function (m) {
|
||||
extraHead += m
|
||||
});
|
||||
|
||||
$(document).find("link")
|
||||
.filter(function(){ // Requirement: <link> element MUST have rel="stylesheet" to be considered in print document
|
||||
var relAttr = $(this).attr("rel");
|
||||
return ($.type(relAttr) === 'undefined') == false && relAttr.toLowerCase() == 'stylesheet';
|
||||
})
|
||||
.filter(function(){ // Include if media is undefined, empty, print or all
|
||||
var mediaAttr = $(this).attr("media");
|
||||
return $.type(mediaAttr) === 'undefined' || mediaAttr == "" || mediaAttr.toLowerCase() == 'print' || mediaAttr.toLowerCase() == 'all'
|
||||
})
|
||||
.each(function(){
|
||||
links += '<link type="text/css" rel="stylesheet" href="' + $(this).attr("href") + '" >';
|
||||
});
|
||||
if ( settings.extraCss ) settings.extraCss.replace( /([^,\s]+)/g, function(m){ links += '<link type="text/css" rel="stylesheet" href="' + m + '">' });
|
||||
.filter(function () { // Requirement: <link> element MUST have rel="stylesheet" to be considered in print document
|
||||
var relAttr = $(this).attr("rel");
|
||||
return ($.type(relAttr) === 'undefined') == false && relAttr.toLowerCase() == 'stylesheet';
|
||||
})
|
||||
.filter(function () { // Include if media is undefined, empty, print or all
|
||||
var mediaAttr = $(this).attr("media");
|
||||
return $.type(mediaAttr) === 'undefined' || mediaAttr == "" || mediaAttr.toLowerCase() == 'print' || mediaAttr.toLowerCase() == 'all'
|
||||
})
|
||||
.each(function () {
|
||||
links += '<link type="text/css" rel="stylesheet" href="' + $(this).attr("href") + '" >';
|
||||
});
|
||||
if (settings.extraCss) settings.extraCss.replace(/([^,\s]+)/g, function (m) {
|
||||
links += '<link type="text/css" rel="stylesheet" href="' + m + '">'
|
||||
});
|
||||
|
||||
return "<head><title>" + settings.popTitle + "</title>" + extraHead + links + "</head>";
|
||||
},
|
||||
getBody : function ( elements ) {
|
||||
getBody: function (elements) {
|
||||
var htm = "";
|
||||
var attrs = settings.retainAttr;
|
||||
elements.each(function() {
|
||||
var ele = PrintArea.getFormData( $(this) );
|
||||
elements.each(function () {
|
||||
var ele = PrintArea.getFormData($(this));
|
||||
|
||||
var attributes = ""
|
||||
for ( var x = 0; x < attrs.length; x++ )
|
||||
{
|
||||
var eleAttr = $(ele).attr( attrs[x] );
|
||||
if ( eleAttr ) attributes += (attributes.length > 0 ? " ":"") + attrs[x] + "='" + eleAttr + "'";
|
||||
for (var x = 0; x < attrs.length; x++) {
|
||||
var eleAttr = $(ele).attr(attrs[x]);
|
||||
if (eleAttr) attributes += (attributes.length > 0 ? " " : "") + attrs[x] + "='" + eleAttr + "'";
|
||||
}
|
||||
|
||||
htm += '<div ' + attributes + '>' + $(ele).html() + '</div>';
|
||||
@ -130,60 +138,60 @@
|
||||
|
||||
return "<body>" + htm + "</body>";
|
||||
},
|
||||
getFormData : function ( ele ) {
|
||||
getFormData: function (ele) {
|
||||
var copy = ele.clone();
|
||||
var copiedInputs = $("input,select,textarea", copy);
|
||||
$("input,select,textarea", ele).each(function( i ){
|
||||
$("input,select,textarea", ele).each(function (i) {
|
||||
var typeInput = $(this).attr("type");
|
||||
if ($.type(typeInput) === 'undefined') typeInput = $(this).is("select") ? "select" : $(this).is("textarea") ? "textarea" : "";
|
||||
var copiedInput = copiedInputs.eq( i );
|
||||
var copiedInput = copiedInputs.eq(i);
|
||||
|
||||
if ( typeInput == "radio" || typeInput == "checkbox" ) copiedInput.attr( "checked", $(this).is(":checked") );
|
||||
else if ( typeInput == "text" ) copiedInput.attr( "value", $(this).val() );
|
||||
else if ( typeInput == "select" )
|
||||
$(this).find( "option" ).each( function( i ) {
|
||||
if ( $(this).is(":selected") ) $("option", copiedInput).eq( i ).attr( "selected", true );
|
||||
if (typeInput == "radio" || typeInput == "checkbox") copiedInput.attr("checked", $(this).is(":checked"));
|
||||
else if (typeInput == "text") copiedInput.attr("value", $(this).val());
|
||||
else if (typeInput == "select")
|
||||
$(this).find("option").each(function (i) {
|
||||
if ($(this).is(":selected")) $("option", copiedInput).eq(i).attr("selected", true);
|
||||
});
|
||||
else if ( typeInput == "textarea" ) copiedInput.text( $(this).val() );
|
||||
else if (typeInput == "textarea") copiedInput.text($(this).val());
|
||||
});
|
||||
return copy;
|
||||
},
|
||||
getPrintWindow : function () {
|
||||
switch ( settings.mode )
|
||||
{
|
||||
getPrintWindow: function () {
|
||||
switch (settings.mode) {
|
||||
case modes.iframe :
|
||||
var f = new PrintArea.Iframe();
|
||||
return { win : f.contentWindow || f, doc : f.doc };
|
||||
return {win: f.contentWindow || f, doc: f.doc};
|
||||
case modes.popup :
|
||||
var p = new PrintArea.Popup();
|
||||
return { win : p, doc : p.doc };
|
||||
return {win: p, doc: p.doc};
|
||||
}
|
||||
},
|
||||
Iframe : function () {
|
||||
Iframe: function () {
|
||||
var frameId = settings.id;
|
||||
var iframeStyle = 'border:0;position:absolute;width:0px;height:0px;right:0px;top:0px;';
|
||||
var iframe;
|
||||
|
||||
try
|
||||
{
|
||||
try {
|
||||
iframe = document.createElement('iframe');
|
||||
document.body.appendChild(iframe);
|
||||
$(iframe).attr({ style: iframeStyle, id: frameId, src: "#" + new Date().getTime() });
|
||||
$(iframe).attr({style: iframeStyle, id: frameId, src: "#" + new Date().getTime()});
|
||||
iframe.doc = null;
|
||||
iframe.doc = iframe.contentDocument ? iframe.contentDocument : ( iframe.contentWindow ? iframe.contentWindow.document : iframe.document);
|
||||
}
|
||||
catch( e ) { throw e + ". iframes may not be supported in this browser."; }
|
||||
catch (e) {
|
||||
throw e + ". iframes may not be supported in this browser.";
|
||||
}
|
||||
|
||||
if ( iframe.doc == null ) throw "Cannot find document.";
|
||||
if (iframe.doc == null) throw "Cannot find document.";
|
||||
|
||||
return iframe;
|
||||
},
|
||||
Popup : function () {
|
||||
Popup: function () {
|
||||
var windowAttr = "location=yes,statusbar=no,directories=no,menubar=no,titlebar=no,toolbar=no,dependent=no";
|
||||
windowAttr += ",width=" + settings.popWd + ",height=" + settings.popHt;
|
||||
windowAttr += ",resizable=yes,screenX=" + settings.popX + ",screenY=" + settings.popY + ",personalbar=no,scrollbars=yes";
|
||||
|
||||
var newWin = window.open( "", "_blank", windowAttr );
|
||||
var newWin = window.open("", "_blank", windowAttr);
|
||||
|
||||
newWin.doc = newWin.document;
|
||||
|
||||
|
@ -18,7 +18,9 @@
|
||||
this.endDecorate();
|
||||
this.box();
|
||||
}, item: function () {
|
||||
var $box = this.$element, _coord = [], _num = 0, _options = this.options, i = 0, $items = $box.find(this.options.fallsCss), fallsWidth = $items.eq(0).outerWidth() + this.options.margin, boxWidth = $box.outerWidth() + this.options.margin, _autoWidth = 0;
|
||||
var $box = this.$element, _coord = [], _num = 0, _options = this.options, i = 0,
|
||||
$items = $box.find(this.options.fallsCss), fallsWidth = $items.eq(0).outerWidth() + this.options.margin,
|
||||
boxWidth = $box.outerWidth() + this.options.margin, _autoWidth = 0;
|
||||
_num = Math.floor(boxWidth / fallsWidth);
|
||||
_autoWidth = (boxWidth - _num * fallsWidth) / 2;
|
||||
for (; i < _num; i++) {
|
||||
@ -48,7 +50,8 @@
|
||||
}, box: function () {
|
||||
this.$element.height(this.getFallsMaxHeight());
|
||||
}, endDecorate: function () {
|
||||
var _coord = this.coord, i = 0, _num = this.num, fallsMaxHeight = this.getFallsMaxHeight(), falls = document.createElement('div'), fallsClone, fallsHeight = 0;
|
||||
var _coord = this.coord, i = 0, _num = this.num, fallsMaxHeight = this.getFallsMaxHeight(),
|
||||
falls = document.createElement('div'), fallsClone, fallsHeight = 0;
|
||||
falls.className = 'additem';
|
||||
for (; i < _num; i++) {
|
||||
if (fallsMaxHeight != _coord[i][1]) {
|
||||
|
249
static/plugs/jquery/jquery.citys.js
Normal file
249
static/plugs/jquery/jquery.citys.js
Normal file
@ -0,0 +1,249 @@
|
||||
/**
|
||||
* jquery.citys.js 1.0
|
||||
* http://jquerywidget.com
|
||||
* Github:https://github.com/mumuy/widget
|
||||
* -------------- DEMO ---------------
|
||||
* $('#demo1').citys({valueType:'name',province:'福建',city:'厦门',area:'思明'});
|
||||
*/
|
||||
;(function (factory) {
|
||||
if (typeof define === "function" && (define.amd || define.cmd) && !jQuery) {
|
||||
// AMD或CMD
|
||||
define(["jquery"], factory);
|
||||
} else if (typeof module === 'object' && module.exports) {
|
||||
// Node/CommonJS
|
||||
module.exports = function (root, jQuery) {
|
||||
if (jQuery === undefined) {
|
||||
if (typeof window !== 'undefined') {
|
||||
jQuery = require('jquery');
|
||||
} else {
|
||||
jQuery = require('jquery')(root);
|
||||
}
|
||||
}
|
||||
factory(jQuery);
|
||||
return jQuery;
|
||||
};
|
||||
} else {
|
||||
//Browser globals
|
||||
factory(jQuery);
|
||||
}
|
||||
}(function ($) {
|
||||
$.support.cors = true;
|
||||
$.fn.citys = function (parameter, getApi) {
|
||||
if (typeof parameter === 'function') { //重载
|
||||
getApi = parameter;
|
||||
parameter = {};
|
||||
} else {
|
||||
parameter = parameter || {};
|
||||
getApi = getApi || function () {
|
||||
};
|
||||
}
|
||||
var dataUrl = 'http://passer-by.com/data_location/list.json';
|
||||
if (window.ROOT_URL) {
|
||||
dataUrl = window.ROOT_URL + '/index.php/admin/plugs/region.html';
|
||||
}
|
||||
var defaults = {
|
||||
dataUrl: dataUrl, //数据库地址
|
||||
crossDomain: true, //是否开启跨域
|
||||
dataType: 'json', //数据库类型:'json'或'jsonp'
|
||||
provinceField: 'province', //省份字段名
|
||||
cityField: 'city', //城市字段名
|
||||
areaField: 'area', //地区字段名
|
||||
valueType: 'code', //下拉框值的类型,code行政区划代码,name地名
|
||||
code: 0, //地区编码
|
||||
province: 0, //省份,可以为地区编码或者名称
|
||||
city: 0, //城市,可以为地区编码或者名称
|
||||
area: 0, //地区,可以为地区编码或者名称
|
||||
required: true, //是否必须选一个
|
||||
nodata: 'hidden', //当无数据时的表现形式:'hidden'隐藏,'disabled'禁用,为空不做任何处理
|
||||
onChange: function () { //地区切换时触发,回调函数传入地区数据
|
||||
}
|
||||
};
|
||||
var options = $.extend({}, defaults, parameter);
|
||||
return this.each(function () {
|
||||
//对象定义
|
||||
var _api = {};
|
||||
var $this = $(this);
|
||||
var $province = $this.find('select[name="' + options.provinceField + '"]'),
|
||||
$city = $this.find('select[name="' + options.cityField + '"]'),
|
||||
$area = $this.find('select[name="' + options.areaField + '"]');
|
||||
$.ajax({
|
||||
url: options.dataUrl,
|
||||
type: 'GET',
|
||||
crossDomain: options.crossDomain,
|
||||
dataType: options.dataType,
|
||||
jsonpCallback: 'jsonp_location',
|
||||
success: function (data) {
|
||||
var province, city, area, hasCity;
|
||||
if (options.code) { //如果设置地区编码,则忽略单独设置的信息
|
||||
var c = options.code - options.code % 1e4;
|
||||
if (data[c]) {
|
||||
options.province = c;
|
||||
}
|
||||
c = options.code - (options.code % 1e4 ? options.code % 1e2 : options.code);
|
||||
if (data[c]) {
|
||||
options.city = c;
|
||||
}
|
||||
c = options.code % 1e2 ? options.code : 0;
|
||||
if (data[c]) {
|
||||
options.area = c;
|
||||
}
|
||||
}
|
||||
var updateData = function () {
|
||||
province = {}, city = {}, area = {};
|
||||
hasCity = false; //判断是非有地级城市
|
||||
for (var code in data) {
|
||||
if (!(code % 1e4)) { //获取所有的省级行政单位
|
||||
province[code] = data[code];
|
||||
if (options.required && !options.province) {
|
||||
if (options.city && !(options.city % 1e4)) { //省未填,并判断为直辖市
|
||||
options.province = options.city;
|
||||
} else {
|
||||
options.province = code;
|
||||
}
|
||||
} else if (isNaN(options.province) && data[code].indexOf(options.province) > -1) {
|
||||
options.province = code;
|
||||
}
|
||||
} else {
|
||||
var p = code - options.province;
|
||||
if (options.province && p > 0 && p < 1e4) { //同省的城市或地区
|
||||
if (!(code % 100)) {
|
||||
hasCity = true;
|
||||
city[code] = data[code];
|
||||
if (options.required && !options.city) {
|
||||
options.city = code;
|
||||
} else if (isNaN(options.city) && data[code].indexOf(options.city) > -1) {
|
||||
options.city = code;
|
||||
}
|
||||
} else if (p > 8000) { //省直辖县级行政单位
|
||||
city[code] = data[code];
|
||||
if (options.required && !options.city) {
|
||||
options.city = code;
|
||||
} else if (isNaN(options.city) && data[code].indexOf(options.city) > -1) {
|
||||
options.city = code;
|
||||
}
|
||||
} else if (hasCity) { //非直辖市
|
||||
var c = code - options.city;
|
||||
if (options.city && c > 0 && c < 100) { //同个城市的地区
|
||||
area[code] = data[code];
|
||||
if (options.required && !options.area) {
|
||||
options.area = code;
|
||||
} else if (isNaN(options.area) && data[code].indexOf(options.area) > -1) {
|
||||
options.area = code;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
area[code] = data[code]; //直辖市
|
||||
if (options.required && !options.area) {
|
||||
options.area = code;
|
||||
} else if (isNaN(options.area) && data[code].indexOf(options.area) > -1) {
|
||||
options.area = code;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
var format = {
|
||||
province: function () {
|
||||
$province.empty();
|
||||
if (!options.required) {
|
||||
$province.append('<option value=""> - 请选择 - </option>');
|
||||
}
|
||||
for (var i in province) {
|
||||
$province.append('<option value="' + (options.valueType === 'code' ? i : province[i]) + '" data-code="' + i + '">' + province[i] + '</option>');
|
||||
}
|
||||
if (options.province) {
|
||||
var value = options.valueType === 'code' ? options.province : province[options.province];
|
||||
$province.val(value);
|
||||
}
|
||||
this.city();
|
||||
},
|
||||
city: function () {
|
||||
$city.empty();
|
||||
if (!hasCity) {
|
||||
$city.css('display', 'none');
|
||||
} else {
|
||||
$city.css('display', '');
|
||||
if (!options.required) {
|
||||
$city.append('<option value=""> - 请选择 - </option>');
|
||||
}
|
||||
if (options.nodata === 'disabled') {
|
||||
$city.prop('disabled', $.isEmptyObject(city));
|
||||
} else if (options.nodata === 'hidden') {
|
||||
$city.css('display', $.isEmptyObject(city) ? 'none' : '');
|
||||
}
|
||||
for (var i in city) {
|
||||
$city.append('<option value="' + (options.valueType === 'code' ? i : city[i]) + '" data-code="' + i + '">' + city[i] + '</option>');
|
||||
}
|
||||
if (options.city) {
|
||||
var value = options.valueType === 'code' ? options.city : city[options.city];
|
||||
$city.val(value);
|
||||
} else if (options.area) {
|
||||
var value = options.valueType === 'code' ? options.area : city[options.area];
|
||||
$city.val(value);
|
||||
}
|
||||
}
|
||||
this.area();
|
||||
},
|
||||
area: function () {
|
||||
$area.empty();
|
||||
if (!options.required) {
|
||||
$area.append('<option value=""> - 请选择 - </option>');
|
||||
}
|
||||
if (options.nodata === 'disabled') {
|
||||
$area.prop('disabled', $.isEmptyObject(area));
|
||||
} else if (options.nodata === 'hidden') {
|
||||
$area.css('display', $.isEmptyObject(area) ? 'none' : '');
|
||||
}
|
||||
for (var i in area) {
|
||||
$area.append('<option value="' + (options.valueType === 'code' ? i : area[i]) + '" data-code="' + i + '">' + area[i] + '</option>');
|
||||
}
|
||||
if (options.area) {
|
||||
var value = options.valueType === 'code' ? options.area : area[options.area];
|
||||
$area.val(value);
|
||||
}
|
||||
}
|
||||
};
|
||||
//获取当前地理信息
|
||||
_api.getInfo = function () {
|
||||
var status = {
|
||||
direct: !hasCity,
|
||||
province: data[options.province] || '',
|
||||
city: data[options.city] || '',
|
||||
area: data[options.area] || '',
|
||||
code: options.area || options.city || options.province
|
||||
};
|
||||
return status;
|
||||
};
|
||||
//事件绑定
|
||||
$province.on('change', function () {
|
||||
options.province = $(this).find('option:selected').data('code') || 0; //选中节点的区划代码
|
||||
options.city = 0;
|
||||
options.area = 0;
|
||||
updateData();
|
||||
format.city();
|
||||
options.onChange(_api.getInfo());
|
||||
});
|
||||
$city.on('change', function () {
|
||||
options.city = $(this).find('option:selected').data('code') || 0; //选中节点的区划代码
|
||||
options.area = 0;
|
||||
updateData();
|
||||
format.area();
|
||||
options.onChange(_api.getInfo());
|
||||
});
|
||||
$area.on('change', function () {
|
||||
options.area = $(this).find('option:selected').data('code') || 0; //选中节点的区划代码
|
||||
options.onChange(_api.getInfo());
|
||||
});
|
||||
//初始化
|
||||
updateData();
|
||||
format.province();
|
||||
if (options.code) {
|
||||
options.onChange(_api.getInfo());
|
||||
}
|
||||
getApi(_api);
|
||||
}
|
||||
});
|
||||
});
|
||||
};
|
||||
}));
|
@ -6,112 +6,113 @@
|
||||
* Released under the MIT license
|
||||
*/
|
||||
(function (factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD
|
||||
define(['jquery'], factory);
|
||||
} else if (typeof exports === 'object') {
|
||||
// CommonJS
|
||||
factory(require('jquery'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory(jQuery);
|
||||
}
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD
|
||||
define(['jquery'], factory);
|
||||
} else if (typeof exports === 'object') {
|
||||
// CommonJS
|
||||
factory(require('jquery'));
|
||||
} else {
|
||||
// Browser globals
|
||||
factory(jQuery);
|
||||
}
|
||||
}(function ($) {
|
||||
|
||||
var pluses = /\+/g;
|
||||
var pluses = /\+/g;
|
||||
|
||||
function encode(s) {
|
||||
return config.raw ? s : encodeURIComponent(s);
|
||||
}
|
||||
function encode(s) {
|
||||
return config.raw ? s : encodeURIComponent(s);
|
||||
}
|
||||
|
||||
function decode(s) {
|
||||
return config.raw ? s : decodeURIComponent(s);
|
||||
}
|
||||
function decode(s) {
|
||||
return config.raw ? s : decodeURIComponent(s);
|
||||
}
|
||||
|
||||
function stringifyCookieValue(value) {
|
||||
return encode(config.json ? JSON.stringify(value) : String(value));
|
||||
}
|
||||
function stringifyCookieValue(value) {
|
||||
return encode(config.json ? JSON.stringify(value) : String(value));
|
||||
}
|
||||
|
||||
function parseCookieValue(s) {
|
||||
if (s.indexOf('"') === 0) {
|
||||
// This is a quoted cookie as according to RFC2068, unescape...
|
||||
s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\');
|
||||
}
|
||||
function parseCookieValue(s) {
|
||||
if (s.indexOf('"') === 0) {
|
||||
// This is a quoted cookie as according to RFC2068, unescape...
|
||||
s = s.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, '\\');
|
||||
}
|
||||
|
||||
try {
|
||||
// Replace server-side written pluses with spaces.
|
||||
// If we can't decode the cookie, ignore it, it's unusable.
|
||||
// If we can't parse the cookie, ignore it, it's unusable.
|
||||
s = decodeURIComponent(s.replace(pluses, ' '));
|
||||
return config.json ? JSON.parse(s) : s;
|
||||
} catch(e) {}
|
||||
}
|
||||
try {
|
||||
// Replace server-side written pluses with spaces.
|
||||
// If we can't decode the cookie, ignore it, it's unusable.
|
||||
// If we can't parse the cookie, ignore it, it's unusable.
|
||||
s = decodeURIComponent(s.replace(pluses, ' '));
|
||||
return config.json ? JSON.parse(s) : s;
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
|
||||
function read(s, converter) {
|
||||
var value = config.raw ? s : parseCookieValue(s);
|
||||
return $.isFunction(converter) ? converter(value) : value;
|
||||
}
|
||||
function read(s, converter) {
|
||||
var value = config.raw ? s : parseCookieValue(s);
|
||||
return $.isFunction(converter) ? converter(value) : value;
|
||||
}
|
||||
|
||||
var config = $.cookie = function (key, value, options) {
|
||||
var config = $.cookie = function (key, value, options) {
|
||||
|
||||
// Write
|
||||
// Write
|
||||
|
||||
if (value !== undefined && !$.isFunction(value)) {
|
||||
options = $.extend({}, config.defaults, options);
|
||||
if (value !== undefined && !$.isFunction(value)) {
|
||||
options = $.extend({}, config.defaults, options);
|
||||
|
||||
if (typeof options.expires === 'number') {
|
||||
var days = options.expires, t = options.expires = new Date();
|
||||
t.setTime(+t + days * 864e+5);
|
||||
}
|
||||
if (typeof options.expires === 'number') {
|
||||
var days = options.expires, t = options.expires = new Date();
|
||||
t.setTime(+t + days * 864e+5);
|
||||
}
|
||||
|
||||
return (document.cookie = [
|
||||
encode(key), '=', stringifyCookieValue(value),
|
||||
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
|
||||
options.path ? '; path=' + options.path : '',
|
||||
options.domain ? '; domain=' + options.domain : '',
|
||||
options.secure ? '; secure' : ''
|
||||
].join(''));
|
||||
}
|
||||
return (document.cookie = [
|
||||
encode(key), '=', stringifyCookieValue(value),
|
||||
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
|
||||
options.path ? '; path=' + options.path : '',
|
||||
options.domain ? '; domain=' + options.domain : '',
|
||||
options.secure ? '; secure' : ''
|
||||
].join(''));
|
||||
}
|
||||
|
||||
// Read
|
||||
// Read
|
||||
|
||||
var result = key ? undefined : {};
|
||||
var result = key ? undefined : {};
|
||||
|
||||
// To prevent the for loop in the first place assign an empty array
|
||||
// in case there are no cookies at all. Also prevents odd result when
|
||||
// calling $.cookie().
|
||||
var cookies = document.cookie ? document.cookie.split('; ') : [];
|
||||
// To prevent the for loop in the first place assign an empty array
|
||||
// in case there are no cookies at all. Also prevents odd result when
|
||||
// calling $.cookie().
|
||||
var cookies = document.cookie ? document.cookie.split('; ') : [];
|
||||
|
||||
for (var i = 0, l = cookies.length; i < l; i++) {
|
||||
var parts = cookies[i].split('=');
|
||||
var name = decode(parts.shift());
|
||||
var cookie = parts.join('=');
|
||||
for (var i = 0, l = cookies.length; i < l; i++) {
|
||||
var parts = cookies[i].split('=');
|
||||
var name = decode(parts.shift());
|
||||
var cookie = parts.join('=');
|
||||
|
||||
if (key && key === name) {
|
||||
// If second argument (value) is a function it's a converter...
|
||||
result = read(cookie, value);
|
||||
break;
|
||||
}
|
||||
if (key && key === name) {
|
||||
// If second argument (value) is a function it's a converter...
|
||||
result = read(cookie, value);
|
||||
break;
|
||||
}
|
||||
|
||||
// Prevent storing a cookie that we couldn't decode.
|
||||
if (!key && (cookie = read(cookie)) !== undefined) {
|
||||
result[name] = cookie;
|
||||
}
|
||||
}
|
||||
// Prevent storing a cookie that we couldn't decode.
|
||||
if (!key && (cookie = read(cookie)) !== undefined) {
|
||||
result[name] = cookie;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
};
|
||||
return result;
|
||||
};
|
||||
|
||||
config.defaults = {};
|
||||
config.defaults = {};
|
||||
|
||||
$.removeCookie = function (key, options) {
|
||||
if ($.cookie(key) === undefined) {
|
||||
return false;
|
||||
}
|
||||
$.removeCookie = function (key, options) {
|
||||
if ($.cookie(key) === undefined) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Must not alter options, thus extending a fresh object...
|
||||
$.cookie(key, '', $.extend({}, options, { expires: -1 }));
|
||||
return !$.cookie(key);
|
||||
};
|
||||
// Must not alter options, thus extending a fresh object...
|
||||
$.cookie(key, '', $.extend({}, options, {expires: -1}));
|
||||
return !$.cookie(key);
|
||||
};
|
||||
|
||||
}));
|
||||
|
14
static/plugs/jquery/pcasunzips.js
vendored
14
static/plugs/jquery/pcasunzips.js
vendored
File diff suppressed because one or more lines are too long
2725
think.admin.sql
2725
think.admin.sql
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user