commit fee01f75c090b2eed7ec416c6ae8912a08575a7f Author: JING Date: Fri Jul 12 09:49:31 2024 +0800 初始化 diff --git a/App.vue b/App.vue new file mode 100644 index 0000000..92563fd --- /dev/null +++ b/App.vue @@ -0,0 +1,73 @@ + + + diff --git a/README.md b/README.md new file mode 100644 index 0000000..fe48738 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# kjc_uni2 + diff --git a/config/access/index.js b/config/access/index.js new file mode 100644 index 0000000..ef53214 --- /dev/null +++ b/config/access/index.js @@ -0,0 +1,90 @@ + +var access = { + + getAccess:function(k,userinfo){ + if (userinfo && userinfo.access) { + return userinfo.access.indexOf(k) != -1; + } + return false; + }, + + hasAccess:function(arr,userinfo) { + if (userinfo && userinfo.access) { + return userinfo.access.some(_ => arr.indexOf(_) > -1); + } + return false; + }, + + /** 是否一级商户 */ + isSuperType:function(userinfo){ + if (this.getAccess(1002,userinfo)) { + return userinfo.userType == 2 + } + if (this.getAccess(1003,userinfo) || this.getAccess(1004,userinfo)) { + return userinfo.userType == 1 + } + return false; + }, + /** 是否区级商户 */ + isAreaType:function(userinfo){ + if (this.getAccess(1002,userinfo)) { + return userinfo.userType == 1 + } + if (this.getAccess(1003,userinfo) || this.getAccess(1004,userinfo)) { + return userinfo.userType == 2 + } + return false; + }, + /** 是否员工 */ + isYuangongType:function(userinfo){ + if (this.getAccess(1002,userinfo)) { + return userinfo.userType == 3 + } + if (this.getAccess(1004,userinfo)) { + return userinfo.userType == 4 + } + return false; + }, + /** 是否三级 */ + isThirdType:function(userinfo){ + if (this.getAccess(1004,userinfo)) { + return userinfo.userType == 3 + } + return false; + }, + + + // 判断身份 + checkidentity:function(userinfo) { + var res = {} + if (this.isSuperType(userinfo)) { + res = { + levelTxt: '一级', + levelVal: 1 + } + } else if (this.isAreaType(userinfo)) { + res = { + levelTxt: '二级', + levelVal: 2 + } + } else if (this.isThirdType(userinfo)) { + res = { + levelTxt: '店长', + levelVal: 3 + } + /* } else if (this.isYuangongType(userinfo)) { + res = { + levelTxt: '员工', + levelVal: 3 + } */ + } else { + res = { + levelTxt: '用户', + levelVal: 4 + } + } + return res + } +} + +module.exports = access \ No newline at end of file diff --git a/config/api.js b/config/api.js new file mode 100644 index 0000000..1ef08ae --- /dev/null +++ b/config/api.js @@ -0,0 +1,200 @@ +const md5 = require('./md5.js'); +const ENV = require('./env.js'); +var api = { + + /** + * post 请求数据 + * + * @param string urlName url地址 + * @param {object} data 数据对象 + * @param function thenFun then回调 + * @param function catchFun catch回调 + */ + post:function(urlName, data, thenFun,catchFun) { + //数据组合 + var newData = Object.assign(api.setSign(data), ENV.appData()); + uni.$u.http.post(urlName, newData).then(res => { + if(thenFun) thenFun(res); + }).catch((rs) =>{ + if(catchFun) catchFun(rs); + }); + }, + + /** + * get 请求数据 + * + * @param string urlName url地址 + * @param {object} data 数据对象 + * @param function thenFun then回调 + * @param function catchFun catch回调 + */ + get:function(urlName, data, thenFun,catchFun) { + //数据组合 + var newData = Object.assign(api.setSign(data), ENV.appData()); + uni.$u.http.get(urlName,{params:newData}).then(res => { + if(thenFun) thenFun(res); + }).catch((rs) =>{ + if(catchFun) catchFun(rs); + }); + }, + + /** + * put 请求数据 + * + * @param string urlName url地址 + * @param {object} data 数据对象 + * @param function thenFun then回调 + * @param function catchFun catch回调 + */ + put:function(urlName, data, thenFun,catchFun) { + //数据组合 + var newData = Object.assign(api.setSign(data), ENV.appData()); + uni.$u.http.put(urlName, newData).then(res => { + if(thenFun) thenFun(res); + }).catch((rs) =>{ + if(catchFun) catchFun(rs); + }); + }, + /** + * delete 请求数据 + * + * @param string urlName url地址 + * @param {object} data 数据对象 + * @param function thenFun then回调 + * @param function catchFun catch回调 + */ + delete:function(urlName, data, thenFun,catchFun) { + //数据组合 + var newData = Object.assign(api.setSign(data), ENV.appData()); + uni.$u.http.delete(urlName, newData).then(res => { + if(thenFun) thenFun(res); + }).catch((rs) =>{ + if(catchFun) catchFun(rs); + }); + }, + /** + * upload 请求数据 + * + * @param string urlName url地址 + * @param {object} data 数据对象 {filePath:'',fileType:'image'} + * @param function thenFun then回调 + * @param function catchFun catch回调 + */ + upload:function(urlName, data, thenFun,catchFun){ + var newData = data; + uni.$u.http.upload(urlName, { + params: {}, /* 会加在url上 */ + // #ifdef MP-ALIPAY + fileType: newData.fileType, // 仅支付宝小程序,且必填。image/video/audio + // #endif + filePath: newData.filePath, // 要上传文件资源的路径。 + // 注:如果局部custom与全局custom有同名属性,则后面的属性会覆盖前面的属性,相当于Object.assign(全局,局部) + custom: {auth:true,toast:true,}, // 可以加一些自定义参数,在拦截器等地方使用。比如这里我加了一个auth,可在拦截器里拿到,如果true就传token + name: 'files', // 文件对应的 key , 开发者在服务器端通过这个 key 可以获取到文件二进制内容 + // #ifdef H5 || APP-PLUS + timeout: 60000, // H5(HBuilderX 2.9.9+)、APP(HBuilderX 2.9.9+) + // #endif + header: { + "Content-Type": "multipart/form-data" + }, /* 会与全局header合并,如有同名属性,局部覆盖全局 */ + formData: {}, // HTTP 请求中其他额外的 form data + // 返回当前请求的task, options。请勿在此处修改options。非必填 + getTask: (task, options) => { + task.onProgressUpdate((res) => { + console.log('上传进度' + res.progress); + console.log('已经上传的数据长度' + res.totalBytesSent); + console.log('预期需要上传的数据总长度' + res.totalBytesExpectedToSend); + }); + }, + }).then(res => { + if(thenFun) thenFun(res); + }).catch((rs) =>{ + if(catchFun) catchFun(rs); + }); + }, + + + setSign:function(data) { + const date = parseInt(new Date().getTime() / 1000); + const str = date + 'xingzhi&&2021'; + data.i_app_timestamp = date; + data.i_app_key = md5(str); + //判断登录 openid 和 unionid 的来源 + // #ifdef APP-PLUS + data.i_app_platform = 'APP-PLUS'; + // #endif + + // #ifdef MP + //微信小程序 + // #ifdef MP-WEIXIN + data.i_app_platform = 'MP-WEIXIN'; + // #endif + + //支付宝小程序 + // #ifdef MP-ALIPAY + data.i_app_platform = 'MP-ALIPAY'; + // #endif + + //百度小程序 + // #ifdef MP-BAIDU + data.i_app_platform = 'MP-BAIDU'; + // #endif + + //头条小程序 + // #ifdef MP-TOUTIAO + data.i_app_platform = 'MP-TOUTIAO'; + // #endif + + //QQ小程序 + // #ifdef MP-QQ + data.i_app_platform = 'MP-QQ'; + // #endif + + //360小程序 + // #ifdef MP-360 + data.i_app_platform = 'MP-360'; + // #endif + + + + // #endif + + // #ifdef H5 + data.i_app_platform = 'H5'; + // #endif + //语言包 + data.i_app_lang ='zh'; + //系统 + data.i_app_system = uni.getStorageSync('app_system'); + + //这里是token 如果登录每个接口都需要这个 + const token = uni.getStorageSync('token'); + if(token.length > 0) + { + data.token = token; + } + return data; + }, + /** + * 返回域名 + * + */ + domain:function() { + return ENV.CdnUrl; + }, + /** + * 返回接口地址 + * + */ + api:function() { + return ENV.ApiUrl; + }, + /** + * 返回接口环境 + * + */ + env:function(){ + return ENV.EnvShow; + }, +} +module.exports = api; diff --git a/config/com.js b/config/com.js new file mode 100644 index 0000000..944f5da --- /dev/null +++ b/config/com.js @@ -0,0 +1,268 @@ +const u_check = uni.$u.test; +var com = { + + /**************uview集成********************************/ + /** + * 验证检测 + * + * @param array || obj || ... value 需要验证的值(可以是 array || obj || ... ) + * @param string type 需要验证的类型(可以是 array || obj || ...) + */ + check:function(value,type) + { + switch(type) { + //数组 + case 'array': + return u_check.array(value); + break; + //json字符串 + case 'json': + return u_check.jsonString(value); + break; + //object对象 + case 'object': + return u_check.object(value); + break; + //email 邮箱号 + case 'email': + return u_check.email(value); + break; + //mobile 手机号 + case 'mobile': + return u_check.mobile(value); + break; + //url 地址 + case 'url': + return u_check.url(value); + break; + //empty 是否为空 + case 'empty': + return u_check.isEmpty(value); + break; + //注解 + //总的来说,年月日之间可以用"/"或者"-"分隔(不能用中文分隔),时分秒之间用":"分隔,数值不能超出范围,如月份不能为13,则检验成功,否则失败。 + //date 日期时间 + case 'date': + return u_check.date(value); + break; + //number 是否十进制数值 + case 'number': + return u_check.number(value); + break; + //digits 是否整数 + case 'digits': + return u_check.digits(value); + break; + //idCard 是否身份证号 + case 'id_card': + return u_check.idCard(value); + break; + //是否车牌号 (例:京A88888) + case 'car_no': + return u_check.carNo(value); + break; + //amount 金额字符串 + case 'amount': + return u_check.amount(value); + break; + //zh 是否汉字 + case 'zh': + return u_check.chinese(value); + break; + //en 是否字母 letter + case 'en': + return u_check.letter(value); + break; + //str 是否字母或者数字 + case 'str': + return u_check.enOrNum(value); + break; + default: + return false; + } + }, + //是否为空 + isNull:function(value) + { + if(value != null || value != 'null') + { + return u_check.isEmpty(value); + } + else + { + return true; + } + }, + + /********************反馈信息****************************************************/ + alert: function(info) { + uni.showModal({ + title: '提示', + content: info, + showCancel: false + }); + }, + + alertDo: function(info, callback) { + uni.showModal({ + title: '提示', + content: info, + showCancel: false, + success() { + callback(); + } + }); + }, + confirm: function(info, callback, title) { + uni.showModal({ + title: title ? title : '提示', + content: info, + success: function(res) { + if (res.confirm) { + callback(); + } + } + }); + }, + + // 加载信息,带遮罩 + showLoading: function(title = '', mask = true) { + uni.showLoading({ + title, + mask + }); + }, + + // 隐藏遮罩 + hideLoading:function () { + uni.hideLoading(); + }, + + showSuccess: function(info) { + uni.showToast({ + title: info, + icon: 'success', + duration: 3000 + }); + }, + showError: function(info) { + uni.showToast({ + title: info, + icon: 'none', + duration: 3000 + }); + }, + showSuccessDo: function(info, time, callback) { + uni.showToast({ + title: info, + icon: 'success', + duration: time, + success: function() { + callback(); + } + }); + }, + /******************加减乘除****************************************************/ + /** + * 加法精度计算 + * + * @param {Object} number 数字 + */ + bcadd: function(a, b){ + var c, d, e; + try { + c = a.toString().split(".")[1].length + } catch(f) { + c = 0 + } + try { + d = b.toString().split(".")[1].length + } catch(f) { + d = 0 + } + return e = Math.pow(10, Math.max(c, d)),(this.bcmul(a, e) + this.bcmul(b, e)) / e + }, + + /** + * 减法精度计算 + * + * @param {Object} number 数字 + */ + bcsub: function(a, b){ + var c, d, e; + try { + c = a.toString().split(".")[1].length + } catch(f) { + c = 0 + } + try { + d = b.toString().split(".")[1].length + } catch(f) { + d = 0 + } + return e = Math.pow(10, Math.max(c, d)),(this.bcmul(a, e) - this.bcmul(b, e)) / e + }, + + /** + * 乘法精度计算 + * + * @param {Object} number 数字 + */ + bcmul: function(a, b){ + var c = 0, + d = a.toString(), + e = b.toString(); + try { + c += d.split(".")[1].length + } catch(f) {} + try { + c += e.split(".")[1].length + } catch(f) {} + return Number(d.replace(".", "")) * Number(e.replace(".", "")) / Math.pow(10, c) + }, + + /** + * 除法精度计算 + * + * @param {Object} number 数字 + */ + bcdiv: function(a, b){ + var c, d, e = 0, + f = 0; + try { + e = a.toString().split(".")[1].length + } catch(g) {} + try { + f = b.toString().split(".")[1].length + } catch(g) {} + return c = Number(a.toString().replace(".", "")),d = Number(b.toString().replace(".", "")),this.bcmul(c / d, Math.pow(10, f - e)) + }, + + /** + * 隐藏手机号 + * @param phone string 数值1 + */ + hidephone:function (phone){ + var reg = /^(\d{3})\d{4}(\d{4})$/; + return phone.replace(reg, "$1****$2") + }, + + removeObserver(arr) { + return arr.map((item) => { + if (Array.isArray(item)) return removeObserver(item) + else if (typeof item === 'object') { + const target = {} + for (let key in item) { + if (key !== '__ob__') { + target[key] = item[key] + } + } + return target + } + return item + }) + } + +} + +module.exports = com \ No newline at end of file diff --git a/config/env.js b/config/env.js new file mode 100644 index 0000000..8690491 --- /dev/null +++ b/config/env.js @@ -0,0 +1,34 @@ +//api接口环境配置 +// production正式/development线上测试/local本地开发 +var NowENV = 'development'; +var ENV_API_URL = { + production:'https://netcharge.spacechong.com/', //正式环境 + development:'https://devnetcharge.spacechong.com/', //开发测试环境 + local:'http://192.168.10.123:8901/',//本地调试环境 + +} +//CdnUrl 环境配置[都默认为线上都行] +var ENV_BASE_URL = { + production:'https://netcharge.spacechong.com', //正式环境 + development:'https://netcharge.spacechong.com', //开发测试环境 + local:'https://netcharge.spacechong.com',//本地调试环境 +} + + + +var ENV = { + EnvShow:NowENV,//当前环境 + ApiUrl:ENV_API_URL[NowENV], //正式 + CdnUrl:ENV_BASE_URL[NowENV], //正式 + + appData:function() { + var data = {}; //版本号 + data.i_app_version = '2.1.2'; + return data; + }, + QQmapkey:'2EBBZ-RAL33-TLM3A-3KVVR-V2LMO-3TFQ4', + + +} + +module.exports = ENV \ No newline at end of file diff --git a/config/jssdk.js b/config/jssdk.js new file mode 100644 index 0000000..94706f0 --- /dev/null +++ b/config/jssdk.js @@ -0,0 +1,701 @@ +! function(e, n) { + "function" == typeof define && (define.amd || define.cmd) ? define(function() { + return n(e) + }) : n(e, !0) +}(window, function(o, e) { + if (!o.jWeixin) { + var n, c = { + config: "preVerifyJSAPI", + onMenuShareTimeline: "menu:share:timeline", + onMenuShareAppMessage: "menu:share:appmessage", + onMenuShareQQ: "menu:share:qq", + onMenuShareWeibo: "menu:share:weiboApp", + onMenuShareQZone: "menu:share:QZone", + previewImage: "imagePreview", + getLocation: "geoLocation", + openProductSpecificView: "openProductViewWithPid", + addCard: "batchAddCard", + openCard: "batchViewCard", + chooseWXPay: "getBrandWCPayRequest", + openEnterpriseRedPacket: "getRecevieBizHongBaoRequest", + startSearchBeacons: "startMonitoringBeacons", + stopSearchBeacons: "stopMonitoringBeacons", + onSearchBeacons: "onBeaconsInRange", + consumeAndShareCard: "consumedShareCard", + openAddress: "editAddress" + }, + a = function() { + var e = {}; + for (var n in c) e[c[n]] = n; + return e + }(), + i = o.document, + t = i.title, + r = navigator.userAgent.toLowerCase(), + s = navigator.platform.toLowerCase(), + d = !(!s.match("mac") && !s.match("win")), + u = -1 != r.indexOf("wxdebugger"), + l = -1 != r.indexOf("micromessenger"), + p = -1 != r.indexOf("android"), + f = -1 != r.indexOf("iphone") || -1 != r.indexOf("ipad"), + m = (n = r.match(/micromessenger\/(\d+\.\d+\.\d+)/) || r.match(/micromessenger\/(\d+\.\d+)/)) ? n[1] : "", + g = { + initStartTime: L(), + initEndTime: 0, + preVerifyStartTime: 0, + preVerifyEndTime: 0 + }, + h = { + version: 1, + appId: "", + initTime: 0, + preVerifyTime: 0, + networkType: "", + isPreVerifyOk: 1, + systemType: f ? 1 : p ? 2 : -1, + clientVersion: m, + url: encodeURIComponent(location.href) + }, + v = {}, + S = { + _completes: [] + }, + y = { + state: 0, + data: {} + }; + O(function() { + g.initEndTime = L() + }); + var I = !1, + _ = [], + w = { + config: function(e) { + B("config", v = e); + var t = !1 !== v.check; + O(function() { + if (t) M(c.config, { + verifyJsApiList: C(v.jsApiList), + verifyOpenTagList: C(v.openTagList) + }, function() { + S._complete = function(e) { + g.preVerifyEndTime = L(), y.state = 1, y.data = e + }, S.success = function(e) { + h.isPreVerifyOk = 0 + }, S.fail = function(e) { + S._fail ? S._fail(e) : y.state = -1 + }; + var t = S._completes; + return t.push(function() { + ! function() { + if (!(d || u || v.debug || m < "6.0.2" || h.systemType < 0)) { + var i = new Image; + h.appId = v.appId, h.initTime = g.initEndTime - g.initStartTime, h.preVerifyTime = g.preVerifyEndTime - g.preVerifyStartTime, w.getNetworkType({ + isInnerInvoke: !0, + success: function(e) { + h.networkType = e.networkType; + var n = "https://open.weixin.qq.com/sdk/report?v=" + h.version + "&o=" + h.isPreVerifyOk + "&s=" + h.systemType + "&c=" + h.clientVersion + "&a=" + h.appId + "&n=" + h.networkType + "&i=" + h.initTime + "&p=" + h.preVerifyTime + "&u=" + h.url; + i.src = n + } + }) + } + }() + }), S.complete = function(e) { + for (var n = 0, i = t.length; n < i; ++n) t[n](); + S._completes = [] + }, S + }()), g.preVerifyStartTime = L(); + else { + y.state = 1; + for (var e = S._completes, n = 0, i = e.length; n < i; ++n) e[n](); + S._completes = [] + } + }), w.invoke || (w.invoke = function(e, n, i) { + o.WeixinJSBridge && WeixinJSBridge.invoke(e, x(n), i) + }, w.on = function(e, n) { + o.WeixinJSBridge && WeixinJSBridge.on(e, n) + }) + }, + ready: function(e) { + 0 != y.state ? e() : (S._completes.push(e), !l && v.debug && e()) + }, + error: function(e) { + m < "6.0.2" || (-1 == y.state ? e(y.data) : S._fail = e) + }, + checkJsApi: function(e) { + M("checkJsApi", { + jsApiList: C(e.jsApiList) + }, (e._complete = function(e) { + if (p) { + var n = e.checkResult; + n && (e.checkResult = JSON.parse(n)) + } + e = function(e) { + var n = e.checkResult; + for (var i in n) { + var t = a[i]; + t && (n[t] = n[i], delete n[i]) + } + return e + }(e) + }, e)) + }, + onMenuShareTimeline: function(e) { + P(c.onMenuShareTimeline, { + complete: function() { + M("shareTimeline", { + title: e.title || t, + desc: e.title || t, + img_url: e.imgUrl || "", + link: e.link || location.href, + type: e.type || "link", + data_url: e.dataUrl || "" + }, e) + } + }, e) + }, + onMenuShareAppMessage: function(n) { + P(c.onMenuShareAppMessage, { + complete: function(e) { + "favorite" === e.scene ? M("sendAppMessage", { + title: n.title || t, + desc: n.desc || "", + link: n.link || location.href, + img_url: n.imgUrl || "", + type: n.type || "link", + data_url: n.dataUrl || "" + }) : M("sendAppMessage", { + title: n.title || t, + desc: n.desc || "", + link: n.link || location.href, + img_url: n.imgUrl || "", + type: n.type || "link", + data_url: n.dataUrl || "" + }, n) + } + }, n) + }, + onMenuShareQQ: function(e) { + P(c.onMenuShareQQ, { + complete: function() { + M("shareQQ", { + title: e.title || t, + desc: e.desc || "", + img_url: e.imgUrl || "", + link: e.link || location.href + }, e) + } + }, e) + }, + onMenuShareWeibo: function(e) { + P(c.onMenuShareWeibo, { + complete: function() { + M("shareWeiboApp", { + title: e.title || t, + desc: e.desc || "", + img_url: e.imgUrl || "", + link: e.link || location.href + }, e) + } + }, e) + }, + onMenuShareQZone: function(e) { + P(c.onMenuShareQZone, { + complete: function() { + M("shareQZone", { + title: e.title || t, + desc: e.desc || "", + img_url: e.imgUrl || "", + link: e.link || location.href + }, e) + } + }, e) + }, + updateTimelineShareData: function(e) { + M("updateTimelineShareData", { + title: e.title, + link: e.link, + imgUrl: e.imgUrl + }, e) + }, + updateAppMessageShareData: function(e) { + M("updateAppMessageShareData", { + title: e.title, + desc: e.desc, + link: e.link, + imgUrl: e.imgUrl + }, e) + }, + startRecord: function(e) { + M("startRecord", {}, e) + }, + stopRecord: function(e) { + M("stopRecord", {}, e) + }, + onVoiceRecordEnd: function(e) { + P("onVoiceRecordEnd", e) + }, + playVoice: function(e) { + M("playVoice", { + localId: e.localId + }, e) + }, + pauseVoice: function(e) { + M("pauseVoice", { + localId: e.localId + }, e) + }, + stopVoice: function(e) { + M("stopVoice", { + localId: e.localId + }, e) + }, + onVoicePlayEnd: function(e) { + P("onVoicePlayEnd", e) + }, + uploadVoice: function(e) { + M("uploadVoice", { + localId: e.localId, + isShowProgressTips: 0 == e.isShowProgressTips ? 0 : 1 + }, e) + }, + downloadVoice: function(e) { + M("downloadVoice", { + serverId: e.serverId, + isShowProgressTips: 0 == e.isShowProgressTips ? 0 : 1 + }, e) + }, + translateVoice: function(e) { + M("translateVoice", { + localId: e.localId, + isShowProgressTips: 0 == e.isShowProgressTips ? 0 : 1 + }, e) + }, + chooseImage: function(e) { + M("chooseImage", { + scene: "1|2", + count: e.count || 9, + sizeType: e.sizeType || ["original", "compressed"], + sourceType: e.sourceType || ["album", "camera"] + }, (e._complete = function(e) { + if (p) { + var n = e.localIds; + try { + n && (e.localIds = JSON.parse(n)) + } catch (e) {} + } + }, e)) + }, + getLocation: function(e) {}, + previewImage: function(e) { + M(c.previewImage, { + current: e.current, + urls: e.urls + }, e) + }, + uploadImage: function(e) { + M("uploadImage", { + localId: e.localId, + isShowProgressTips: 0 == e.isShowProgressTips ? 0 : 1 + }, e) + }, + downloadImage: function(e) { + M("downloadImage", { + serverId: e.serverId, + isShowProgressTips: 0 == e.isShowProgressTips ? 0 : 1 + }, e) + }, + getLocalImgData: function(e) { + !1 === I ? (I = !0, M("getLocalImgData", { + localId: e.localId + }, (e._complete = function(e) { + if (I = !1, 0 < _.length) { + var n = _.shift(); + wx.getLocalImgData(n) + } + }, e))) : _.push(e) + }, + getNetworkType: function(e) { + M("getNetworkType", {}, (e._complete = function(e) { + e = function(e) { + var n = e.errMsg; + e.errMsg = "getNetworkType:ok"; + var i = e.subtype; + if (delete e.subtype, i) e.networkType = i; + else { + var t = n.indexOf(":"), + o = n.substring(t + 1); + switch (o) { + case "wifi": + case "edge": + case "wwan": + e.networkType = o; + break; + default: + e.errMsg = "getNetworkType:fail" + } + } + return e + }(e) + }, e)) + }, + openLocation: function(e) { + M("openLocation", { + latitude: e.latitude, + longitude: e.longitude, + name: e.name || "", + address: e.address || "", + scale: e.scale || 28, + infoUrl: e.infoUrl || "" + }, e) + }, + getLocation: function(e) { + M(c.getLocation, { + type: (e = e || {}).type || "wgs84" + }, (e._complete = function(e) { + delete e.type + }, e)) + }, + hideOptionMenu: function(e) { + M("hideOptionMenu", {}, e) + }, + showOptionMenu: function(e) { + M("showOptionMenu", {}, e) + }, + closeWindow: function(e) { + M("closeWindow", {}, e = e || {}) + }, + hideMenuItems: function(e) { + M("hideMenuItems", { + menuList: e.menuList + }, e) + }, + showMenuItems: function(e) { + M("showMenuItems", { + menuList: e.menuList + }, e) + }, + hideAllNonBaseMenuItem: function(e) { + M("hideAllNonBaseMenuItem", {}, e) + }, + showAllNonBaseMenuItem: function(e) { + M("showAllNonBaseMenuItem", {}, e) + }, + scanQRCode: function(e) { + M("scanQRCode", { + needResult: (e = e || {}).needResult || 0, + scanType: e.scanType || ["qrCode", "barCode"] + }, (e._complete = function(e) { + if (f) { + var n = e.resultStr; + if (n) { + var i = JSON.parse(n); + e.resultStr = i && i.scan_code && i.scan_code.scan_result + } + } + }, e)) + }, + openAddress: function(e) { + M(c.openAddress, {}, (e._complete = function(e) { + e = function(e) { + return e.postalCode = e.addressPostalCode, delete e.addressPostalCode, e.provinceName = e.proviceFirstStageName, delete e.proviceFirstStageName, e.cityName = e.addressCitySecondStageName, delete e.addressCitySecondStageName, e.countryName = e.addressCountiesThirdStageName, delete e.addressCountiesThirdStageName, e.detailInfo = e.addressDetailInfo, delete e.addressDetailInfo, e + }(e) + }, e)) + }, + openProductSpecificView: function(e) { + M(c.openProductSpecificView, { + pid: e.productId, + view_type: e.viewType || 0, + ext_info: e.extInfo + }, e) + }, + addCard: function(e) { + for (var n = e.cardList, i = [], t = 0, o = n.length; t < o; ++t) { + var r = n[t], + a = { + card_id: r.cardId, + card_ext: r.cardExt + }; + i.push(a) + } + M(c.addCard, { + card_list: i + }, (e._complete = function(e) { + var n = e.card_list; + if (n) { + for (var i = 0, t = (n = JSON.parse(n)).length; i < t; ++i) { + var o = n[i]; + o.cardId = o.card_id, o.cardExt = o.card_ext, o.isSuccess = !!o.is_succ, delete o.card_id, delete o.card_ext, delete o.is_succ + } + e.cardList = n, delete e.card_list + } + }, e)) + }, + chooseCard: function(e) { + M("chooseCard", { + app_id: v.appId, + location_id: e.shopId || "", + sign_type: e.signType || "SHA1", + card_id: e.cardId || "", + card_type: e.cardType || "", + card_sign: e.cardSign, + time_stamp: e.timestamp + "", + nonce_str: e.nonceStr + }, (e._complete = function(e) { + e.cardList = e.choose_card_info, delete e.choose_card_info + }, e)) + }, + openCard: function(e) { + for (var n = e.cardList, i = [], t = 0, o = n.length; t < o; ++t) { + var r = n[t], + a = { + card_id: r.cardId, + code: r.code + }; + i.push(a) + } + M(c.openCard, { + card_list: i + }, e) + }, + consumeAndShareCard: function(e) { + M(c.consumeAndShareCard, { + consumedCardId: e.cardId, + consumedCode: e.code + }, e) + }, + chooseWXPay: function(e) { + M(c.chooseWXPay, V(e), e) + }, + openEnterpriseRedPacket: function(e) { + M(c.openEnterpriseRedPacket, V(e), e) + }, + startSearchBeacons: function(e) { + M(c.startSearchBeacons, { + ticket: e.ticket + }, e) + }, + stopSearchBeacons: function(e) { + M(c.stopSearchBeacons, {}, e) + }, + onSearchBeacons: function(e) { + P(c.onSearchBeacons, e) + }, + openEnterpriseChat: function(e) { + M("openEnterpriseChat", { + useridlist: e.userIds, + chatname: e.groupName + }, e) + }, + launchMiniProgram: function(e) { + M("launchMiniProgram", { + targetAppId: e.targetAppId, + path: function(e) { + if ("string" == typeof e && 0 < e.length) { + var n = e.split("?")[0], + i = e.split("?")[1]; + return n += ".html", void 0 !== i ? n + "?" + i : n + } + }(e.path), + envVersion: e.envVersion + }, e) + }, + openBusinessView: function(e) { + M("openBusinessView", { + businessType: e.businessType, + queryString: e.queryString || "", + envVersion: e.envVersion + }, (e._complete = function(n) { + if (p) { + var e = n.extraData; + if (e) try { + n.extraData = JSON.parse(e) + } catch (e) { + n.extraData = {} + } + } + }, e)) + }, + miniProgram: { + navigateBack: function(e) { + e = e || {}, O(function() { + M("invokeMiniProgramAPI", { + name: "navigateBack", + arg: { + delta: e.delta || 1 + } + }, e) + }) + }, + navigateTo: function(e) { + O(function() { + M("invokeMiniProgramAPI", { + name: "navigateTo", + arg: { + url: e.url + } + }, e) + }) + }, + redirectTo: function(e) { + O(function() { + M("invokeMiniProgramAPI", { + name: "redirectTo", + arg: { + url: e.url + } + }, e) + }) + }, + switchTab: function(e) { + O(function() { + M("invokeMiniProgramAPI", { + name: "switchTab", + arg: { + url: e.url + } + }, e) + }) + }, + reLaunch: function(e) { + O(function() { + M("invokeMiniProgramAPI", { + name: "reLaunch", + arg: { + url: e.url + } + }, e) + }) + }, + postMessage: function(e) { + O(function() { + M("invokeMiniProgramAPI", { + name: "postMessage", + arg: e.data || {} + }, e) + }) + }, + getEnv: function(e) { + O(function() { + e({ + miniprogram: "miniprogram" === o.__wxjs_environment + }) + }) + } + } + }, + T = 1, + k = {}; + return i.addEventListener("error", function(e) { + if (!p) { + var n = e.target, + i = n.tagName, + t = n.src; + if ("IMG" == i || "VIDEO" == i || "AUDIO" == i || "SOURCE" == i) + if (-1 != t.indexOf("wxlocalresource://")) { + e.preventDefault(), e.stopPropagation(); + var o = n["wx-id"]; + if (o || (o = T++, n["wx-id"] = o), k[o]) return; + k[o] = !0, wx.ready(function() { + wx.getLocalImgData({ + localId: t, + success: function(e) { + n.src = e.localData + } + }) + }) + } + } + }, !0), i.addEventListener("load", function(e) { + if (!p) { + var n = e.target, + i = n.tagName; + n.src; + if ("IMG" == i || "VIDEO" == i || "AUDIO" == i || "SOURCE" == i) { + var t = n["wx-id"]; + t && (k[t] = !1) + } + } + }, !0), e && (o.wx = o.jWeixin = w), w + } + + function M(n, e, i) { + o.WeixinJSBridge ? WeixinJSBridge.invoke(n, x(e), function(e) { + A(n, e, i) + }) : B(n, i) + } + + function P(n, i, t) { + o.WeixinJSBridge ? WeixinJSBridge.on(n, function(e) { + t && t.trigger && t.trigger(e), A(n, e, i) + }) : B(n, t || i) + } + + function x(e) { + return (e = e || {}).appId = v.appId, e.verifyAppId = v.appId, e.verifySignType = "sha1", e.verifyTimestamp = v.timestamp + "", e.verifyNonceStr = v.nonceStr, e.verifySignature = v.signature, e + } + + function V(e) { + return { + timeStamp: e.timestamp + "", + nonceStr: e.nonceStr, + package: e.package, + paySign: e.paySign, + signType: e.signType || "SHA1" + } + } + + function A(e, n, i) { + "openEnterpriseChat" != e && "openBusinessView" !== e || (n.errCode = n.err_code), delete n.err_code, delete n.err_desc, delete n.err_detail; + var t = n.errMsg; + t || (t = n.err_msg, delete n.err_msg, t = function(e, n) { + var i = e, + t = a[i]; + t && (i = t); + var o = "ok"; + if (n) { + var r = n.indexOf(":"); + "confirm" == (o = n.substring(r + 1)) && (o = "ok"), "failed" == o && (o = "fail"), -1 != o.indexOf("failed_") && (o = o.substring(7)), -1 != o.indexOf("fail_") && (o = o.substring(5)), "access denied" != (o = (o = o.replace(/_/g, " ")).toLowerCase()) && "no permission to execute" != o || (o = "permission denied"), "config" == i && "function not exist" == o && (o = "ok"), "" == o && (o = "fail") + } + return n = i + ":" + o + }(e, t), n.errMsg = t), (i = i || {})._complete && (i._complete(n), delete i._complete), t = n.errMsg || "", v.debug && !i.isInnerInvoke && alert(JSON.stringify(n)); + var o = t.indexOf(":"); + switch (t.substring(o + 1)) { + case "ok": + i.success && i.success(n); + break; + case "cancel": + i.cancel && i.cancel(n); + break; + default: + i.fail && i.fail(n) + } + i.complete && i.complete(n) + } + + function C(e) { + if (e) { + for (var n = 0, i = e.length; n < i; ++n) { + var t = e[n], + o = c[t]; + o && (e[n] = o) + } + return e + } + } + + function B(e, n) { + if (!(!v.debug || n && n.isInnerInvoke)) { + var i = a[e]; + i && (e = i), n && n._complete && delete n._complete, console.log('"' + e + '",', n || "") + } + } + + function L() { + return (new Date).getTime() + } + + function O(e) { + l && (o.WeixinJSBridge ? e() : i.addEventListener && i.addEventListener("WeixinJSBridgeReady", e, !1)) + } +}); \ No newline at end of file diff --git a/config/map/amap-wx.130.js b/config/map/amap-wx.130.js new file mode 100644 index 0000000..718d6ef --- /dev/null +++ b/config/map/amap-wx.130.js @@ -0,0 +1,31 @@ +function AMapWX(a){this.key=a.key;this.requestConfig={key:a.key,s:"rsx",platform:"WXJS",appname:a.key,sdkversion:"1.2.0",logversion:"2.0"};this.MeRequestConfig={key:a.key,serviceName:"https://restapi.amap.com/rest/me"}} +AMapWX.prototype.getWxLocation=function(a,b){wx.getLocation({type:"gcj02",success:function(c){c=c.longitude+","+c.latitude;wx.setStorage({key:"userLocation",data:c});b(c)},fail:function(c){wx.getStorage({key:"userLocation",success:function(d){d.data&&b(d.data)}});a.fail({errCode:"0",errMsg:c.errMsg||""})}})}; +AMapWX.prototype.getMEKeywordsSearch=function(a){if(!a.options)return a.fail({errCode:"0",errMsg:"\u7f3a\u5c11\u5fc5\u8981\u53c2\u6570"});var b=a.options,c=this.MeRequestConfig,d={key:c.key,s:"rsx",platform:"WXJS",appname:a.key,sdkversion:"1.2.0",logversion:"2.0"};b.layerId&&(d.layerId=b.layerId);b.keywords&&(d.keywords=b.keywords);b.city&&(d.city=b.city);b.filter&&(d.filter=b.filter);b.sortrule&&(d.sortrule=b.sortrule);b.pageNum&&(d.pageNum=b.pageNum);b.pageSize&&(d.pageSize=b.pageSize);b.sig&&(d.sig= +b.sig);wx.request({url:c.serviceName+"/cpoint/datasearch/local",data:d,method:"GET",header:{"content-type":"application/json"},success:function(e){(e=e.data)&&e.status&&"1"===e.status&&0===e.code?a.success(e.data):a.fail({errCode:"0",errMsg:e})},fail:function(e){a.fail({errCode:"0",errMsg:e.errMsg||""})}})}; +AMapWX.prototype.getMEIdSearch=function(a){if(!a.options)return a.fail({errCode:"0",errMsg:"\u7f3a\u5c11\u5fc5\u8981\u53c2\u6570"});var b=a.options,c=this.MeRequestConfig,d={key:c.key,s:"rsx",platform:"WXJS",appname:a.key,sdkversion:"1.2.0",logversion:"2.0"};b.layerId&&(d.layerId=b.layerId);b.id&&(d.id=b.id);b.sig&&(d.sig=b.sig);wx.request({url:c.serviceName+"/cpoint/datasearch/id",data:d,method:"GET",header:{"content-type":"application/json"},success:function(e){(e=e.data)&&e.status&&"1"===e.status&& +0===e.code?a.success(e.data):a.fail({errCode:"0",errMsg:e})},fail:function(e){a.fail({errCode:"0",errMsg:e.errMsg||""})}})}; +AMapWX.prototype.getMEPolygonSearch=function(a){if(!a.options)return a.fail({errCode:"0",errMsg:"\u7f3a\u5c11\u5fc5\u8981\u53c2\u6570"});var b=a.options,c=this.MeRequestConfig,d={key:c.key,s:"rsx",platform:"WXJS",appname:a.key,sdkversion:"1.2.0",logversion:"2.0"};b.layerId&&(d.layerId=b.layerId);b.keywords&&(d.keywords=b.keywords);b.polygon&&(d.polygon=b.polygon);b.filter&&(d.filter=b.filter);b.sortrule&&(d.sortrule=b.sortrule);b.pageNum&&(d.pageNum=b.pageNum);b.pageSize&&(d.pageSize=b.pageSize); +b.sig&&(d.sig=b.sig);wx.request({url:c.serviceName+"/cpoint/datasearch/polygon",data:d,method:"GET",header:{"content-type":"application/json"},success:function(e){(e=e.data)&&e.status&&"1"===e.status&&0===e.code?a.success(e.data):a.fail({errCode:"0",errMsg:e})},fail:function(e){a.fail({errCode:"0",errMsg:e.errMsg||""})}})}; +AMapWX.prototype.getMEaroundSearch=function(a){if(!a.options)return a.fail({errCode:"0",errMsg:"\u7f3a\u5c11\u5fc5\u8981\u53c2\u6570"});var b=a.options,c=this.MeRequestConfig,d={key:c.key,s:"rsx",platform:"WXJS",appname:a.key,sdkversion:"1.2.0",logversion:"2.0"};b.layerId&&(d.layerId=b.layerId);b.keywords&&(d.keywords=b.keywords);b.center&&(d.center=b.center);b.radius&&(d.radius=b.radius);b.filter&&(d.filter=b.filter);b.sortrule&&(d.sortrule=b.sortrule);b.pageNum&&(d.pageNum=b.pageNum);b.pageSize&& +(d.pageSize=b.pageSize);b.sig&&(d.sig=b.sig);wx.request({url:c.serviceName+"/cpoint/datasearch/around",data:d,method:"GET",header:{"content-type":"application/json"},success:function(e){(e=e.data)&&e.status&&"1"===e.status&&0===e.code?a.success(e.data):a.fail({errCode:"0",errMsg:e})},fail:function(e){a.fail({errCode:"0",errMsg:e.errMsg||""})}})}; +AMapWX.prototype.getGeo=function(a){var b=this.requestConfig,c=a.options;b={key:this.key,extensions:"all",s:b.s,platform:b.platform,appname:this.key,sdkversion:b.sdkversion,logversion:b.logversion};c.address&&(b.address=c.address);c.city&&(b.city=c.city);c.batch&&(b.batch=c.batch);c.sig&&(b.sig=c.sig);wx.request({url:"https://restapi.amap.com/v3/geocode/geo",data:b,method:"GET",header:{"content-type":"application/json"},success:function(d){(d=d.data)&&d.status&&"1"===d.status?a.success(d):a.fail({errCode:"0", +errMsg:d})},fail:function(d){a.fail({errCode:"0",errMsg:d.errMsg||""})}})}; +AMapWX.prototype.getRegeo=function(a){function b(d){var e=c.requestConfig;wx.request({url:"https://restapi.amap.com/v3/geocode/regeo",data:{key:c.key,location:d,extensions:"all",s:e.s,platform:e.platform,appname:c.key,sdkversion:e.sdkversion,logversion:e.logversion},method:"GET",header:{"content-type":"application/json"},success:function(g){if(g.data.status&&"1"==g.data.status){g=g.data.regeocode;var h=g.addressComponent,f=[],k=g.roads[0].name+"\u9644\u8fd1",m=d.split(",")[0],n=d.split(",")[1];if(g.pois&& +g.pois[0]){k=g.pois[0].name+"\u9644\u8fd1";var l=g.pois[0].location;l&&(m=parseFloat(l.split(",")[0]),n=parseFloat(l.split(",")[1]))}h.provice&&f.push(h.provice);h.city&&f.push(h.city);h.district&&f.push(h.district);h.streetNumber&&h.streetNumber.street&&h.streetNumber.number?(f.push(h.streetNumber.street),f.push(h.streetNumber.number)):f.push(g.roads[0].name);f=f.join("");a.success([{iconPath:a.iconPath,width:a.iconWidth,height:a.iconHeight,name:f,desc:k,longitude:m,latitude:n,id:0,regeocodeData:g}])}else a.fail({errCode:g.data.infocode, +errMsg:g.data.info})},fail:function(g){a.fail({errCode:"0",errMsg:g.errMsg||""})}})}var c=this;a.location?b(a.location):c.getWxLocation(a,function(d){b(d)})}; +AMapWX.prototype.getWeather=function(a){function b(g){var h="base";a.type&&"forecast"==a.type&&(h="all");wx.request({url:"https://restapi.amap.com/v3/weather/weatherInfo",data:{key:d.key,city:g,extensions:h,s:e.s,platform:e.platform,appname:d.key,sdkversion:e.sdkversion,logversion:e.logversion},method:"GET",header:{"content-type":"application/json"},success:function(f){if(f.data.status&&"1"==f.data.status)if(f.data.lives){if((f=f.data.lives)&&0> 16) + (y >> 16) + (lsw >> 16); + return (msw << 16) | (lsw & 0xffff); + }, + bitRotateLeft(num, cnt) { + return (num << cnt) | (num >>> (32 - cnt)); + }, + md5cmn(q, a, b, x, s, t) { + return this.safeAdd(this.bitRotateLeft(this.safeAdd(this.safeAdd(a, q), this.safeAdd(x, t)), s), b); + }, + md5ff(a, b, c, d, x, s, t) { + return this.md5cmn((b & c) | (~b & d), a, b, x, s, t); + }, + md5gg(a, b, c, d, x, s, t) { + return this.md5cmn((b & d) | (c & ~d), a, b, x, s, t); + }, + md5hh(a, b, c, d, x, s, t) { + return this.md5cmn(b ^ c ^ d, a, b, x, s, t); + }, + md5ii(a, b, c, d, x, s, t) { + return this.md5cmn(c ^ (b | ~d), a, b, x, s, t); + }, + binlMD5(x, len) { + /* append padding */ + x[len >> 5] |= 0x80 << (len % 32); + x[((len + 64) >>> 9 << 4) + 14] = len; + + var i; + var olda; + var oldb; + var oldc; + var oldd; + var a = 1732584193; + var b = -271733879; + var c = -1732584194; + var d = 271733878; + + for (i = 0; i < x.length; i += 16) { + olda = a; + oldb = b; + oldc = c; + oldd = d; + + a = this.md5ff(a, b, c, d, x[i], 7, -680876936); + d = this.md5ff(d, a, b, c, x[i + 1], 12, -389564586); + c = this.md5ff(c, d, a, b, x[i + 2], 17, 606105819); + b = this.md5ff(b, c, d, a, x[i + 3], 22, -1044525330); + a = this.md5ff(a, b, c, d, x[i + 4], 7, -176418897); + d = this.md5ff(d, a, b, c, x[i + 5], 12, 1200080426); + c = this.md5ff(c, d, a, b, x[i + 6], 17, -1473231341); + b = this.md5ff(b, c, d, a, x[i + 7], 22, -45705983); + a = this.md5ff(a, b, c, d, x[i + 8], 7, 1770035416); + d = this.md5ff(d, a, b, c, x[i + 9], 12, -1958414417); + c = this.md5ff(c, d, a, b, x[i + 10], 17, -42063); + b = this.md5ff(b, c, d, a, x[i + 11], 22, -1990404162); + a = this.md5ff(a, b, c, d, x[i + 12], 7, 1804603682); + d = this.md5ff(d, a, b, c, x[i + 13], 12, -40341101); + c = this.md5ff(c, d, a, b, x[i + 14], 17, -1502002290); + b = this.md5ff(b, c, d, a, x[i + 15], 22, 1236535329); + + a = this.md5gg(a, b, c, d, x[i + 1], 5, -165796510); + d = this.md5gg(d, a, b, c, x[i + 6], 9, -1069501632); + c = this.md5gg(c, d, a, b, x[i + 11], 14, 643717713); + b = this.md5gg(b, c, d, a, x[i], 20, -373897302); + a = this.md5gg(a, b, c, d, x[i + 5], 5, -701558691); + d = this.md5gg(d, a, b, c, x[i + 10], 9, 38016083); + c = this.md5gg(c, d, a, b, x[i + 15], 14, -660478335); + b = this.md5gg(b, c, d, a, x[i + 4], 20, -405537848); + a = this.md5gg(a, b, c, d, x[i + 9], 5, 568446438); + d = this.md5gg(d, a, b, c, x[i + 14], 9, -1019803690); + c = this.md5gg(c, d, a, b, x[i + 3], 14, -187363961); + b = this.md5gg(b, c, d, a, x[i + 8], 20, 1163531501); + a = this.md5gg(a, b, c, d, x[i + 13], 5, -1444681467); + d = this.md5gg(d, a, b, c, x[i + 2], 9, -51403784); + c = this.md5gg(c, d, a, b, x[i + 7], 14, 1735328473); + b = this.md5gg(b, c, d, a, x[i + 12], 20, -1926607734); + + a = this.md5hh(a, b, c, d, x[i + 5], 4, -378558); + d = this.md5hh(d, a, b, c, x[i + 8], 11, -2022574463); + c = this.md5hh(c, d, a, b, x[i + 11], 16, 1839030562); + b = this.md5hh(b, c, d, a, x[i + 14], 23, -35309556); + a = this.md5hh(a, b, c, d, x[i + 1], 4, -1530992060); + d = this.md5hh(d, a, b, c, x[i + 4], 11, 1272893353); + c = this.md5hh(c, d, a, b, x[i + 7], 16, -155497632); + b = this.md5hh(b, c, d, a, x[i + 10], 23, -1094730640); + a = this.md5hh(a, b, c, d, x[i + 13], 4, 681279174); + d = this.md5hh(d, a, b, c, x[i], 11, -358537222); + c = this.md5hh(c, d, a, b, x[i + 3], 16, -722521979); + b = this.md5hh(b, c, d, a, x[i + 6], 23, 76029189); + a = this.md5hh(a, b, c, d, x[i + 9], 4, -640364487); + d = this.md5hh(d, a, b, c, x[i + 12], 11, -421815835); + c = this.md5hh(c, d, a, b, x[i + 15], 16, 530742520); + b = this.md5hh(b, c, d, a, x[i + 2], 23, -995338651); + + a = this.md5ii(a, b, c, d, x[i], 6, -198630844); + d = this.md5ii(d, a, b, c, x[i + 7], 10, 1126891415); + c = this.md5ii(c, d, a, b, x[i + 14], 15, -1416354905); + b = this.md5ii(b, c, d, a, x[i + 5], 21, -57434055); + a = this.md5ii(a, b, c, d, x[i + 12], 6, 1700485571); + d = this.md5ii(d, a, b, c, x[i + 3], 10, -1894986606); + c = this.md5ii(c, d, a, b, x[i + 10], 15, -1051523); + b = this.md5ii(b, c, d, a, x[i + 1], 21, -2054922799); + a = this.md5ii(a, b, c, d, x[i + 8], 6, 1873313359); + d = this.md5ii(d, a, b, c, x[i + 15], 10, -30611744); + c = this.md5ii(c, d, a, b, x[i + 6], 15, -1560198380); + b = this.md5ii(b, c, d, a, x[i + 13], 21, 1309151649); + a = this.md5ii(a, b, c, d, x[i + 4], 6, -145523070); + d = this.md5ii(d, a, b, c, x[i + 11], 10, -1120210379); + c = this.md5ii(c, d, a, b, x[i + 2], 15, 718787259); + b = this.md5ii(b, c, d, a, x[i + 9], 21, -343485551); + + a = this.safeAdd(a, olda); + b = this.safeAdd(b, oldb); + c = this.safeAdd(c, oldc); + d = this.safeAdd(d, oldd); + } + return [a, b, c, d]; + }, + binl2rstr(input) { + var i; + var output = ''; + var length32 = input.length * 32; + for (i = 0; i < length32; i += 8) { + output += String.fromCharCode((input[i >> 5] >>> (i % 32)) & 0xff); + } + return output; + }, + rstr2binl(input) { + var i; + var output = []; + output[(input.length >> 2) - 1] = undefined; + for (i = 0; i < output.length; i += 1) { + output[i] = 0; + } + var length8 = input.length * 8; + for (i = 0; i < length8; i += 8) { + output[i >> 5] |= (input.charCodeAt(i / 8) & 0xff) << (i % 32); + } + return output; + }, + rstrMD5(s) { + return this.binl2rstr(this.binlMD5(this.rstr2binl(s), s.length * 8)); + }, + rstrHMACMD5(key, data) { + var i; + var bkey = this.rstr2binl(key); + var ipad = []; + var opad = []; + var hash; + ipad[15] = opad[15] = undefined; + if (bkey.length > 16) { + bkey = this.binlMD5(bkey, key.length * 8); + } + for (i = 0; i < 16; i += 1) { + ipad[i] = bkey[i] ^ 0x36363636; + opad[i] = bkey[i] ^ 0x5c5c5c5c; + } + hash = this.binlMD5(ipad.concat(this.rstr2binl(data)), 512 + data.length * 8); + return this.binl2rstr(this.binlMD5(opad.concat(hash), 512 + 128)); + }, + rstr2hex(input) { + var hexTab = '0123456789abcdef'; + var output = ''; + var x; + var i; + for (i = 0; i < input.length; i += 1) { + x = input.charCodeAt(i); + output += hexTab.charAt((x >>> 4) & 0x0f) + hexTab.charAt(x & 0x0f); + } + return output; + }, + str2rstrUTF8(input) { + return unescape(encodeURIComponent(input)); + }, + rawMD5(s) { + return this.rstrMD5(this.str2rstrUTF8(s)); + }, + hexMD5(s) { + return this.rstr2hex(this.rawMD5(s)); + }, + rawHMACMD5(k, d) { + return this.rstrHMACMD5(this.str2rstrUTF8(k), str2rstrUTF8(d)); + }, + hexHMACMD5(k, d) { + return this.rstr2hex(this.rawHMACMD5(k, d)); + }, + + md5(string, key, raw) { + if (!key) { + if (!raw) { + return this.hexMD5(string); + } + return this.rawMD5(string); + } + if (!raw) { + return this.hexHMACMD5(key, string); + } + return this.rawHMACMD5(key, string); + }, + /** + * 得到md5加密后的sig参数 + * @param {Object} requestParam 接口参数 + * @param {String} sk签名字符串 + * @param {String} featrue 方法名 + * @return 返回加密后的sig参数 + */ + getSig(requestParam, sk, feature, mode) { + var sig = null; + var requestArr = []; + Object.keys(requestParam).sort().forEach(function(key){ + requestArr.push(key + '=' + requestParam[key]); + }); + if (feature == 'search') { + sig = '/ws/place/v1/search?' + requestArr.join('&') + sk; + } + if (feature == 'suggest') { + sig = '/ws/place/v1/suggestion?' + requestArr.join('&') + sk; + } + if (feature == 'reverseGeocoder') { + sig = '/ws/geocoder/v1/?' + requestArr.join('&') + sk; + } + if (feature == 'geocoder') { + sig = '/ws/geocoder/v1/?' + requestArr.join('&') + sk; + } + if (feature == 'getCityList') { + sig = '/ws/district/v1/list?' + requestArr.join('&') + sk; + } + if (feature == 'getDistrictByCityId') { + sig = '/ws/district/v1/getchildren?' + requestArr.join('&') + sk; + } + if (feature == 'calculateDistance') { + sig = '/ws/distance/v1/?' + requestArr.join('&') + sk; + } + if (feature == 'direction') { + sig = '/ws/direction/v1/' + mode + '?' + requestArr.join('&') + sk; + } + sig = this.md5(sig); + return sig; + }, + /** + * 得到终点query字符串 + * @param {Array|String} 检索数据 + */ + location2query(data) { + if (typeof data == 'string') { + return data; + } + var query = ''; + for (var i = 0; i < data.length; i++) { + var d = data[i]; + if (!!query) { + query += ';'; + } + if (d.location) { + query = query + d.location.lat + ',' + d.location.lng; + } + if (d.latitude && d.longitude) { + query = query + d.latitude + ',' + d.longitude; + } + } + return query; + }, + + /** + * 计算角度 + */ + rad(d) { + return d * Math.PI / 180.0; + }, + /** + * 处理终点location数组 + * @return 返回终点数组 + */ + getEndLocation(location){ + var to = location.split(';'); + var endLocation = []; + for (var i = 0; i < to.length; i++) { + endLocation.push({ + lat: parseFloat(to[i].split(',')[0]), + lng: parseFloat(to[i].split(',')[1]) + }) + } + return endLocation; + }, + + /** + * 计算两点间直线距离 + * @param a 表示纬度差 + * @param b 表示经度差 + * @return 返回的是距离,单位m + */ + getDistance(latFrom, lngFrom, latTo, lngTo) { + var radLatFrom = this.rad(latFrom); + var radLatTo = this.rad(latTo); + var a = radLatFrom - radLatTo; + var b = this.rad(lngFrom) - this.rad(lngTo); + var distance = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(radLatFrom) * Math.cos(radLatTo) * Math.pow(Math.sin(b / 2), 2))); + distance = distance * EARTH_RADIUS; + distance = Math.round(distance * 10000) / 10000; + return parseFloat(distance.toFixed(0)); + }, + /** + * 使用微信接口进行定位 + */ + getWXLocation(success, fail, complete) { + wx.getLocation({ + type: 'gcj02', + success: success, + fail: fail, + complete: complete + }); + }, + + /** + * 获取location参数 + */ + getLocationParam(location) { + if (typeof location == 'string') { + var locationArr = location.split(','); + if (locationArr.length === 2) { + location = { + latitude: location.split(',')[0], + longitude: location.split(',')[1] + }; + } else { + location = {}; + } + } + return location; + }, + + /** + * 回调函数默认处理 + */ + polyfillParam(param) { + param.success = param.success || function () { }; + param.fail = param.fail || function () { }; + param.complete = param.complete || function () { }; + }, + + /** + * 验证param对应的key值是否为空 + * + * @param {Object} param 接口参数 + * @param {String} key 对应参数的key + */ + checkParamKeyEmpty(param, key) { + if (!param[key]) { + var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + key +'参数格式有误'); + param.fail(errconf); + param.complete(errconf); + return true; + } + return false; + }, + + /** + * 验证参数中是否存在检索词keyword + * + * @param {Object} param 接口参数 + */ + checkKeyword(param){ + return !this.checkParamKeyEmpty(param, 'keyword'); + }, + + /** + * 验证location值 + * + * @param {Object} param 接口参数 + */ + checkLocation(param) { + var location = this.getLocationParam(param.location); + if (!location || !location.latitude || !location.longitude) { + var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + ' location参数格式有误'); + param.fail(errconf); + param.complete(errconf); + return false; + } + return true; + }, + + /** + * 构造错误数据结构 + * @param {Number} errCode 错误码 + * @param {Number} errMsg 错误描述 + */ + buildErrorConfig(errCode, errMsg) { + return { + status: errCode, + message: errMsg + }; + }, + + /** + * + * 数据处理函数 + * 根据传入参数不同处理不同数据 + * @param {String} feature 功能名称 + * search 地点搜索 + * suggest关键词提示 + * reverseGeocoder逆地址解析 + * geocoder地址解析 + * getCityList获取城市列表:父集 + * getDistrictByCityId获取区县列表:子集 + * calculateDistance距离计算 + * @param {Object} param 接口参数 + * @param {Object} data 数据 + */ + handleData(param,data,feature){ + if (feature == 'search') { + var searchResult = data.data; + var searchSimplify = []; + for (var i = 0; i < searchResult.length; i++) { + searchSimplify.push({ + id: searchResult[i].id || null, + title: searchResult[i].title || null, + latitude: searchResult[i].location && searchResult[i].location.lat || null, + longitude: searchResult[i].location && searchResult[i].location.lng || null, + address: searchResult[i].address || null, + category: searchResult[i].category || null, + tel: searchResult[i].tel || null, + adcode: searchResult[i].ad_info && searchResult[i].ad_info.adcode || null, + city: searchResult[i].ad_info && searchResult[i].ad_info.city || null, + district: searchResult[i].ad_info && searchResult[i].ad_info.district || null, + province: searchResult[i].ad_info && searchResult[i].ad_info.province || null + }) + } + param.success(data, { + searchResult: searchResult, + searchSimplify: searchSimplify + }) + } else if (feature == 'suggest') { + var suggestResult = data.data; + var suggestSimplify = []; + for (var i = 0; i < suggestResult.length; i++) { + suggestSimplify.push({ + adcode: suggestResult[i].adcode || null, + address: suggestResult[i].address || null, + category: suggestResult[i].category || null, + city: suggestResult[i].city || null, + district: suggestResult[i].district || null, + id: suggestResult[i].id || null, + latitude: suggestResult[i].location && suggestResult[i].location.lat || null, + longitude: suggestResult[i].location && suggestResult[i].location.lng || null, + province: suggestResult[i].province || null, + title: suggestResult[i].title || null, + type: suggestResult[i].type || null + }) + } + param.success(data, { + suggestResult: suggestResult, + suggestSimplify: suggestSimplify + }) + } else if (feature == 'reverseGeocoder') { + var reverseGeocoderResult = data.result; + var reverseGeocoderSimplify = { + address: reverseGeocoderResult.address || null, + latitude: reverseGeocoderResult.location && reverseGeocoderResult.location.lat || null, + longitude: reverseGeocoderResult.location && reverseGeocoderResult.location.lng || null, + adcode: reverseGeocoderResult.ad_info && reverseGeocoderResult.ad_info.adcode || null, + city: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.city || null, + district: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.district || null, + nation: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.nation || null, + province: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.province || null, + street: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.street || null, + street_number: reverseGeocoderResult.address_component && reverseGeocoderResult.address_component.street_number || null, + recommend: reverseGeocoderResult.formatted_addresses && reverseGeocoderResult.formatted_addresses.recommend || null, + rough: reverseGeocoderResult.formatted_addresses && reverseGeocoderResult.formatted_addresses.rough || null + }; + if (reverseGeocoderResult.pois) {//判断是否返回周边poi + var pois = reverseGeocoderResult.pois; + var poisSimplify = []; + for (var i = 0;i < pois.length;i++) { + poisSimplify.push({ + id: pois[i].id || null, + title: pois[i].title || null, + latitude: pois[i].location && pois[i].location.lat || null, + longitude: pois[i].location && pois[i].location.lng || null, + address: pois[i].address || null, + category: pois[i].category || null, + adcode: pois[i].ad_info && pois[i].ad_info.adcode || null, + city: pois[i].ad_info && pois[i].ad_info.city || null, + district: pois[i].ad_info && pois[i].ad_info.district || null, + province: pois[i].ad_info && pois[i].ad_info.province || null + }) + } + param.success(data,{ + reverseGeocoderResult: reverseGeocoderResult, + reverseGeocoderSimplify: reverseGeocoderSimplify, + pois: pois, + poisSimplify: poisSimplify + }) + } else { + param.success(data, { + reverseGeocoderResult: reverseGeocoderResult, + reverseGeocoderSimplify: reverseGeocoderSimplify + }) + } + } else if (feature == 'geocoder') { + var geocoderResult = data.result; + var geocoderSimplify = { + title: geocoderResult.title || null, + latitude: geocoderResult.location && geocoderResult.location.lat || null, + longitude: geocoderResult.location && geocoderResult.location.lng || null, + adcode: geocoderResult.ad_info && geocoderResult.ad_info.adcode || null, + province: geocoderResult.address_components && geocoderResult.address_components.province || null, + city: geocoderResult.address_components && geocoderResult.address_components.city || null, + district: geocoderResult.address_components && geocoderResult.address_components.district || null, + street: geocoderResult.address_components && geocoderResult.address_components.street || null, + street_number: geocoderResult.address_components && geocoderResult.address_components.street_number || null, + level: geocoderResult.level || null + }; + param.success(data,{ + geocoderResult: geocoderResult, + geocoderSimplify: geocoderSimplify + }); + } else if (feature == 'getCityList') { + var provinceResult = data.result[0]; + var cityResult = data.result[1]; + var districtResult = data.result[2]; + param.success(data,{ + provinceResult: provinceResult, + cityResult: cityResult, + districtResult: districtResult + }); + } else if (feature == 'getDistrictByCityId') { + var districtByCity = data.result[0]; + param.success(data, districtByCity); + } else if (feature == 'calculateDistance') { + var calculateDistanceResult = data.result.elements; + var distance = []; + for (var i = 0; i < calculateDistanceResult.length; i++){ + distance.push(calculateDistanceResult[i].distance); + } + param.success(data, { + calculateDistanceResult: calculateDistanceResult, + distance: distance + }); + } else if (feature == 'direction') { + var direction = data.result.routes; + param.success(data,direction); + } else { + param.success(data); + } + }, + + /** + * 构造微信请求参数,公共属性处理 + * + * @param {Object} param 接口参数 + * @param {Object} param 配置项 + * @param {String} feature 方法名 + */ + buildWxRequestConfig(param, options, feature) { + var that = this; + options.header = { "content-type": "application/json" }; + options.method = 'GET'; + options.success = function (res) { + var data = res.data; + if (data.status === 0) { + that.handleData(param, data, feature); + } else { + param.fail(data); + } + }; + options.fail = function (res) { + res.statusCode = ERROR_CONF.WX_ERR_CODE; + param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg)); + }; + options.complete = function (res) { + var statusCode = +res.statusCode; + switch(statusCode) { + case ERROR_CONF.WX_ERR_CODE: { + param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg)); + break; + } + case ERROR_CONF.WX_OK_CODE: { + var data = res.data; + if (data.status === 0) { + param.complete(data); + } else { + param.complete(that.buildErrorConfig(data.status, data.message)); + } + break; + } + default:{ + param.complete(that.buildErrorConfig(ERROR_CONF.SYSTEM_ERR, ERROR_CONF.SYSTEM_ERR_MSG)); + } + + } + }; + return options; + }, + + /** + * 处理用户参数是否传入坐标进行不同的处理 + */ + locationProcess(param, locationsuccess, locationfail, locationcomplete) { + var that = this; + locationfail = locationfail || function (res) { + res.statusCode = ERROR_CONF.WX_ERR_CODE; + param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg)); + }; + locationcomplete = locationcomplete || function (res) { + if (res.statusCode == ERROR_CONF.WX_ERR_CODE) { + param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg)); + } + }; + if (!param.location) { + that.getWXLocation(locationsuccess, locationfail, locationcomplete); + } else if (that.checkLocation(param)) { + var location = Utils.getLocationParam(param.location); + locationsuccess(location); + } + } +}; + + +class QQMapWX { + + /** + * 构造函数 + * + * @param {Object} options 接口参数,key 为必选参数 + */ + constructor(options) { + if (!options.key) { + throw Error('key值不能为空'); + } + this.key = options.key; + }; + + /** + * POI周边检索 + * + * @param {Object} options 接口参数对象 + * + * 参数对象结构可以参考 + * @see http://lbs.qq.com/webservice_v1/guide-search.html + */ + search(options) { + var that = this; + options = options || {}; + + Utils.polyfillParam(options); + + if (!Utils.checkKeyword(options)) { + return; + } + + var requestParam = { + keyword: options.keyword, + orderby: options.orderby || '_distance', + page_size: options.page_size || 10, + page_index: options.page_index || 1, + output: 'json', + key: that.key + }; + + if (options.address_format) { + requestParam.address_format = options.address_format; + } + + if (options.filter) { + requestParam.filter = options.filter; + } + + var distance = options.distance || "1000"; + var auto_extend = options.auto_extend || 1; + var region = null; + var rectangle = null; + + //判断城市限定参数 + if (options.region) { + region = options.region; + } + + //矩形限定坐标(暂时只支持字符串格式) + if (options.rectangle) { + rectangle = options.rectangle; + } + + var locationsuccess = function (result) { + if (region && !rectangle) { + //城市限定参数拼接 + requestParam.boundary = "region(" + region + "," + auto_extend + "," + result.latitude + "," + result.longitude + ")"; + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'search'); + } + } else if (rectangle && !region) { + //矩形搜索 + requestParam.boundary = "rectangle(" + rectangle + ")"; + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'search'); + } + } else { + requestParam.boundary = "nearby(" + result.latitude + "," + result.longitude + "," + distance + "," + auto_extend + ")"; + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'search'); + } + } + wx.request(Utils.buildWxRequestConfig(options, { + url: URL_SEARCH, + data: requestParam + }, 'search')); + }; + Utils.locationProcess(options, locationsuccess); + }; + + /** + * sug模糊检索 + * + * @param {Object} options 接口参数对象 + * + * 参数对象结构可以参考 + * http://lbs.qq.com/webservice_v1/guide-suggestion.html + */ + getSuggestion(options) { + var that = this; + options = options || {}; + Utils.polyfillParam(options); + + if (!Utils.checkKeyword(options)) { + return; + } + + var requestParam = { + keyword: options.keyword, + region: options.region || '全国', + region_fix: options.region_fix || 0, + policy: options.policy || 0, + page_size: options.page_size || 10,//控制显示条数 + page_index: options.page_index || 1,//控制页数 + get_subpois : options.get_subpois || 0,//返回子地点 + output: 'json', + key: that.key + }; + //长地址 + if (options.address_format) { + requestParam.address_format = options.address_format; + } + //过滤 + if (options.filter) { + requestParam.filter = options.filter; + } + //排序 + if (options.location) { + var locationsuccess = function (result) { + requestParam.location = result.latitude + ',' + result.longitude; + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'suggest'); + } + wx.request(Utils.buildWxRequestConfig(options, { + url: URL_SUGGESTION, + data: requestParam + }, "suggest")); + }; + Utils.locationProcess(options, locationsuccess); + } else { + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'suggest'); + } + wx.request(Utils.buildWxRequestConfig(options, { + url: URL_SUGGESTION, + data: requestParam + }, "suggest")); + } + }; + + /** + * 逆地址解析 + * + * @param {Object} options 接口参数对象 + * + * 请求参数结构可以参考 + * http://lbs.qq.com/webservice_v1/guide-gcoder.html + */ + reverseGeocoder(options) { + var that = this; + options = options || {}; + Utils.polyfillParam(options); + var requestParam = { + coord_type: options.coord_type || 5, + get_poi: options.get_poi || 0, + output: 'json', + key: that.key + }; + if (options.poi_options) { + requestParam.poi_options = options.poi_options + } + + var locationsuccess = function (result) { + requestParam.location = result.latitude + ',' + result.longitude; + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'reverseGeocoder'); + } + wx.request(Utils.buildWxRequestConfig(options, { + url: URL_GET_GEOCODER, + data: requestParam + }, 'reverseGeocoder')); + }; + Utils.locationProcess(options, locationsuccess); + }; + + /** + * 地址解析 + * + * @param {Object} options 接口参数对象 + * + * 请求参数结构可以参考 + * http://lbs.qq.com/webservice_v1/guide-geocoder.html + */ + geocoder(options) { + var that = this; + options = options || {}; + Utils.polyfillParam(options); + + if (Utils.checkParamKeyEmpty(options, 'address')) { + return; + } + + var requestParam = { + address: options.address, + output: 'json', + key: that.key + }; + + //城市限定 + if (options.region) { + requestParam.region = options.region; + } + + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'geocoder'); + } + + wx.request(Utils.buildWxRequestConfig(options, { + url: URL_GET_GEOCODER, + data: requestParam + },'geocoder')); + }; + + + /** + * 获取城市列表 + * + * @param {Object} options 接口参数对象 + * + * 请求参数结构可以参考 + * http://lbs.qq.com/webservice_v1/guide-region.html + */ + getCityList(options) { + var that = this; + options = options || {}; + Utils.polyfillParam(options); + var requestParam = { + output: 'json', + key: that.key + }; + + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'getCityList'); + } + + wx.request(Utils.buildWxRequestConfig(options, { + url: URL_CITY_LIST, + data: requestParam + },'getCityList')); + }; + + /** + * 获取对应城市ID的区县列表 + * + * @param {Object} options 接口参数对象 + * + * 请求参数结构可以参考 + * http://lbs.qq.com/webservice_v1/guide-region.html + */ + getDistrictByCityId(options) { + var that = this; + options = options || {}; + Utils.polyfillParam(options); + + if (Utils.checkParamKeyEmpty(options, 'id')) { + return; + } + + var requestParam = { + id: options.id || '', + output: 'json', + key: that.key + }; + + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'getDistrictByCityId'); + } + + wx.request(Utils.buildWxRequestConfig(options, { + url: URL_AREA_LIST, + data: requestParam + },'getDistrictByCityId')); + }; + + /** + * 用于单起点到多终点的路线距离(非直线距离)计算: + * 支持两种距离计算方式:步行和驾车。 + * 起点到终点最大限制直线距离10公里。 + * + * 新增直线距离计算。 + * + * @param {Object} options 接口参数对象 + * + * 请求参数结构可以参考 + * http://lbs.qq.com/webservice_v1/guide-distance.html + */ + calculateDistance(options) { + var that = this; + options = options || {}; + Utils.polyfillParam(options); + + if (Utils.checkParamKeyEmpty(options, 'to')) { + return; + } + + var requestParam = { + mode: options.mode || 'walking', + to: Utils.location2query(options.to), + output: 'json', + key: that.key + }; + + if (options.from) { + options.location = options.from; + } + + //计算直线距离 + if(requestParam.mode == 'straight'){ + var locationsuccess = function (result) { + var locationTo = Utils.getEndLocation(requestParam.to);//处理终点坐标 + var data = { + message:"query ok", + result:{ + elements:[] + }, + status:0 + }; + for (var i = 0; i < locationTo.length; i++) { + data.result.elements.push({//将坐标存入 + distance: Utils.getDistance(result.latitude, result.longitude, locationTo[i].lat, locationTo[i].lng), + duration:0, + from:{ + lat: result.latitude, + lng:result.longitude + }, + to:{ + lat: locationTo[i].lat, + lng: locationTo[i].lng + } + }); + } + var calculateResult = data.result.elements; + var distanceResult = []; + for (var i = 0; i < calculateResult.length; i++) { + distanceResult.push(calculateResult[i].distance); + } + return options.success(data,{ + calculateResult: calculateResult, + distanceResult: distanceResult + }); + }; + + Utils.locationProcess(options, locationsuccess); + } else { + var locationsuccess = function (result) { + requestParam.from = result.latitude + ',' + result.longitude; + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'calculateDistance'); + } + wx.request(Utils.buildWxRequestConfig(options, { + url: URL_DISTANCE, + data: requestParam + },'calculateDistance')); + }; + + Utils.locationProcess(options, locationsuccess); + } + }; + + /** + * 路线规划: + * + * @param {Object} options 接口参数对象 + * + * 请求参数结构可以参考 + * https://lbs.qq.com/webservice_v1/guide-road.html + */ + direction(options) { + var that = this; + options = options || {}; + Utils.polyfillParam(options); + + if (Utils.checkParamKeyEmpty(options, 'to')) { + return; + } + + var requestParam = { + output: 'json', + key: that.key + }; + + //to格式处理 + if (typeof options.to == 'string') { + requestParam.to = options.to; + } else { + requestParam.to = options.to.latitude + ',' + options.to.longitude; + } + //初始化局部请求域名 + var SET_URL_DIRECTION = null; + //设置默认mode属性 + options.mode = options.mode || MODE.driving; + + //设置请求域名 + SET_URL_DIRECTION = URL_DIRECTION + options.mode; + + if (options.from) { + options.location = options.from; + } + + if (options.mode == MODE.driving) { + if (options.from_poi) { + requestParam.from_poi = options.from_poi; + } + if (options.heading) { + requestParam.heading = options.heading; + } + if (options.speed) { + requestParam.speed = options.speed; + } + if (options.accuracy) { + requestParam.accuracy = options.accuracy; + } + if (options.road_type) { + requestParam.road_type = options.road_type; + } + if (options.to_poi) { + requestParam.to_poi = options.to_poi; + } + if (options.from_track) { + requestParam.from_track = options.from_track; + } + if (options.waypoints) { + requestParam.waypoints = options.waypoints; + } + if (options.policy) { + requestParam.policy = options.policy; + } + if (options.plate_number) { + requestParam.plate_number = options.plate_number; + } + } + + if (options.mode == MODE.transit) { + if (options.departure_time) { + requestParam.departure_time = options.departure_time; + } + if (options.policy) { + requestParam.policy = options.policy; + } + } + + var locationsuccess = function (result) { + requestParam.from = result.latitude + ',' + result.longitude; + if (options.sig) { + requestParam.sig = Utils.getSig(requestParam, options.sig, 'direction',options.mode); + } + wx.request(Utils.buildWxRequestConfig(options, { + url: SET_URL_DIRECTION, + data: requestParam + }, 'direction')); + }; + + Utils.locationProcess(options, locationsuccess); + } +}; + +module.exports = QQMapWX; \ No newline at end of file diff --git a/config/md5.js b/config/md5.js new file mode 100644 index 0000000..6b3848d --- /dev/null +++ b/config/md5.js @@ -0,0 +1,257 @@ +/* + * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message + * Digest Algorithm, as defined in RFC 1321. + * Version 2.1 Copyright (C) Paul Johnston 1999 - 2002. + * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet + * Distributed under the BSD License + * See http://pajhome.org.uk/crypt/md5 for more info. + */ + +/* + * Configurable variables. You may need to tweak these to be compatible with + * the server-side, but the defaults work in most cases. + */ +var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */ +var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */ +var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */ + +/* + * These are the functions you'll usually want to call + * They take string arguments and return either hex or base-64 encoded strings + */ +function hex_md5(s){ return binl2hex(core_md5(str2binl(s), s.length * chrsz));} +function b64_md5(s){ return binl2b64(core_md5(str2binl(s), s.length * chrsz));} +function str_md5(s){ return binl2str(core_md5(str2binl(s), s.length * chrsz));} +function hex_hmac_md5(key, data) { return binl2hex(core_hmac_md5(key, data)); } +function b64_hmac_md5(key, data) { return binl2b64(core_hmac_md5(key, data)); } +function str_hmac_md5(key, data) { return binl2str(core_hmac_md5(key, data)); } + +/* + * Perform a simple self-test to see if the VM is working + */ +function md5_vm_test() +{ + return hex_md5("abc") == "900150983cd24fb0d6963f7d28e17f72"; +} + +/* + * Calculate the MD5 of an array of little-endian words, and a bit length + */ +function core_md5(x, len) +{ + /* append padding */ + x[len >> 5] |= 0x80 << ((len) % 32); + x[(((len + 64) >>> 9) << 4) + 14] = len; + + var a = 1732584193; + var b = -271733879; + var c = -1732584194; + var d = 271733878; + + for(var i = 0; i < x.length; i += 16) + { + var olda = a; + var oldb = b; + var oldc = c; + var oldd = d; + + a = md5_ff(a, b, c, d, x[i+ 0], 7 , -680876936); + d = md5_ff(d, a, b, c, x[i+ 1], 12, -389564586); + c = md5_ff(c, d, a, b, x[i+ 2], 17, 606105819); + b = md5_ff(b, c, d, a, x[i+ 3], 22, -1044525330); + a = md5_ff(a, b, c, d, x[i+ 4], 7 , -176418897); + d = md5_ff(d, a, b, c, x[i+ 5], 12, 1200080426); + c = md5_ff(c, d, a, b, x[i+ 6], 17, -1473231341); + b = md5_ff(b, c, d, a, x[i+ 7], 22, -45705983); + a = md5_ff(a, b, c, d, x[i+ 8], 7 , 1770035416); + d = md5_ff(d, a, b, c, x[i+ 9], 12, -1958414417); + c = md5_ff(c, d, a, b, x[i+10], 17, -42063); + b = md5_ff(b, c, d, a, x[i+11], 22, -1990404162); + a = md5_ff(a, b, c, d, x[i+12], 7 , 1804603682); + d = md5_ff(d, a, b, c, x[i+13], 12, -40341101); + c = md5_ff(c, d, a, b, x[i+14], 17, -1502002290); + b = md5_ff(b, c, d, a, x[i+15], 22, 1236535329); + + a = md5_gg(a, b, c, d, x[i+ 1], 5 , -165796510); + d = md5_gg(d, a, b, c, x[i+ 6], 9 , -1069501632); + c = md5_gg(c, d, a, b, x[i+11], 14, 643717713); + b = md5_gg(b, c, d, a, x[i+ 0], 20, -373897302); + a = md5_gg(a, b, c, d, x[i+ 5], 5 , -701558691); + d = md5_gg(d, a, b, c, x[i+10], 9 , 38016083); + c = md5_gg(c, d, a, b, x[i+15], 14, -660478335); + b = md5_gg(b, c, d, a, x[i+ 4], 20, -405537848); + a = md5_gg(a, b, c, d, x[i+ 9], 5 , 568446438); + d = md5_gg(d, a, b, c, x[i+14], 9 , -1019803690); + c = md5_gg(c, d, a, b, x[i+ 3], 14, -187363961); + b = md5_gg(b, c, d, a, x[i+ 8], 20, 1163531501); + a = md5_gg(a, b, c, d, x[i+13], 5 , -1444681467); + d = md5_gg(d, a, b, c, x[i+ 2], 9 , -51403784); + c = md5_gg(c, d, a, b, x[i+ 7], 14, 1735328473); + b = md5_gg(b, c, d, a, x[i+12], 20, -1926607734); + + a = md5_hh(a, b, c, d, x[i+ 5], 4 , -378558); + d = md5_hh(d, a, b, c, x[i+ 8], 11, -2022574463); + c = md5_hh(c, d, a, b, x[i+11], 16, 1839030562); + b = md5_hh(b, c, d, a, x[i+14], 23, -35309556); + a = md5_hh(a, b, c, d, x[i+ 1], 4 , -1530992060); + d = md5_hh(d, a, b, c, x[i+ 4], 11, 1272893353); + c = md5_hh(c, d, a, b, x[i+ 7], 16, -155497632); + b = md5_hh(b, c, d, a, x[i+10], 23, -1094730640); + a = md5_hh(a, b, c, d, x[i+13], 4 , 681279174); + d = md5_hh(d, a, b, c, x[i+ 0], 11, -358537222); + c = md5_hh(c, d, a, b, x[i+ 3], 16, -722521979); + b = md5_hh(b, c, d, a, x[i+ 6], 23, 76029189); + a = md5_hh(a, b, c, d, x[i+ 9], 4 , -640364487); + d = md5_hh(d, a, b, c, x[i+12], 11, -421815835); + c = md5_hh(c, d, a, b, x[i+15], 16, 530742520); + b = md5_hh(b, c, d, a, x[i+ 2], 23, -995338651); + + a = md5_ii(a, b, c, d, x[i+ 0], 6 , -198630844); + d = md5_ii(d, a, b, c, x[i+ 7], 10, 1126891415); + c = md5_ii(c, d, a, b, x[i+14], 15, -1416354905); + b = md5_ii(b, c, d, a, x[i+ 5], 21, -57434055); + a = md5_ii(a, b, c, d, x[i+12], 6 , 1700485571); + d = md5_ii(d, a, b, c, x[i+ 3], 10, -1894986606); + c = md5_ii(c, d, a, b, x[i+10], 15, -1051523); + b = md5_ii(b, c, d, a, x[i+ 1], 21, -2054922799); + a = md5_ii(a, b, c, d, x[i+ 8], 6 , 1873313359); + d = md5_ii(d, a, b, c, x[i+15], 10, -30611744); + c = md5_ii(c, d, a, b, x[i+ 6], 15, -1560198380); + b = md5_ii(b, c, d, a, x[i+13], 21, 1309151649); + a = md5_ii(a, b, c, d, x[i+ 4], 6 , -145523070); + d = md5_ii(d, a, b, c, x[i+11], 10, -1120210379); + c = md5_ii(c, d, a, b, x[i+ 2], 15, 718787259); + b = md5_ii(b, c, d, a, x[i+ 9], 21, -343485551); + + a = safe_add(a, olda); + b = safe_add(b, oldb); + c = safe_add(c, oldc); + d = safe_add(d, oldd); + } + return Array(a, b, c, d); + +} + +/* + * These functions implement the four basic operations the algorithm uses. + */ +function md5_cmn(q, a, b, x, s, t) +{ + return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s),b); +} +function md5_ff(a, b, c, d, x, s, t) +{ + return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t); +} +function md5_gg(a, b, c, d, x, s, t) +{ + return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t); +} +function md5_hh(a, b, c, d, x, s, t) +{ + return md5_cmn(b ^ c ^ d, a, b, x, s, t); +} +function md5_ii(a, b, c, d, x, s, t) +{ + return md5_cmn(c ^ (b | (~d)), a, b, x, s, t); +} + +/* + * Calculate the HMAC-MD5, of a key and some data + */ +function core_hmac_md5(key, data) +{ + var bkey = str2binl(key); + if(bkey.length > 16) bkey = core_md5(bkey, key.length * chrsz); + + var ipad = Array(16), opad = Array(16); + for(var i = 0; i < 16; i++) + { + ipad[i] = bkey[i] ^ 0x36363636; + opad[i] = bkey[i] ^ 0x5C5C5C5C; + } + + var hash = core_md5(ipad.concat(str2binl(data)), 512 + data.length * chrsz); + return core_md5(opad.concat(hash), 512 + 128); +} + +/* + * Add integers, wrapping at 2^32. This uses 16-bit operations internally + * to work around bugs in some JS interpreters. + */ +function safe_add(x, y) +{ + var lsw = (x & 0xFFFF) + (y & 0xFFFF); + var msw = (x >> 16) + (y >> 16) + (lsw >> 16); + return (msw << 16) | (lsw & 0xFFFF); +} + +/* + * Bitwise rotate a 32-bit number to the left. + */ +function bit_rol(num, cnt) +{ + return (num << cnt) | (num >>> (32 - cnt)); +} + +/* + * Convert a string to an array of little-endian words + * If chrsz is ASCII, characters >255 have their hi-byte silently ignored. + */ +function str2binl(str) +{ + var bin = Array(); + var mask = (1 << chrsz) - 1; + for(var i = 0; i < str.length * chrsz; i += chrsz) + bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (i%32); + return bin; +} + +/* + * Convert an array of little-endian words to a string + */ +function binl2str(bin) +{ + var str = ""; + var mask = (1 << chrsz) - 1; + for(var i = 0; i < bin.length * 32; i += chrsz) + str += String.fromCharCode((bin[i>>5] >>> (i % 32)) & mask); + return str; +} + +/* + * Convert an array of little-endian words to a hex string. + */ +function binl2hex(binarray) +{ + var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; + var str = ""; + for(var i = 0; i < binarray.length * 4; i++) + { + str += hex_tab.charAt((binarray[i>>2] >> ((i%4)*8+4)) & 0xF) + + hex_tab.charAt((binarray[i>>2] >> ((i%4)*8 )) & 0xF); + } + return str; +} + +/* + * Convert an array of little-endian words to a base-64 string + */ +function binl2b64(binarray) +{ + var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + var str = ""; + for(var i = 0; i < binarray.length * 4; i += 3) + { + var triplet = (((binarray[i >> 2] >> 8 * ( i %4)) & 0xFF) << 16) + | (((binarray[i+1 >> 2] >> 8 * ((i+1)%4)) & 0xFF) << 8 ) + | ((binarray[i+2 >> 2] >> 8 * ((i+2)%4)) & 0xFF); + for(var j = 0; j < 4; j++) + { + if(i * 8 + j * 6 > binarray.length * 32) str += b64pad; + else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F); + } + } + return str; +} +module.exports = hex_md5; \ No newline at end of file diff --git a/config/qqmap.js b/config/qqmap.js new file mode 100644 index 0000000..e69de29 diff --git a/config/request.js b/config/request.js new file mode 100644 index 0000000..45eb2f6 --- /dev/null +++ b/config/request.js @@ -0,0 +1,114 @@ +const ENV = require('./env.js'); +/* +{ + baseUrl: '', + header: {}, + method: 'GET', + dataType: 'json', + // #ifndef MP-ALIPAY || APP-PLUS + responseType: 'text', + // #endif + // 注:如果局部custom与全局custom有同名属性,则后面的属性会覆盖前面的属性,相当于Object.assign(全局,局部) + custom: {}, // 全局自定义参数默认值 + // #ifdef MP-ALIPAY || MP-WEIXIN + timeout: 30000, + // #endif + // #ifdef APP-PLUS + sslVerify: true, + // #endif + // #ifdef H5 + // 跨域请求时是否携带凭证(cookies)仅H5支持(HBuilderX 2.6.15+) + withCredentials: false, + // #endif + // 局部优先级高于全局,返回当前请求的task,options。请勿在此处修改options。非必填 + // getTask: (task, options) => { + // 相当于设置了请求超时时间500ms + // setTimeout(() => { + // task.abort() + // }, 500) + // } + }*/ +// 此vm参数为页面的实例,可以通过它引用vuex中的变量 +module.exports = (vm) => { + + // 初始化请求配置 + uni.$u.http.setConfig((config) => { + + //console.log(config); + /* config 为默认全局配置*/ + config.baseURL = ENV.ApiUrl; /* 根域名 */ + config.custom = { + auth:true, + toast:true, + }; + return config + }) + + // 请求拦截 + uni.$u.http.interceptors.request.use((config) => { // 可使用async await 做异步操作 + // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{} + config.data = config.data || {} + // 根据custom参数中配置的是否需要token,添加对应的请求头 + if(config?.custom?.auth) { + const token = uni.getStorageSync('token'); + if(token.length > 0) + { + config.header.token = token; + } + } + return config + }, config => { // 可使用async await 做异步操作 + return Promise.reject(config) + }) + + // 响应拦截 + uni.$u.http.interceptors.response.use((response) => { /* 对响应成功做点什么 可使用async await 做异步操作*/ + const data = response.data + + // 自定义参数 + const custom = response.config?.custom + if (data.result !== 1) { + // 如果没有显式定义custom的toast参数为false的话,默认对报错进行toast弹出提示 + if (custom.toast !== false) { + uni.$u.toast(data.msg) + } + + // 如果需要catch返回,则进行reject + if (custom?.catch) { + return Promise.reject(data) + } else { + // 否则返回一个pending中的promise,请求不会进入catch中 + return new Promise(() => { }) + } + } + return data.data === undefined ? {} : data.data + }, (response) => { + //console.log(response); + // 对响应错误做点什么 (statusCode !== 200) + if(response.statusCode == 401) + { + // 假设201为token失效,这里跳转登录 + uni.$u.toast('用户信息验证失败,请重新登录'); + setTimeout(() => { + // 此为uView的方法,详见路由相关文档 + //uni.$u.route('/pages/user/auth/login') + }, 1500) + + } + else if(response.statusCode == 500) + { + // 假设201为token失效,这里跳转登录 + uni.$u.toast('当前接口出错'); + + } + else + { + + // 如果返回false,则会调用Promise的reject回调, + // 并将进入this.$u.post(url).then().catch(res=>{})的catch回调中,res为服务端的返回值 + uni.$u.toast('当前接口状态码'+response.statusCode); + + } + return Promise.reject(response) + }) +} \ No newline at end of file diff --git a/config/user.js b/config/user.js new file mode 100644 index 0000000..de2aa4f --- /dev/null +++ b/config/user.js @@ -0,0 +1,88 @@ +var user = { + + /** + * 本算法来源于简书开源代码,详见:https://www.jianshu.com/p/fdbf293d0a85 + * 全局唯一标识符(uuid,Globally Unique Identifier),也称作 uuid(Universally Unique IDentifier) + * 一般用于多个组件之间,给它一个唯一的标识符,或者v-for循环的时候,如果使用数组的index可能会导致更新列表出现问题 + * 最可能的情况是左滑删除item或者对某条信息流"不喜欢"并去掉它的时候,会导致组件内的数据可能出现错乱 + * v-for的时候,推荐使用后端返回的id而不是循环的index + * @param {Number} len uuid的长度 + * @param {Boolean} firstU 将返回的首字母置为"u" + * @param {Nubmer} radix 生成uuid的基数(意味着返回的字符串都是这个基数),2-二进制,8-八进制,10-十进制,16-十六进制 + */ + guid:function (len = 32, firstU = true, radix = null) { + let chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split(''); + let uuid = []; + radix = radix || chars.length; + + if (len) { + // 如果指定uuid长度,只是取随机的字符,0|x为位运算,能去掉x的小数位,返回整数位 + for (let i = 0; i < len; i++) uuid[i] = chars[0 | Math.random() * radix]; + } else { + let r; + // rfc4122标准要求返回的uuid中,某些位为固定的字符 + uuid[8] = uuid[13] = uuid[18] = uuid[23] = '-'; + uuid[14] = '4'; + + for (let i = 0; i < 36; i++) { + if (!uuid[i]) { + r = 0 | Math.random() * 16; + uuid[i] = chars[(i == 19) ? (r & 0x3) | 0x8 : r]; + } + } + } + // 移除第一个字符,并用u替代,因为第一个字符为数值时,该guuid不能用作id或者class + if (firstU) { + uuid.shift(); + return 'u' + uuid.join(''); + } else { + return uuid.join(''); + } + }, + //设置用户本地信息 + + session: function(key, val) { + if (typeof(val) == 'undefined') { + var res = uni.getStorageSync(key); + return res; + } else { + uni.setStorageSync(key, val); + } + }, + //删除用户本地所有信息 + clearSession: function() { + var keys = uni.getStorageInfoSync().keys; + var session_id = uni.getStorageSync('session_id'); + for (var key in keys) { + uni.removeStorageSync(keys[key]); + } + uni.setStorageSync('session_id', session_id); + }, + + isLogin: function() { + var res = uni.getStorageSync('token'); + if (typeof(res) == 'undefined' || res == '') { + return false; + } else { + return res; + } + }, + + getUserInfo: function() { + var res = uni.getStorageSync('token'); + if (typeof(res) == 'undefined' || res == '') { + return false; + } else { + var userInfo = {}; + userInfo.nickName = uni.getStorageSync('nickName'); + userInfo.phone = uni.getStorageSync('phone'); + userInfo.userId = uni.getStorageSync('userId'); + userInfo.token = uni.getStorageSync('token'); + userInfo.avatar = uni.getStorageSync('avatar'); + userInfo.realName = uni.getStorageSync('realName'); + return userInfo; + } + } +} + +module.exports = user diff --git a/config/wechat.js b/config/wechat.js new file mode 100644 index 0000000..d3c05dd --- /dev/null +++ b/config/wechat.js @@ -0,0 +1,228 @@ +// /common/wechat.js +//https://zhuanlan.zhihu.com/p/512790783?utm_id=0 +import Vue from "vue" +var jweixin = require('./jssdk.js') +export default { + // 调试模式 + debug: false, + // api列表 + jsApiList: [ + 'updateAppMessageShareData', + 'updateTimelineShareData', + 'closeWindow', + 'getLocation', + 'openLocation', + 'openAddress', + 'scanQRCode', + 'chooseImage', + 'chooseWXPay' + ], + // 判断是否在微信中 + isWechat: function() { + var ua = window.navigator.userAgent.toLowerCase() + return ua.match(/micromessenger/i) == 'micromessenger' ? true : false + }, + // 初始化sdk配置 + initJssdk: function(callback) { + var url = window.location.href; + var post = {url:url}; + if (this.isWechat()) { + Vue.prototype.$u.post('login/getApi', post).then(res => { + console.log('getApi : '); + console.log(res); + var share = JSON.parse(res.data); + console.log('getApi-share : '); + console.log(share); + jweixin.config({ + debug: share.debug || this.debug, + appId: share.appId, + timestamp:share.timestamp, + nonceStr: share.nonceStr, + signature: share.signature, + jsApiList: share.jsApiList || this.jsApiList + }) + if (typeof callback === 'function') { + console.log('getApi-callback : '); + console.log(share); + callback(share); + } + }) + } + }, + // 关闭页面事件 + closeWindow: function(callback) { + if (this.isWechat()) { + this.initJssdk(function(init) { + jweixin.ready(function(wx) { + wx.closeWindow() + if (typeof callback === 'function') { + callback(jweixin) + } + }) + }) + } + }, + // 微信分享 + share: function(data, callback) { + if (this.isWechat()) { + this.initJssdk(function(init) { + + jweixin.ready(function() { + + var shareData = { + title: data.title, + desc: data.desc, + link: window.location.href, + imgUrl: data.image, + success: function(res) { + callback(res) + + }, + cancel: function(res) { + callback(res) + } + } + jweixin.updateAppMessageShareData(shareData) + jweixin.updateTimelineShareData(shareData) + + }) + }) + } + }, + // 获取位置信息 + getLocation: function(callback) { + if (this.isWechat()) { + this.initJssdk(function(init) { + jweixin.ready(function() { + jweixin.getLocation({ + type: 'gcj02', + success: function(res) { + callback(res) + }, + fail: function(err) { + callback(err) + } + }) + }) + }) + } + }, + // 查看位置信息 + openLocation: function(data, callback) { + if (this.isWechat()) { + this.initJssdk(function(init) { + jweixin.ready(function() { + jweixin.openLocation({ + latitude: data.latitude, + longitude: data.longitude + }) + }) + }) + } + }, + // 获取微信收货地址 + openAddress: function(callback) { + if (this.isWechat()) { + this.initJssdk(function(init) { + jweixin.ready(function() { + jweixin.openAddress({ + success: function(res) { + callback(res) + }, + fail: function(err) { + callback(err) + } + }) + }) + }) + } + }, + // 微信扫码 + scanQRCode: function(callback) { + if (this.isWechat()) { + this.initJssdk(function(init) { + jweixin.ready(function() { + jweixin.scanQRCode({ + needResult: 1, // 0:微信处理|1:返回扫描结果 + scanType: ["qrCode", "barCode"], + success: function(res) { + let durl = /https:\/\/([^\/]+)\//i + let domain + res.resultStr.replace(durl, (e) => { + domain = e + }) + callback(res) + }, + fail: function(err) { + callback(err) + } + }) + }) + }) + } + }, + // 选择图片 + chooseImage: function(callback) { + if (this.isWechat()) { + this.initJssdk(function(init) { + jweixin.ready(function() { + jweixin.chooseImage({ + count: 1, + sizeType: ['compressed'], + sourceType: ['album'], + success: function(res) { + callback(res) + } + }) + }) + }) + } + }, + // 微信支付 + wxpay: function(data, callback) { + if (this.isWechat()) { + this.initJssdk(function(init) { + jweixin.ready(function() { + jweixin.chooseWXPay({ + timestamp: data.timeStamp, + nonceStr: data.nonceStr, + package: data.package, + signType: data.signType, + paySign: data.paySign, + success: function(res) { + callback(res) + }, + cancel: function(res) { + callback(res) + }, + fail: function(err) { + callback(err) + } + }) + }) + }) + } + }, + // 微信支付 另一种方式 + wxpayBridge: function(data, callback) { + if (this.isWechat()) { + this.initJssdk(function(init) { + jweixin.ready(function() { + WeixinJSBridge.invoke( + 'getBrandWCPayRequest', { + "appId": data.appId, + "timeStamp": data.timeStamp, + "nonceStr": data.nonceStr, + "package": data.package, + "signType": "MD5", + "paySign": data.paySign + }, + function(res) { + callback(res) + } + ) + }) + }) + } + } +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..c3ff205 --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ + + + + + + + + + + +
+ + + diff --git a/locale/en.json b/locale/en.json new file mode 100644 index 0000000..75fe58f --- /dev/null +++ b/locale/en.json @@ -0,0 +1,23 @@ +{ + "app.name": "空间充", + "tabbar.home": "HOME", + "tabbar.list": "NEARBY", + "tabbar.user": "USER", + "page.list.index.title": "NEARBY", + + "page.user.index.title": "User Center", + "pages.user.setting.index.title":"Setting", + "pages.user.setting.index.setLang":"Language", + + + "locale.auto": "System", + "locale.en": "English", + "locale.zh-hans": "简体中文", + "locale.zh-hant": "繁体中文", + "locale.language-change-confirm": "Applying this setting will restart the app" + + + + + +} diff --git a/locale/index.js b/locale/index.js new file mode 100644 index 0000000..d42cd89 --- /dev/null +++ b/locale/index.js @@ -0,0 +1,8 @@ +import zhHans from './zh-Hans.json' +import zhHant from './zh-Hant.json' +import en from './en.json' +export default { + 'zh-Hans': zhHans, + 'zh-Hant': zhHant, + en +} diff --git a/locale/uni-app.en.json b/locale/uni-app.en.json new file mode 100644 index 0000000..c57d3d3 --- /dev/null +++ b/locale/uni-app.en.json @@ -0,0 +1,36 @@ +{ + "common": { + "uni.app.quit": "Press again to quit the app", + "uni.async.error": "The connection to the server timed out, click the screen to retry", + "uni.showActionSheet.cancel": "Cancel", + "uni.showToast.unpaired": "Please note that showToast and hideToast must be paired", + "uni.showLoading.unpaired": "Please note that showLoading and hideLoading must be paired", + "uni.showModal.cancel": "Cancel", + "uni.showModal.confirm": "OK", + "uni.chooseImage.cancel": "Cancel", + "uni.chooseImage.sourceType.album": "Choose from Album", + "uni.chooseImage.sourceType.camera": "shoot", + "uni.chooseVideo.cancel": "Cancel", + "uni.chooseVideo.sourceType.album": "Choose from Album", + "uni.chooseVideo.sourceType.camera": "Camera", + "uni.previewImage.cancel": "Cancel", + "uni.previewImage.button.save": "Save Image", + "uni.previewImage.save.success": "Successful saving image to album", + "uni.previewImage.save.fail": "Failed to save image to album", + "uni.setClipboardData.success": "Content copied", + "uni.scanCode.title": "scan", + "uni.scanCode.album": "Album", + "uni.scanCode.fail": "Recognition failed", + "uni.scanCode.flash.on": "Light touch to light", + "uni.scanCode.flash.off": "Flick Off", + "uni.startSoterAuthentication.authContent": "Fingerprint identification...", + "uni.picker.done": "Done", + "uni.picker.cancel": "Cancel", + "uni.video.danmu": "Barrage", + "uni.video.volume": "Volume", + "uni.button.feedback.title": "Problem Feedback", + "uni.button.feedback.send": "send" + }, + "ios": {}, + "android": {} +} \ No newline at end of file diff --git a/locale/uni-app.zh-Hans.json b/locale/uni-app.zh-Hans.json new file mode 100644 index 0000000..78cfef2 --- /dev/null +++ b/locale/uni-app.zh-Hans.json @@ -0,0 +1,36 @@ +{ + "common": { + "uni.app.quit": "再按一次退出应用", + "uni.async.error": "连接服务器超时,点击屏幕重试", + "uni.showActionSheet.cancel": "取消", + "uni.showToast.unpaired": "请注意 showToast 与 hideToast 必须配对使用", + "uni.showLoading.unpaired": "请注意 showLoading 与 hideLoading 必须配对使用", + "uni.showModal.cancel": "取消", + "uni.showModal.confirm": "确定", + "uni.chooseImage.cancel": "取消", + "uni.chooseImage.sourceType.album": "从相册选择", + "uni.chooseImage.sourceType.camera": "拍摄", + "uni.chooseVideo.cancel": "取消", + "uni.chooseVideo.sourceType.album": "从相册选择", + "uni.chooseVideo.sourceType.camera": "拍摄", + "uni.previewImage.cancel": "取消", + "uni.previewImage.button.save": "保存图像", + "uni.previewImage.save.success": "保存图像到相册成功", + "uni.previewImage.save.fail": "保存图像到相册失败", + "uni.setClipboardData.success": "内容已复制", + "uni.scanCode.title": "扫码", + "uni.scanCode.album": "相册", + "uni.scanCode.fail": "识别失败", + "uni.scanCode.flash.on": "轻触照亮", + "uni.scanCode.flash.off": "轻触关闭", + "uni.startSoterAuthentication.authContent": "指纹识别中...", + "uni.picker.done": "完成", + "uni.picker.cancel": "取消", + "uni.video.danmu": "弹幕", + "uni.video.volume": "音量", + "uni.button.feedback.title": "问题反馈", + "uni.button.feedback.send": "发送" + }, + "ios": {}, + "android": {} +} \ No newline at end of file diff --git a/locale/uni-app.zh-Hant.json b/locale/uni-app.zh-Hant.json new file mode 100644 index 0000000..ed0ac42 --- /dev/null +++ b/locale/uni-app.zh-Hant.json @@ -0,0 +1,36 @@ +{ + "common": { + "uni.app.quit": "再按一次退出應用", + "uni.async.error": "連接服務器超時,點擊屏幕重試", + "uni.showActionSheet.cancel": "取消", + "uni.showToast.unpaired": "請註意 showToast 與 hideToast 必須配對使用", + "uni.showLoading.unpaired": "請註意 showLoading 與 hideLoading 必須配對使用", + "uni.showModal.cancel": "取消", + "uni.showModal.confirm": "確定", + "uni.chooseImage.cancel": "取消", + "uni.chooseImage.sourceType.album": "從相冊選擇", + "uni.chooseImage.sourceType.camera": "拍攝", + "uni.chooseVideo.cancel": "取消", + "uni.chooseVideo.sourceType.album": "從相冊選擇", + "uni.chooseVideo.sourceType.camera": "拍攝", + "uni.previewImage.cancel": "取消", + "uni.previewImage.button.save": "保存圖像", + "uni.previewImage.save.success": "保存圖像到相冊成功", + "uni.previewImage.save.fail": "保存圖像到相冊失敗", + "uni.setClipboardData.success": "內容已復製", + "uni.scanCode.title": "掃碼", + "uni.scanCode.album": "相冊", + "uni.scanCode.fail": "識別失敗", + "uni.scanCode.flash.on": "輕觸照亮", + "uni.scanCode.flash.off": "輕觸關閉", + "uni.startSoterAuthentication.authContent": "指紋識別中...", + "uni.picker.done": "完成", + "uni.picker.cancel": "取消", + "uni.video.danmu": "彈幕", + "uni.video.volume": "音量", + "uni.button.feedback.title": "問題反饋", + "uni.button.feedback.send": "發送" + }, + "ios": {}, + "android": {} +} \ No newline at end of file diff --git a/locale/zh-Hans.json b/locale/zh-Hans.json new file mode 100644 index 0000000..de5724c --- /dev/null +++ b/locale/zh-Hans.json @@ -0,0 +1,39 @@ +{ + "app.name": "合成照相馆", + "tabbar.home": "首页", + "tabbar.list": "附近", + "tabbar.user": "我的", + "page.list.index.title": "附近", + + "page.user.index.title": "用户中心", + "pages.user.setting.index.title":"设置", + "pages.user.setting.index.setLang":"多语言", + + "locale.auto": "系统", + "locale.en": "English", + "locale.zh-hans": "简体中文", + "locale.zh-hant": "繁体中文", + "locale.language-change-confirm": "应用此设置将重启App", + "locale.tips": "提示", + + "locale.login": "登录账号", + "locale.regist": "账号注册", + "locale.logout": "退出登录", + + "pages.user.auth.login.login":"登录页面", + "pages.user.auth.login.mobile":"手机号码", + "pages.user.auth.login.input_mobile":"请输入手机号码", + "pages.user.auth.login.mobile_must":"手机号码格式不正确", + + "pages.user.auth.login.email":"邮箱地址", + "pages.user.auth.login.input_email":"请输入Email地址", + "pages.user.auth.login.email_must":"Email格式不正确", + + "pages.user.auth.login.password":"账号密码", + "pages.user.auth.login.input_password":"请输入账号密码", + "pages.user.auth.login.password_must":"密码不小于6位", + + "pages.user.auth.regist.regist":"注册页面", + "pages.user.auth.regist.regist_success":"注册成功" + +} diff --git a/locale/zh-Hant.json b/locale/zh-Hant.json new file mode 100644 index 0000000..7d07307 --- /dev/null +++ b/locale/zh-Hant.json @@ -0,0 +1,20 @@ +{ + "app.name": "空间充", + "tabbar.home": "首頁", + "tabbar.list": "附近", + "tabbar.user": "我的", + "page.list.index.title": "附近", + + "page.user.index.title": "用戶中心", + "pages.user.setting.index.title":"設置", + "pages.user.setting.index.setLang":"多語言", + + "locale.auto": "系統", + "locale.en": "English", + "locale.zh-hans": "简体中文", + "locale.zh-hant": "繁體中文", + "locale.language-change-confirm": "應用此設置將重啟App" + + + +} diff --git a/main.js b/main.js new file mode 100644 index 0000000..be89afe --- /dev/null +++ b/main.js @@ -0,0 +1,57 @@ +import App from './App' +import messages from './locale/index' +// main.js +import uView from '@/uni_modules/uview-ui'; +Vue.use(uView); + + +let i18nConfig = { + locale: uni.getLocale(), + messages +} +// 引入请求封装,将app参数传递到配置中 +require('@/config/request.js')(app); //uview js +//自己封装的部分 +import api from '@/config/api.js'; +Vue.prototype.$api = api; +import user from '@/config/user.js'; +Vue.prototype.$user = user; +import com from '@/config/com.js'; +Vue.prototype.$com = com; + +import access from '@/config/access/index.js'; +Vue.prototype.$access = access; + +// #ifdef H5 +import wechat from '@/config/wechat.js' +Vue.prototype.$wechat =wechat; +// #endif + + + +// #ifndef VUE3 +import Vue from 'vue' +import VueI18n from 'vue-i18n' +Vue.use(VueI18n) +const i18n = new VueI18n(i18nConfig) +Vue.config.productionTip = false +App.mpType = 'app' +const app = new Vue({ + i18n, + ...App +}) +app.$mount(); +// #endif + +// #ifdef VUE3 +import { createSSRApp } from 'vue' +import { createI18n } from 'vue-i18n' +const i18n = createI18n(i18nConfig) +export function createApp() { + const app = createSSRApp(App) + app.use(i18n) + return { + app + } +} +// #endif \ No newline at end of file diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..306a074 --- /dev/null +++ b/manifest.json @@ -0,0 +1,100 @@ +{ + "name" : "合成照相馆", + "appid" : "__UNI__304D8B8", + "description" : "", + "versionName" : "2.1.2", + "versionCode" : 212, + "transformPx" : false, + /* 5+App特有相关 */ + "app-plus" : { + "usingComponents" : true, + "nvueStyleCompiler" : "uni-app", + "compilerVersion" : 3, + "splashscreen" : { + "alwaysShowBeforeRender" : true, + "waiting" : true, + "autoclose" : true, + "delay" : 0 + }, + /* 模块配置 */ + "modules" : {}, + /* 应用发布信息 */ + "distribute" : { + /* android打包配置 */ + "android" : { + "permissions" : [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ] + }, + /* ios打包配置 */ + "ios" : {}, + /* SDK配置 */ + "sdkConfigs" : {} + } + }, + /* 快应用特有相关 */ + "quickapp" : {}, + /* 小程序特有相关 */ + "mp-weixin" : { + "appid" : "wx19306460077082e9", + "setting" : { + "urlCheck" : false, + "es6" : true, + "postcss" : true, + "minified" : true + }, + "usingComponents" : true, + "permission" : { + "scope.userLocation" : { + "desc" : "你的位置信息将用于小程序位置接口的效果展示" + } + }, + "requiredPrivateInfos" : [ "getLocation", "chooseLocation" ], + "libVersion" : "latest" + }, + "mp-alipay" : { + "usingComponents" : true + }, + "mp-baidu" : { + "usingComponents" : true + }, + "mp-toutiao" : { + "usingComponents" : true + }, + "uniStatistics" : { + "enable" : false + }, + "vueVersion" : "2", + "locale" : "zh-Hans", + "fallbackLocale" : "zh-Hans", + "h5" : { + "title" : "空间充", + "router" : { + "mode" : "history", + "base" : "/h5/" + }, + "template" : "", + "devServer" : { + "https" : false + }, + "optimization" : { + "treeShaking" : { + "enable" : false + } + } + } +} diff --git a/pages.json b/pages.json new file mode 100644 index 0000000..fb3aab3 --- /dev/null +++ b/pages.json @@ -0,0 +1,82 @@ +{ + "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages + { + "path": "pages/index/index", + "style": { + "navigationBarTitleText": "%app.name%", + "navigationStyle": "custom" + } + } + ,{ + "path" : "pages/user/index", + "style" : + { + "navigationBarTitleText": "%page.user.index.title%", + "enablePullDownRefresh": false + + } + + } + ,{ + "path" : "pages/user/setting/index", + "style" : + { + "navigationBarTitleText": "%pages.user.setting.index.setLang%", + "enablePullDownRefresh": false + } + + }, + { + "path" : "pages/user/account/index", + "style" : + { + "navigationBarTitleText" : "账户设置", + "enablePullDownRefresh" : false + } + }, + { + "path" : "pages/web/index", + "style" : + { + "navigationBarTitleText" : "外部页面", + "enablePullDownRefresh" : false + } + }, + { + "path" : "pages/web/video", + "style" : + { + "navigationBarTitleText" : "视频", + "enablePullDownRefresh" : false + } + } + + ], + "subPackages": [], + "globalStyle": { + "navigationBarTextStyle": "black", + "navigationBarTitleText": "%app.name%", + "navigationBarBackgroundColor": "#FFFFFF", + "backgroundColor": "#FFFFFF" + }, + "tabBar": { + "color": "#AFB1DB", + "selectedColor": "#7A74F0", + "borderStyle": "black", + "backgroundColor": "#FFFFFF", + "list": [{ + "pagePath": "pages/index/index", + "iconPath": "static/img/common/home.png", + "selectedIconPath": "static/img/common/home_HL.png", + "text": "%tabbar.home%" + }, + { + "pagePath": "pages/user/index", + "iconPath": "static/img/common/user.png", + "selectedIconPath": "static/img/common/user_HL.png", + "text": "%tabbar.user%" + } + ] + }, + "uniIdRouter": {} +} diff --git a/pages/index/index.vue b/pages/index/index.vue new file mode 100644 index 0000000..d12df52 --- /dev/null +++ b/pages/index/index.vue @@ -0,0 +1,482 @@ + + + + + diff --git a/pages/user/account/index.vue b/pages/user/account/index.vue new file mode 100644 index 0000000..0b26e28 --- /dev/null +++ b/pages/user/account/index.vue @@ -0,0 +1,275 @@ + + + + + diff --git a/pages/user/auth/login.vue b/pages/user/auth/login.vue new file mode 100644 index 0000000..4cfd77c --- /dev/null +++ b/pages/user/auth/login.vue @@ -0,0 +1,176 @@ + + + + diff --git a/pages/user/auth/regist.vue b/pages/user/auth/regist.vue new file mode 100644 index 0000000..39f6ecb --- /dev/null +++ b/pages/user/auth/regist.vue @@ -0,0 +1,205 @@ + + + + diff --git a/pages/user/index.vue b/pages/user/index.vue new file mode 100644 index 0000000..339d8fd --- /dev/null +++ b/pages/user/index.vue @@ -0,0 +1,536 @@ + + + + + diff --git a/pages/user/setting/index.vue b/pages/user/setting/index.vue new file mode 100644 index 0000000..34716a3 --- /dev/null +++ b/pages/user/setting/index.vue @@ -0,0 +1,220 @@ + + + + + + + + diff --git a/pages/web/index.vue b/pages/web/index.vue new file mode 100644 index 0000000..ef56c6a --- /dev/null +++ b/pages/web/index.vue @@ -0,0 +1,77 @@ + + + + + + diff --git a/pages/web/video.vue b/pages/web/video.vue new file mode 100644 index 0000000..1b2b0f6 --- /dev/null +++ b/pages/web/video.vue @@ -0,0 +1,53 @@ + + + + + diff --git a/static/css/iconfont.css b/static/css/iconfont.css new file mode 100644 index 0000000..b5b42fa --- /dev/null +++ b/static/css/iconfont.css @@ -0,0 +1,2281 @@ +@font-face { + font-family: "iconfont"; + src: url('data:application/x-font-woff2;charset=utf-8;base64,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') format('woff2') +} + +.iconfont { + font-family: "iconfont" !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.iconback:before { + content: "\e6ef"; +} + +.iconless:before { + content: "\e6f2"; +} + +.iconmoreunfold:before { + content: "\e6f4"; +} + +.iconmore1:before { + content: "\e6f5"; +} + +.iconkefufenxiermaikefu:before { + content: "\e88d"; +} + +.iconkefuerji:before { + content: "\e6f6"; +} + +.iconkefu2:before { + content: "\e6f7"; +} + +.icongouwuche2:before { + content: "\e6eb"; +} + +.icongouwuche6:before { + content: "\e6f0"; +} + +.iconqunfengyouhuiquan:before { + content: "\e7cc"; +} + +.iconqunfengzuji:before { + content: "\e7fd"; +} + +.iconhuo:before { + content: "\e6c8"; +} + +.icondingdan1:before { + content: "\e6ce"; +} + +.iconyouhuiquan-xuanzhong:before { + content: "\e6cf"; +} + +.icontubiaozhizuomoban:before { + content: "\e6d0"; +} + +.iconflag:before { + content: "\e7a6"; +} + +.iconguanggaotongji:before { + content: "\e954"; +} + +.iconxiadan:before { + content: "\e6d1"; +} + +.iconlijixiadan:before { + content: "\e6d2"; +} + +.iconkefu1:before { + content: "\e6dc"; +} + +.iconzhiding:before { + content: "\e6dd"; +} + +.icontuan:before { + content: "\e6df"; +} + +.icongouwuche1:before { + content: "\e6e0"; +} + +.iconyouhuiquan-sousuo:before { + content: "\e6e1"; +} + +.iconHOT-copy:before { + content: "\e88a"; +} + +.iconweixinzhifu3:before { + content: "\e6e2"; +} + +.iconsaoma11:before { + content: "\e6e6"; +} + +.iconloading1:before { + content: "\e891"; +} + +.icongouwuchex:before { + content: "\e6e7"; +} + +.icongouwuchetubiao:before { + content: "\e6e8"; +} + +.iconremen:before { + content: "\e8c9"; +} + +.icongouwuche4:before { + content: "\e6e9"; +} + +.icongouwuche5:before { + content: "\e6ea"; +} + +.iconyouhuiquan_xuanzhong:before { + content: "\e70a"; +} + +.iconchexiao1:before { + content: "\e6aa"; +} + +.iconcuowu:before { + content: "\e6ab"; +} + +.iconzhengque:before { + content: "\e6ad"; +} + +.iconsuoding:before { + content: "\e6ae"; +} + +.iconkaishi:before { + content: "\e6b1"; +} + +.iconwode1:before { + content: "\e6b3"; +} + +.icontianjia:before { + content: "\e6b5"; +} + +.iconguanzhu1:before { + content: "\e6b6"; +} + +.iconzhuyi:before { + content: "\e6ba"; +} + +.iconjine:before { + content: "\e6be"; +} + +.iconyiwen:before { + content: "\e6c1"; +} + +.iconzanting:before { + content: "\e6c4"; +} + +.iconsaoma1:before { + content: "\e6c6"; +} + +.iconfenlei1:before { + content: "\e6c7"; +} + +.iconicon_shakehands:before { + content: "\ebc7"; +} + +.iconicon_video:before { + content: "\ebc8"; +} + +.iconicon_task_done:before { + content: "\ebc9"; +} + +.iconicon_synergy:before { + content: "\ebca"; +} + +.iconicon_workfile_line:before { + content: "\ebcb"; +} + +.iconicon_addresslist_fil:before { + content: "\ebcc"; +} + +.iconicon_addressbook_fil:before { + content: "\ebcd"; +} + +.iconicon_calendar_fill:before { + content: "\ebce"; +} + +.iconicon_delete_fill:before { + content: "\ebcf"; +} + +.iconicon_doc_fill:before { + content: "\ebd0"; +} + +.iconicon_camera_fill:before { + content: "\ebd1"; +} + +.iconicon_certification_f:before { + content: "\ebd2"; +} + +.iconicon_likegood_fill:before { + content: "\ebd3"; +} + +.iconicon_gift_fill:before { + content: "\ebd4"; +} + +.iconicon_message_fill:before { + content: "\ebd5"; +} + +.iconicon_newapplication_:before { + content: "\ebd6"; +} + +.iconicon_people_fill:before { + content: "\ebd7"; +} + +.iconicon_photo_fill:before { + content: "\ebd8"; +} + +.iconicon_roundreduce_fil:before { + content: "\ebd9"; +} + +.iconicon_redpacket_fill:before { + content: "\ebda"; +} + +.iconicon_replieslist:before { + content: "\ebdb"; +} + +.iconicon_roundadd_fill:before { + content: "\ebdc"; +} + +.iconicon_study_fill:before { + content: "\ebdd"; +} + +.iconicon_setting_fill:before { + content: "\ebde"; +} + +.iconicon_shakehands_fill:before { + content: "\ebdf"; +} + +.iconicon_work_fill:before { + content: "\ebe0"; +} + +.iconicon_trashcan:before { + content: "\ebe1"; +} + +.iconicon_roundclose_fill:before { + content: "\ebe2"; +} + +.iconicon_add:before { + content: "\eb8f"; +} + +.iconicon_addmessage:before { + content: "\eb90"; +} + +.iconicon_addresslist:before { + content: "\eb91"; +} + +.iconicon_affiliations_li:before { + content: "\eb92"; +} + +.iconicon_addperson:before { + content: "\eb93"; +} + +.iconicon_boss:before { + content: "\eb94"; +} + +.iconicon_addressbook:before { + content: "\eb95"; +} + +.iconicon_calendar:before { + content: "\eb96"; +} + +.iconicon_attestation:before { + content: "\eb97"; +} + +.iconicon_camera:before { + content: "\eb98"; +} + +.iconicon_certificate_fil:before { + content: "\eb99"; +} + +.iconicon_coinpurse_line:before { + content: "\eb9a"; +} + +.iconicon_collect:before { + content: "\eb9b"; +} + +.iconicon_compile:before { + content: "\eb9c"; +} + +.iconicon_details:before { + content: "\eb9d"; +} + +.iconicon_community_line:before { + content: "\eb9e"; +} + +.iconicon_discovery:before { + content: "\eb9f"; +} + +.iconicon_delete:before { + content: "\eba0"; +} + +.iconicon_dispose:before { + content: "\eba1"; +} + +.iconicon_doc:before { + content: "\eba2"; +} + +.iconicon_gift:before { + content: "\eba3"; +} + +.iconicon_file:before { + content: "\eba4"; +} + +.iconicon_GPS:before { + content: "\eba5"; +} + +.iconicon_im_more:before { + content: "\eba6"; +} + +.iconicon_horn:before { + content: "\eba7"; +} + +.iconicon_im_face:before { + content: "\eba8"; +} + +.iconicon_invite:before { + content: "\eba9"; +} + +.iconicon_likegood:before { + content: "\ebaa"; +} + +.iconicon_index_line:before { + content: "\ebab"; +} + +.iconicon_link:before { + content: "\ebac"; +} + +.iconicon_mobilephone:before { + content: "\ebad"; +} + +.iconicon_dmail:before { + content: "\ebae"; +} + +.iconicon_message:before { + content: "\ebaf"; +} + +.iconicon_more:before { + content: "\ebb0"; +} + +.iconicon_notice:before { + content: "\ebb1"; +} + +.iconicon_photo:before { + content: "\ebb2"; +} + +.iconicon_medal:before { + content: "\ebb3"; +} + +.iconicon_roundclose:before { + content: "\ebb4"; +} + +.iconicon_roundreduce:before { + content: "\ebb5"; +} + +.iconicon_QRcode:before { + content: "\ebb6"; +} + +.iconicon_roundadd:before { + content: "\ebb7"; +} + +.iconicon_refresh:before { + content: "\ebb8"; +} + +.iconicon_search:before { + content: "\ebb9"; +} + +.iconicon_scan:before { + content: "\ebba"; +} + +.iconicon_secret:before { + content: "\ebbb"; +} + +.iconicon_share:before { + content: "\ebbc"; +} + +.iconicon_task:before { + content: "\ebbd"; +} + +.iconicon_threeline_fill:before { + content: "\ebbe"; +} + +.iconicon_study:before { + content: "\ebbf"; +} + +.iconicon_wechat:before { + content: "\ebc0"; +} + +.iconicon_sport:before { + content: "\ebc1"; +} + +.iconicon_work:before { + content: "\ebc2"; +} + +.iconicon_workmore:before { + content: "\ebc3"; +} + +.iconicon_safety:before { + content: "\ebc4"; +} + +.iconicon_workset:before { + content: "\ebc5"; +} + +.iconicon_shield:before { + content: "\ebc6"; +} + +.iconjiahao:before { + content: "\e72b"; +} + +.iconjiahao1:before { + content: "\e72c"; +} + +.iconjiahao2fill:before { + content: "\e72d"; +} + +.iconjianhao:before { + content: "\e72e"; +} + +.icontishifill:before { + content: "\e72f"; +} + +.icontishi:before { + content: "\e734"; +} + +.iconwenhaofill:before { + content: "\e737"; +} + +.iconwenhao:before { + content: "\e739"; +} + +.iconxuanze:before { + content: "\e73b"; +} + +.iconyuanxingweixuanzhong:before { + content: "\e73e"; +} + +.iconyuanxingxuanzhongfill:before { + content: "\e73f"; +} + +.iconyuanxingxuanzhong:before { + content: "\e742"; +} + +.iconbiaoxingfill:before { + content: "\e743"; +} + +.iconbiaoxing:before { + content: "\e744"; +} + +.iconchexiao:before { + content: "\e745"; +} + +.icondianpufill:before { + content: "\e746"; +} + +.icondianpu:before { + content: "\e747"; +} + +.icondingdan:before { + content: "\e748"; +} + +.iconfankui:before { + content: "\e749"; +} + +.iconfenxiang3:before { + content: "\e74b"; +} + +.icongengduo2:before { + content: "\e74c"; +} + +.icongonglve:before { + content: "\e74d"; +} + +.icongouwuchefill:before { + content: "\e74e"; +} + +.icongouwuche:before { + content: "\e754"; +} + +.icongouwudai:before { + content: "\e755"; +} + +.iconqiapianxingshi:before { + content: "\e756"; +} + +.iconkefufill:before { + content: "\e75a"; +} + +.iconkefu:before { + content: "\e75c"; +} + +.iconliebiaoxingshi:before { + content: "\e75e"; +} + +.iconliuyanfill:before { + content: "\e75f"; +} + +.iconliuyan:before { + content: "\e760"; +} + +.iconpengyoufill:before { + content: "\e761"; +} + +.iconpengyou:before { + content: "\e762"; +} + +.iconqingchu:before { + content: "\e764"; +} + +.iconquan:before { + content: "\e765"; +} + +.iconsaoma:before { + content: "\e766"; +} + +.iconshaixuan:before { + content: "\e769"; +} + +.iconshanchu:before { + content: "\e76a"; +} + +.iconshezhi:before { + content: "\e76b"; +} + +.iconshizhongfill:before { + content: "\e76c"; +} + +.iconshizhong:before { + content: "\e76d"; +} + +.iconshouyefill:before { + content: "\e76e"; +} + +.iconshouye:before { + content: "\e76f"; +} + +.iconsousuo1:before { + content: "\e770"; +} + +.iconsousuoleimufill:before { + content: "\e771"; +} + +.iconsousuoleimu:before { + content: "\e772"; +} + +.icontongzhifill:before { + content: "\e773"; +} + +.icontongzhi:before { + content: "\e774"; +} + +.icontuikuan:before { + content: "\e77a"; +} + +.iconwodefill:before { + content: "\e77b"; +} + +.iconwode:before { + content: "\e77e"; +} + +.iconxihuanfill:before { + content: "\e77f"; +} + +.iconxihuan:before { + content: "\e780"; +} + +.iconxinxifill:before { + content: "\e781"; +} + +.iconxinxi:before { + content: "\e782"; +} + +.iconzuji:before { + content: "\e783"; +} + +.iconzuobiaofill:before { + content: "\e784"; +} + +.iconzuobiao:before { + content: "\e785"; +} + +.icondibu:before { + content: "\e786"; +} + +.icondingbu:before { + content: "\e787"; +} + +.iconxiangshang1:before { + content: "\e788"; +} + +.iconxiangshang2:before { + content: "\e789"; +} + +.iconxiangshang3:before { + content: "\e78a"; +} + +.iconxiangshang5:before { + content: "\e78d"; +} + +.iconxiangxia1:before { + content: "\e78e"; +} + +.iconxiangxia2:before { + content: "\e78f"; +} + +.iconxiangxia3:before { + content: "\e790"; +} + +.iconxiangxia5:before { + content: "\e792"; +} + +.iconxiangyou2:before { + content: "\e793"; +} + +.iconxiangyou3fill:before { + content: "\e794"; +} + +.iconxiangyou3:before { + content: "\e795"; +} + +.iconxiangzuo1:before { + content: "\e796"; +} + +.iconxiangzuo2:before { + content: "\e797"; +} + +.iconxiangji1fill:before { + content: "\e798"; +} + +.iconxiangji1:before { + content: "\e799"; +} + +.iconjiazai:before { + content: "\e79a"; +} + +.iconshuaxin1:before { + content: "\e79b"; +} + +.iconsalefill:before { + content: "\e79c"; +} + +.iconsale:before { + content: "\e79d"; +} + +.iconandroidgengduo:before { + content: "\e79e"; +} + +.iconleimu:before { + content: "\e79f"; +} + +.iconbangzhuzhongxin:before { + content: "\e7a0"; +} + +.iconcaidan:before { + content: "\e7a1"; +} + +.iconzantongfill:before { + content: "\e7a2"; +} + +.iconzantong:before { + content: "\e7a3"; +} + +.iconxiangshang4:before { + content: "\e7a4"; +} + +.iconxiangxia4:before { + content: "\e7a5"; +} + +.icondanpin:before { + content: "\e7ab"; +} + +.iconpinpai:before { + content: "\e7b8"; +} + +.iconxiangbao:before { + content: "\e7ba"; +} + +.iconyishouchu:before { + content: "\e7bb"; +} + +.iconothers:before { + content: "\e7bc"; +} + +.icondanxuanfill:before { + content: "\e71e"; +} + +.icondanxuan:before { + content: "\e723"; +} + +.iconfangxingweixuanzhong:before { + content: "\e724"; +} + +.iconfangxingxuanzhongfill:before { + content: "\e725"; +} + +.iconfangxingxuanzhong:before { + content: "\e726"; +} + +.iconguanbi1:before { + content: "\e727"; +} + +.iconguanbi2fill:before { + content: "\e728"; +} + +.iconguanbi2:before { + content: "\e72a"; +} + +.iconfavor:before { + content: "\e67b"; +} + +.iconloading:before { + content: "\e67c"; +} + +.iconlocationfill:before { + content: "\e67d"; +} + +.iconroundcheckfill:before { + content: "\e67e"; +} + +.iconroundcheck:before { + content: "\e67f"; +} + +.iconroundclosefill:before { + content: "\e680"; +} + +.iconroundclose:before { + content: "\e681"; +} + +.iconroundrightfill:before { + content: "\e682"; +} + +.iconroundright:before { + content: "\e683"; +} + +.iconsearch1:before { + content: "\e684"; +} + +.icontimefill:before { + content: "\e685"; +} + +.icontime:before { + content: "\e686"; +} + +.iconunfold:before { + content: "\e687"; +} + +.iconwarnfill:before { + content: "\e688"; +} + +.iconwarn:before { + content: "\e689"; +} + +.iconcamerafill:before { + content: "\e68a"; +} + +.iconcamera1:before { + content: "\e68b"; +} + +.iconcommentfill:before { + content: "\e68c"; +} + +.iconcomment:before { + content: "\e68d"; +} + +.iconlikefill:before { + content: "\e68e"; +} + +.iconlike:before { + content: "\e68f"; +} + +.iconnotificationfill:before { + content: "\e690"; +} + +.iconnotification:before { + content: "\e691"; +} + +.iconorder:before { + content: "\e692"; +} + +.icondeliver:before { + content: "\e693"; +} + +.iconevaluate:before { + content: "\e694"; +} + +.iconpay:before { + content: "\e695"; +} + +.iconsend:before { + content: "\e696"; +} + +.iconshop:before { + content: "\e697"; +} + +.iconticket:before { + content: "\e698"; +} + +.iconcascades:before { + content: "\e699"; +} + +.iconlist:before { + content: "\e69a"; +} + +.iconmore:before { + content: "\e69b"; +} + +.iconscan:before { + content: "\e69c"; +} + +.iconsettings:before { + content: "\e69d"; +} + +.iconquestionfill:before { + content: "\e69e"; +} + +.iconquestion:before { + content: "\e69f"; +} + +.iconshopfill:before { + content: "\e6a0"; +} + +.iconform:before { + content: "\e6a1"; +} + +.iconpic:before { + content: "\e6a2"; +} + +.iconfootprint:before { + content: "\e6a3"; +} + +.icontop:before { + content: "\e6a4"; +} + +.iconpulldown:before { + content: "\e6a5"; +} + +.iconpullup:before { + content: "\e6a6"; +} + +.iconrefresh:before { + content: "\e6a7"; +} + +.iconmoreandroid:before { + content: "\e6a8"; +} + +.icondeletefill:before { + content: "\e6a9"; +} + +.iconrefund:before { + content: "\e6ac"; +} + +.iconcart1:before { + content: "\e6af"; +} + +.iconqrcode:before { + content: "\e6b0"; +} + +.iconremind:before { + content: "\e6b2"; +} + +.icondelete:before { + content: "\e6b4"; +} + +.iconprofile:before { + content: "\e6b7"; +} + +.iconhome1:before { + content: "\e6b8"; +} + +.iconcartfill:before { + content: "\e6b9"; +} + +.iconhomefill:before { + content: "\e6bb"; +} + +.iconmessage:before { + content: "\e6bc"; +} + +.iconaddressbook:before { + content: "\e6bd"; +} + +.iconlink:before { + content: "\e6bf"; +} + +.iconlock:before { + content: "\e6c0"; +} + +.iconunlock:before { + content: "\e6c2"; +} + +.iconvip:before { + content: "\e6c3"; +} + +.iconactivity:before { + content: "\e6c5"; +} + +.iconfriendaddfill:before { + content: "\e6c9"; +} + +.iconfriendadd:before { + content: "\e6ca"; +} + +.iconfriendfamous:before { + content: "\e6cb"; +} + +.iconfriend:before { + content: "\e6cc"; +} + +.icongoods:before { + content: "\e6cd"; +} + +.iconpresent:before { + content: "\e6d3"; +} + +.iconsquarecheckfill:before { + content: "\e6d4"; +} + +.iconsquare:before { + content: "\e6d5"; +} + +.iconsquarecheck:before { + content: "\e6d6"; +} + +.iconround:before { + content: "\e6d7"; +} + +.iconroundaddfill:before { + content: "\e6d8"; +} + +.iconroundadd:before { + content: "\e6d9"; +} + +.iconadd:before { + content: "\e6da"; +} + +.iconnotificationforbidfill:before { + content: "\e6db"; +} + +.iconfold:before { + content: "\e6de"; +} + +.iconappreciatefill:before { + content: "\e6e3"; +} + +.iconinfofill:before { + content: "\e6e4"; +} + +.iconinfo:before { + content: "\e6e5"; +} + +.iconrechargefill:before { + content: "\e6ec"; +} + +.iconrecharge:before { + content: "\e6ed"; +} + +.iconvipcard:before { + content: "\e6ee"; +} + +.iconfriendfavor:before { + content: "\e6f1"; +} + +.iconshare:before { + content: "\e6f3"; +} + +.iconservice:before { + content: "\e6ff"; +} + +.icondown:before { + content: "\e703"; +} + +.iconcopy:before { + content: "\e706"; +} + +.iconchoicenessfill:before { + content: "\e714"; +} + +.iconchoiceness:before { + content: "\e715"; +} + +.iconpullleft:before { + content: "\e71f"; +} + +.iconpullright:before { + content: "\e720"; +} + +.iconrankfill:before { + content: "\e721"; +} + +.iconrank:before { + content: "\e722"; +} + +.iconapps:before { + content: "\e729"; +} + +.iconmarkfill:before { + content: "\e730"; +} + +.iconmark:before { + content: "\e731"; +} + +.iconpresentfill:before { + content: "\e732"; +} + +.iconrepeal:before { + content: "\e733"; +} + +.iconpeoplefill:before { + content: "\e735"; +} + +.iconpeople:before { + content: "\e736"; +} + +.iconrepair:before { + content: "\e738"; +} + +.iconrepairfill:before { + content: "\e73a"; +} + +.iconattentionfill:before { + content: "\e73c"; +} + +.iconattention:before { + content: "\e73d"; +} + +.iconcommunityfill:before { + content: "\e740"; +} + +.iconcommunity:before { + content: "\e741"; +} + +.iconcalendar:before { + content: "\e74a"; +} + +.iconplayfill:before { + content: "\e74f"; +} + +.iconstop:before { + content: "\e750"; +} + +.icontagfill:before { + content: "\e751"; +} + +.icontag:before { + content: "\e752"; +} + +.icongroup:before { + content: "\e753"; +} + +.iconhotfill:before { + content: "\e757"; +} + +.iconhot:before { + content: "\e758"; +} + +.iconpost:before { + content: "\e759"; +} + +.iconradiobox:before { + content: "\e75b"; +} + +.iconupload:before { + content: "\e75d"; +} + +.iconradioboxfill:before { + content: "\e763"; +} + +.iconadd1:before { + content: "\e767"; +} + +.iconmove:before { + content: "\e768"; +} + +.iconactivityfill:before { + content: "\e775"; +} + +.iconcrownfill:before { + content: "\e776"; +} + +.iconcrown:before { + content: "\e777"; +} + +.icongoodsfill:before { + content: "\e778"; +} + +.iconmessagefill:before { + content: "\e779"; +} + +.iconsponsorfill:before { + content: "\e77c"; +} + +.iconsponsor:before { + content: "\e77d"; +} + +.iconmy:before { + content: "\e78b"; +} + +.iconmyfill:before { + content: "\e78c"; +} + +.icontext:before { + content: "\e791"; +} + +.iconroundaddlight:before { + content: "\e7a7"; +} + +.iconattentionforbid:before { + content: "\e7b2"; +} + +.iconattentionforbidfill:before { + content: "\e7b3"; +} + +.iconmail:before { + content: "\e7bd"; +} + +.iconpeoplelist:before { + content: "\e7be"; +} + +.iconnewshotfill:before { + content: "\e7c4"; +} + +.iconnewshot:before { + content: "\e7c5"; +} + +.iconvideofill:before { + content: "\e7c7"; +} + +.iconvideo:before { + content: "\e7c8"; +} + +.iconaskfill:before { + content: "\e7c9"; +} + +.iconask:before { + content: "\e7ca"; +} + +.iconexit:before { + content: "\e7cb"; +} + +.iconmoneybagfill:before { + content: "\e7ce"; +} + +.iconredpacket_fill:before { + content: "\e7d3"; +} + +.iconhome_light:before { + content: "\e7d4"; +} + +.iconmy_light:before { + content: "\e7d5"; +} + +.iconcommunity_light:before { + content: "\e7d6"; +} + +.iconcart_light:before { + content: "\e7d7"; +} + +.iconwe_light:before { + content: "\e7d8"; +} + +.iconhome_fill_light:before { + content: "\e7d9"; +} + +.iconcart_fill_light:before { + content: "\e7da"; +} + +.iconcommunity_fill_light:before { + content: "\e7db"; +} + +.iconmy_fill_light:before { + content: "\e7dc"; +} + +.iconwe_fill_light:before { + content: "\e7dd"; +} + +.iconsearch_light:before { + content: "\e7de"; +} + +.iconscan_light:before { + content: "\e7df"; +} + +.iconpeople_list_light:before { + content: "\e7e0"; +} + +.iconmessage_light:before { + content: "\e7e1"; +} + +.iconclose_light:before { + content: "\e7e2"; +} + +.iconadd_light:before { + content: "\e7e3"; +} + +.iconprofile_light:before { + content: "\e7e4"; +} + +.iconservice_light:before { + content: "\e7e5"; +} + +.iconfriend_add_light:before { + content: "\e7e6"; +} + +.iconedit_light:before { + content: "\e7e7"; +} + +.iconcamera_light:before { + content: "\e7e8"; +} + +.iconshare_light:before { + content: "\e7e9"; +} + +.iconcomment_light:before { + content: "\e7ea"; +} + +.iconappreciate_light:before { + content: "\e7eb"; +} + +.iconappreciate_fill_light:before { + content: "\e7ec"; +} + +.iconcomment_fill_light:before { + content: "\e7ed"; +} + +.iconmore_android_light:before { + content: "\e7ee"; +} + +.iconfriend_light:before { + content: "\e7ef"; +} + +.iconmore_light:before { + content: "\e7f0"; +} + +.icongoods_favor_light:before { + content: "\e7f1"; +} + +.icongoods_new_fill_light:before { + content: "\e7f2"; +} + +.icongoods_new_light:before { + content: "\e7f3"; +} + +.icongoods_light:before { + content: "\e7f4"; +} + +.iconfavor_fill_light:before { + content: "\e7f5"; +} + +.icondelete_light:before { + content: "\e7f6"; +} + +.iconback_android:before { + content: "\e7f7"; +} + +.iconback_android_light:before { + content: "\e7f8"; +} + +.icondown_light:before { + content: "\e7f9"; +} + +.iconround_close_light:before { + content: "\e7fa"; +} + +.iconround_close_fill_light:before { + content: "\e7fb"; +} + +.iconqr_code_light:before { + content: "\e7fc"; +} + +.iconfriend_settings_light:before { + content: "\e7fe"; +} + +.iconround_list_light:before { + content: "\e800"; +} + +.iconround_friend_fill:before { + content: "\e80a"; +} + +.iconround_crown_fill:before { + content: "\e80b"; +} + +.iconround_link_fill:before { + content: "\e80c"; +} + +.iconround_light_fill:before { + content: "\e80d"; +} + +.iconround_favor_fill:before { + content: "\e80e"; +} + +.iconround_menu_fill:before { + content: "\e80f"; +} + +.iconround_location_fill:before { + content: "\e810"; +} + +.iconround_pay_fill:before { + content: "\e811"; +} + +.iconround_like_fill:before { + content: "\e812"; +} + +.iconround_people_fill:before { + content: "\e813"; +} + +.iconround_pay:before { + content: "\e814"; +} + +.iconround_rank_fill:before { + content: "\e815"; +} + +.iconround_redpacket_fill:before { + content: "\e816"; +} + +.iconround_skin_fill:before { + content: "\e817"; +} + +.iconround_record_fill:before { + content: "\e818"; +} + +.iconround_ticket_fill:before { + content: "\e819"; +} + +.iconround_text_fill:before { + content: "\e81a"; +} + +.iconround_transfer_fill:before { + content: "\e81b"; +} + +.iconround_transfer:before { + content: "\e81c"; +} + +.iconarrow_left_fill:before { + content: "\e81d"; +} + +.iconarrow_up_fill:before { + content: "\e81e"; +} + +.iconreturn:before { + content: "\e81f"; +} + +.iconbroadcast_fill:before { + content: "\e820"; +} + +.iconappreciate:before { + content: "\e675"; +} + +.iconcheck:before { + content: "\e676"; +} + +.iconclose:before { + content: "\e677"; +} + +.iconedit:before { + content: "\e678"; +} + +.iconemoji:before { + content: "\e679"; +} + +.iconfavorfill:before { + content: "\e67a"; +} + +.iconliebiaomoshi2:before { + content: "\e61b"; +} + +.icondaifahuo:before { + content: "\e61c"; +} + +.icondaifukuan:before { + content: "\e61d"; +} + +.iconpaixing:before { + content: "\e61e"; +} + +.iconzanxuanzhong:before { + content: "\e61f"; +} + +.iconfenxiang1:before { + content: "\e620"; +} + +.iconfenxiang2:before { + content: "\e621"; +} + +.icongengduo1:before { + content: "\e622"; +} + +.iconcart:before { + content: "\e623"; +} + +.iconhome:before { + content: "\e624"; +} + +.iconhome2:before { + content: "\e625"; +} + +.iconcamera:before { + content: "\e626"; +} + +.iconcamera2:before { + content: "\e627"; +} + +.iconsearch:before { + content: "\e628"; +} + +.iconshuaxin:before { + content: "\e629"; +} + +.iconmine:before { + content: "\e62a"; +} + +.iconmine2:before { + content: "\e62b"; +} + +.icontabulation:before { + content: "\e62c"; +} + +.iconliebiao2:before { + content: "\e62d"; +} + +.iconiconfontscan:before { + content: "\e62e"; +} + +.iconquanbudingdan1:before { + content: "\e62f"; +} + +.icon31shoucangxuanzhong:before { + content: "\e630"; +} + +.icon31shoucang:before { + content: "\e631"; +} + +.icon31guanbi:before { + content: "\e632"; +} + +.icon31xuanze:before { + content: "\e633"; +} + +.icon31guanzhudianpu:before { + content: "\e634"; +} + +.icon31xuanzhong:before { + content: "\e635"; +} + +.icon31yiguanzhudianpu:before { + content: "\e636"; +} + +.icon31dianzan:before { + content: "\e637"; +} + +.icon31dianpu:before { + content: "\e638"; +} + +.icon31fenxiang:before { + content: "\e639"; +} + +.icon31zhuanfa:before { + content: "\e63a"; +} + +.icon31daifahuo:before { + content: "\e63b"; +} + +.icon31daifukuan:before { + content: "\e63c"; +} + +.icon31daishouhuo:before { + content: "\e63d"; +} + +.icon31daipingjia:before { + content: "\e63e"; +} + +.icontuikuantuihuo:before { + content: "\e63f"; +} + +.icon31huiyuanqia:before { + content: "\e640"; +} + +.icon31jifen:before { + content: "\e641"; +} + +.icon31youhuiquan:before { + content: "\e642"; +} + +.icon31tianmaobao:before { + content: "\e643"; +} + +.icon31hongbao:before { + content: "\e644"; +} + +.icon31fanerxuanzhong:before { + content: "\e645"; +} + +.icon31faner:before { + content: "\e646"; +} + +.icon31gouwuchexuanzhong:before { + content: "\e647"; +} + +.icon31gouwuche:before { + content: "\e648"; +} + +.icon31shouyexuanzhong:before { + content: "\e649"; +} + +.icon31shouye:before { + content: "\e64a"; +} + +.icon31wodexuanzhong:before { + content: "\e64b"; +} + +.icon31wode:before { + content: "\e64c"; +} + +.iconliwuhuodong:before { + content: "\e64d"; +} + +.iconliebiaomoshi:before { + content: "\e64e"; +} + +.iconzhongtumoshi:before { + content: "\e64f"; +} + +.iconchakan:before { + content: "\e650"; +} + +.iconguanbi:before { + content: "\e651"; +} + +.iconguanzhu:before { + content: "\e652"; +} + +.iconlaba:before { + content: "\e653"; +} + +.icon31paishexuanzhong:before { + content: "\e654"; +} + +.icon31paishe:before { + content: "\e655"; +} + +.icon31rexiao:before { + content: "\e656"; +} + +.icon31saoma:before { + content: "\e657"; +} + +.icon31shangxin:before { + content: "\e658"; +} + +.icon31shuaxin:before { + content: "\e659"; +} + +.icon31sousuo:before { + content: "\e65a"; +} + +.icon31tishi:before { + content: "\e65b"; +} + +.icon31xiaoxi:before { + content: "\e65c"; +} + +.icon31yiwen:before { + content: "\e65d"; +} + +.icon31dingdan:before { + content: "\e65e"; +} + +.icon31guanzhu1xuanzhong:before { + content: "\e65f"; +} + +.icon31guanzhu1:before { + content: "\e660"; +} + +.icon31huidaodingbu:before { + content: "\e661"; +} + +.icon31zuji:before { + content: "\e662"; +} + +.icon31leimu:before { + content: "\e663"; +} + +.icon31liebiao:before { + content: "\e664"; +} + +.icon31chiping:before { + content: "\e665"; +} + +.icon31erweima:before { + content: "\e666"; +} + +.iconbianji:before { + content: "\e667"; +} + +.icon31fanhui:before { + content: "\e668"; +} + +.icon31huiyuan:before { + content: "\e669"; +} + +.icon31pinglun:before { + content: "\e66a"; +} + +.icon31qiandao:before { + content: "\e66b"; +} + +.icon31quanbushangpin:before { + content: "\e66c"; +} + +.icon31shangsheng:before { + content: "\e66d"; +} + +.icon31shezhi:before { + content: "\e66e"; +} + +.icon31shijian:before { + content: "\e66f"; +} + +.icon31shouqi:before { + content: "\e670"; +} + +.icon31xiajiang:before { + content: "\e671"; +} + +.icon31xiala:before { + content: "\e672"; +} + +.icon31tishi1:before { + content: "\e673"; +} + +.icon31haoyou:before { + content: "\e674"; +} + +.iconsaoyisao:before { + content: "\e600"; +} + +.iconsousuo:before { + content: "\e601"; +} + +.iconfenxiang:before { + content: "\e602"; +} + +.iconfenlei:before { + content: "\e603"; +} + +.iconhuanyipi:before { + content: "\e604"; +} + +.iconxiugaioryijian:before { + content: "\e605"; +} + +.iconweixin:before { + content: "\e606"; +} + +.iconshangsheng:before { + content: "\e607"; +} + +.iconerweima:before { + content: "\e608"; +} + +.iconlianjie:before { + content: "\e609"; +} + +.icondianzan:before { + content: "\e60a"; +} + +.iconfanhui8:before { + content: "\e60b"; +} + +.iconfanhui7:before { + content: "\e60c"; +} + +.iconfanhui6:before { + content: "\e60d"; +} + +.iconfanhui5:before { + content: "\e60e"; +} + +.icongengduo:before { + content: "\e60f"; +} + +.iconshoucangxuanzhong:before { + content: "\e610"; +} + +.iconshoucang:before { + content: "\e611"; +} + +.iconfanhui1:before { + content: "\e612"; +} + +.iconfanhui2:before { + content: "\e613"; +} + +.iconfanhui3:before { + content: "\e614"; +} + +.iconfanhui4:before { + content: "\e615"; +} + +.iconhuidaodingbu:before { + content: "\e616"; +} + +.icongouwuchexuanzhong:before { + content: "\e617"; +} + +.iconwodexuanzhong:before { + content: "\e618"; +} + +.iconquanbudingdan:before { + content: "\e619"; +} + +.icondaishouhuo:before { + content: "\e61a"; +} + diff --git a/static/img/common/home.png b/static/img/common/home.png new file mode 100644 index 0000000..22492e4 Binary files /dev/null and b/static/img/common/home.png differ diff --git a/static/img/common/home_HL.png b/static/img/common/home_HL.png new file mode 100644 index 0000000..92ff22c Binary files /dev/null and b/static/img/common/home_HL.png differ diff --git a/static/img/common/lang.png b/static/img/common/lang.png new file mode 100644 index 0000000..37a8c32 Binary files /dev/null and b/static/img/common/lang.png differ diff --git a/static/img/common/user.png b/static/img/common/user.png new file mode 100644 index 0000000..6bf0d1a Binary files /dev/null and b/static/img/common/user.png differ diff --git a/static/img/common/user_HL.png b/static/img/common/user_HL.png new file mode 100644 index 0000000..c6d1238 Binary files /dev/null and b/static/img/common/user_HL.png differ diff --git a/static/img/index/aixz.png b/static/img/index/aixz.png new file mode 100644 index 0000000..47fdbbb Binary files /dev/null and b/static/img/index/aixz.png differ diff --git a/static/img/index/banner.png b/static/img/index/banner.png new file mode 100644 index 0000000..68c56d8 Binary files /dev/null and b/static/img/index/banner.png differ diff --git a/static/img/index/kthf.png b/static/img/index/kthf.png new file mode 100644 index 0000000..d3301d4 Binary files /dev/null and b/static/img/index/kthf.png differ diff --git a/static/img/index/liucheng.png b/static/img/index/liucheng.png new file mode 100644 index 0000000..6edb45d Binary files /dev/null and b/static/img/index/liucheng.png differ diff --git a/static/img/index/notice.png b/static/img/index/notice.png new file mode 100644 index 0000000..91ba1e5 Binary files /dev/null and b/static/img/index/notice.png differ diff --git a/static/img/index/pic.png b/static/img/index/pic.png new file mode 100644 index 0000000..4633f6d Binary files /dev/null and b/static/img/index/pic.png differ diff --git a/static/img/index/right.png b/static/img/index/right.png new file mode 100644 index 0000000..638ed26 Binary files /dev/null and b/static/img/index/right.png differ diff --git a/static/img/index/scan.png b/static/img/index/scan.png new file mode 100644 index 0000000..3cc0234 Binary files /dev/null and b/static/img/index/scan.png differ diff --git a/static/img/index/title_kt.png b/static/img/index/title_kt.png new file mode 100644 index 0000000..95fd44f Binary files /dev/null and b/static/img/index/title_kt.png differ diff --git a/static/img/index/title_xz.png b/static/img/index/title_xz.png new file mode 100644 index 0000000..b685fc8 Binary files /dev/null and b/static/img/index/title_xz.png differ diff --git a/static/img/index/title_zj.png b/static/img/index/title_zj.png new file mode 100644 index 0000000..d5ff573 Binary files /dev/null and b/static/img/index/title_zj.png differ diff --git a/static/img/index/zj_icon.png b/static/img/index/zj_icon.png new file mode 100644 index 0000000..59b41b8 Binary files /dev/null and b/static/img/index/zj_icon.png differ diff --git a/static/img/index/zjgs.png b/static/img/index/zjgs.png new file mode 100644 index 0000000..f344dee Binary files /dev/null and b/static/img/index/zjgs.png differ diff --git a/static/img/index/zjhc.png b/static/img/index/zjhc.png new file mode 100644 index 0000000..c6827c7 Binary files /dev/null and b/static/img/index/zjhc.png differ diff --git a/static/img/user/account.png b/static/img/user/account.png new file mode 100644 index 0000000..8e7b4bb Binary files /dev/null and b/static/img/user/account.png differ diff --git a/static/img/user/avatar.png b/static/img/user/avatar.png new file mode 100644 index 0000000..595da44 Binary files /dev/null and b/static/img/user/avatar.png differ diff --git a/static/img/user/banner.jpg b/static/img/user/banner.jpg new file mode 100644 index 0000000..2a59eb3 Binary files /dev/null and b/static/img/user/banner.jpg differ diff --git a/static/img/user/chat.png b/static/img/user/chat.png new file mode 100644 index 0000000..15c0876 Binary files /dev/null and b/static/img/user/chat.png differ diff --git a/static/img/user/code.png b/static/img/user/code.png new file mode 100644 index 0000000..82157c2 Binary files /dev/null and b/static/img/user/code.png differ diff --git a/static/img/user/img.png b/static/img/user/img.png new file mode 100644 index 0000000..b023b41 Binary files /dev/null and b/static/img/user/img.png differ diff --git a/static/img/user/link.png b/static/img/user/link.png new file mode 100644 index 0000000..ab38b59 Binary files /dev/null and b/static/img/user/link.png differ diff --git a/static/img/user/money_log.png b/static/img/user/money_log.png new file mode 100644 index 0000000..9a9acb1 Binary files /dev/null and b/static/img/user/money_log.png differ diff --git a/static/img/user/noshop.png b/static/img/user/noshop.png new file mode 100644 index 0000000..ec6598e Binary files /dev/null and b/static/img/user/noshop.png differ diff --git a/static/img/user/order_all.png b/static/img/user/order_all.png new file mode 100644 index 0000000..ccc7bea Binary files /dev/null and b/static/img/user/order_all.png differ diff --git a/static/img/user/order_finish.png b/static/img/user/order_finish.png new file mode 100644 index 0000000..f925f74 Binary files /dev/null and b/static/img/user/order_finish.png differ diff --git a/static/img/user/order_ing.png b/static/img/user/order_ing.png new file mode 100644 index 0000000..2273d00 Binary files /dev/null and b/static/img/user/order_ing.png differ diff --git a/static/img/user/topbg.png b/static/img/user/topbg.png new file mode 100644 index 0000000..0a6765c Binary files /dev/null and b/static/img/user/topbg.png differ diff --git a/static/json/city.json b/static/json/city.json new file mode 100644 index 0000000..11f9902 --- /dev/null +++ b/static/json/city.json @@ -0,0 +1,7904 @@ +[{ + "name": "北京", + "city": [{ + "name": "北京市", + "area": [{ + "name": "东城区" + }, { + "name": "西城区" + }, { + "name": "朝阳区" + }, { + "name": "丰台区" + }, { + "name": "石景山区" + }, { + "name": "海淀区" + }, { + "name": "门头沟区" + }, { + "name": "房山区" + }, { + "name": "通州区" + }, { + "name": "顺义区" + }, { + "name": "昌平区" + }, { + "name": "大兴区" + }, { + "name": "怀柔区" + }, { + "name": "平谷区" + }, { + "name": "密云县" + }, { + "name": "延庆县" + }] + }] +}, { + "name": "天津", + "city": [{ + "name": "天津市", + "area": [{ + "name": "和平区" + }, { + "name": "河东区" + }, { + "name": "河西区" + }, { + "name": "南开区" + }, { + "name": "河北区" + }, { + "name": "红桥区" + }, { + "name": "东丽区" + }, { + "name": "西青区" + }, { + "name": "津南区" + }, { + "name": "北辰区" + }, { + "name": "武清区" + }, { + "name": "宝坻区" + }, { + "name": "滨海新区" + }, { + "name": "宁河县" + }, { + "name": "静海县" + }, { + "name": "蓟县" + }] + }] +}, { + "name": "河北省", + "city": [{ + "name": "石家庄市", + "area": [{ + "name": "长安区" + }, { + "name": "桥西区" + }, { + "name": "新华区" + }, { + "name": "井陉矿区" + }, { + "name": "裕华区" + }, { + "name": "藁城区" + }, { + "name": "鹿泉区" + }, { + "name": "栾城区" + }, { + "name": "井陉县" + }, { + "name": "正定县" + }, { + "name": "行唐县" + }, { + "name": "灵寿县" + }, { + "name": "高邑县" + }, { + "name": "深泽县" + }, { + "name": "赞皇县" + }, { + "name": "无极县" + }, { + "name": "平山县" + }, { + "name": "元氏县" + }, { + "name": "赵县" + }, { + "name": "辛集市" + }, { + "name": "晋州市" + }, { + "name": "新乐市" + }] + }, { + "name": "唐山市", + "area": [{ + "name": "路南区" + }, { + "name": "路北区" + }, { + "name": "古冶区" + }, { + "name": "开平区" + }, { + "name": "丰南区" + }, { + "name": "丰润区" + }, { + "name": "曹妃甸区" + }, { + "name": "滦县" + }, { + "name": "滦南县" + }, { + "name": "乐亭县" + }, { + "name": "迁西县" + }, { + "name": "玉田县" + }, { + "name": "遵化市" + }, { + "name": "迁安市" + }] + }, { + "name": "秦皇岛市", + "area": [{ + "name": "海港区" + }, { + "name": "山海关区" + }, { + "name": "北戴河区" + }, { + "name": "青龙满族自治县" + }, { + "name": "昌黎县" + }, { + "name": "抚宁县" + }, { + "name": "卢龙县" + }] + }, { + "name": "邯郸市", + "area": [{ + "name": "邯山区" + }, { + "name": "丛台区" + }, { + "name": "复兴区" + }, { + "name": "峰峰矿区" + }, { + "name": "邯郸县" + }, { + "name": "临漳县" + }, { + "name": "成安县" + }, { + "name": "大名县" + }, { + "name": "涉县" + }, { + "name": "磁县" + }, { + "name": "肥乡县" + }, { + "name": "永年县" + }, { + "name": "邱县" + }, { + "name": "鸡泽县" + }, { + "name": "广平县" + }, { + "name": "馆陶县" + }, { + "name": "魏县" + }, { + "name": "曲周县" + }, { + "name": "武安市" + }] + }, { + "name": "邢台市", + "area": [{ + "name": "桥东区" + }, { + "name": "桥西区" + }, { + "name": "邢台县" + }, { + "name": "临城县" + }, { + "name": "内丘县" + }, { + "name": "柏乡县" + }, { + "name": "隆尧县" + }, { + "name": "任县" + }, { + "name": "南和县" + }, { + "name": "宁晋县" + }, { + "name": "巨鹿县" + }, { + "name": "新河县" + }, { + "name": "广宗县" + }, { + "name": "平乡县" + }, { + "name": "威县" + }, { + "name": "清河县" + }, { + "name": "临西县" + }, { + "name": "南宫市" + }, { + "name": "沙河市" + }] + }, { + "name": "保定市", + "area": [{ + "name": "新市区" + }, { + "name": "北市区" + }, { + "name": "南市区" + }, { + "name": "满城县" + }, { + "name": "清苑县" + }, { + "name": "涞水县" + }, { + "name": "阜平县" + }, { + "name": "徐水县" + }, { + "name": "定兴县" + }, { + "name": "唐县" + }, { + "name": "高阳县" + }, { + "name": "容城县" + }, { + "name": "涞源县" + }, { + "name": "望都县" + }, { + "name": "安新县" + }, { + "name": "易县" + }, { + "name": "曲阳县" + }, { + "name": "蠡县" + }, { + "name": "顺平县" + }, { + "name": "博野县" + }, { + "name": "雄县" + }, { + "name": "涿州市" + }, { + "name": "定州市" + }, { + "name": "安国市" + }, { + "name": "高碑店市" + }] + }, { + "name": "张家口市", + "area": [{ + "name": "桥东区" + }, { + "name": "桥西区" + }, { + "name": "宣化区" + }, { + "name": "下花园区" + }, { + "name": "宣化县" + }, { + "name": "张北县" + }, { + "name": "康保县" + }, { + "name": "沽源县" + }, { + "name": "尚义县" + }, { + "name": "蔚县" + }, { + "name": "阳原县" + }, { + "name": "怀安县" + }, { + "name": "万全县" + }, { + "name": "怀来县" + }, { + "name": "涿鹿县" + }, { + "name": "赤城县" + }, { + "name": "崇礼县" + }] + }, { + "name": "承德市", + "area": [{ + "name": "双桥区" + }, { + "name": "双滦区" + }, { + "name": "鹰手营子矿区" + }, { + "name": "承德县" + }, { + "name": "兴隆县" + }, { + "name": "平泉县" + }, { + "name": "滦平县" + }, { + "name": "隆化县" + }, { + "name": "丰宁满族自治县" + }, { + "name": "宽城满族自治县" + }, { + "name": "围场满族蒙古族自治县" + }] + }, { + "name": "沧州市", + "area": [{ + "name": "新华区" + }, { + "name": "运河区" + }, { + "name": "沧县" + }, { + "name": "青县" + }, { + "name": "东光县" + }, { + "name": "海兴县" + }, { + "name": "盐山县" + }, { + "name": "肃宁县" + }, { + "name": "南皮县" + }, { + "name": "吴桥县" + }, { + "name": "献县" + }, { + "name": "孟村回族自治县" + }, { + "name": "泊头市" + }, { + "name": "任丘市" + }, { + "name": "黄骅市" + }, { + "name": "河间市" + }] + }, { + "name": "廊坊市", + "area": [{ + "name": "安次区" + }, { + "name": "广阳区" + }, { + "name": "固安县" + }, { + "name": "永清县" + }, { + "name": "香河县" + }, { + "name": "大城县" + }, { + "name": "文安县" + }, { + "name": "大厂回族自治县" + }, { + "name": "霸州市" + }, { + "name": "三河市" + }] + }, { + "name": "衡水市", + "area": [{ + "name": "桃城区" + }, { + "name": "枣强县" + }, { + "name": "武邑县" + }, { + "name": "武强县" + }, { + "name": "饶阳县" + }, { + "name": "安平县" + }, { + "name": "故城县" + }, { + "name": "景县" + }, { + "name": "阜城县" + }, { + "name": "冀州市" + }, { + "name": "深州市" + }] + }] +}, { + "name": "山西省", + "city": [{ + "name": "太原市", + "area": [{ + "name": "小店区" + }, { + "name": "迎泽区" + }, { + "name": "杏花岭区" + }, { + "name": "尖草坪区" + }, { + "name": "万柏林区" + }, { + "name": "晋源区" + }, { + "name": "清徐县" + }, { + "name": "阳曲县" + }, { + "name": "娄烦县" + }, { + "name": "古交市" + }] + }, { + "name": "大同市", + "area": [{ + "name": "城区" + }, { + "name": "矿区" + }, { + "name": "南郊区" + }, { + "name": "新荣区" + }, { + "name": "阳高县" + }, { + "name": "天镇县" + }, { + "name": "广灵县" + }, { + "name": "灵丘县" + }, { + "name": "浑源县" + }, { + "name": "左云县" + }, { + "name": "大同县" + }] + }, { + "name": "阳泉市", + "area": [{ + "name": "城区" + }, { + "name": "矿区" + }, { + "name": "郊区" + }, { + "name": "平定县" + }, { + "name": "盂县" + }] + }, { + "name": "长治市", + "area": [{ + "name": "城区" + }, { + "name": "郊区" + }, { + "name": "长治县" + }, { + "name": "襄垣县" + }, { + "name": "屯留县" + }, { + "name": "平顺县" + }, { + "name": "黎城县" + }, { + "name": "壶关县" + }, { + "name": "长子县" + }, { + "name": "武乡县" + }, { + "name": "沁县" + }, { + "name": "沁源县" + }, { + "name": "潞城市" + }] + }, { + "name": "晋城市", + "area": [{ + "name": "城区" + }, { + "name": "沁水县" + }, { + "name": "阳城县" + }, { + "name": "陵川县" + }, { + "name": "泽州县" + }, { + "name": "高平市" + }] + }, { + "name": "朔州市", + "area": [{ + "name": "朔城区" + }, { + "name": "平鲁区" + }, { + "name": "山阴县" + }, { + "name": "应县" + }, { + "name": "右玉县" + }, { + "name": "怀仁县" + }] + }, { + "name": "晋中市", + "area": [{ + "name": "榆次区" + }, { + "name": "榆社县" + }, { + "name": "左权县" + }, { + "name": "和顺县" + }, { + "name": "昔阳县" + }, { + "name": "寿阳县" + }, { + "name": "太谷县" + }, { + "name": "祁县" + }, { + "name": "平遥县" + }, { + "name": "灵石县" + }, { + "name": "介休市" + }] + }, { + "name": "运城市", + "area": [{ + "name": "盐湖区" + }, { + "name": "临猗县" + }, { + "name": "万荣县" + }, { + "name": "闻喜县" + }, { + "name": "稷山县" + }, { + "name": "新绛县" + }, { + "name": "绛县" + }, { + "name": "垣曲县" + }, { + "name": "夏县" + }, { + "name": "平陆县" + }, { + "name": "芮城县" + }, { + "name": "永济市" + }, { + "name": "河津市" + }] + }, { + "name": "忻州市", + "area": [{ + "name": "忻府区" + }, { + "name": "定襄县" + }, { + "name": "五台县" + }, { + "name": "代县" + }, { + "name": "繁峙县" + }, { + "name": "宁武县" + }, { + "name": "静乐县" + }, { + "name": "神池县" + }, { + "name": "五寨县" + }, { + "name": "岢岚县" + }, { + "name": "河曲县" + }, { + "name": "保德县" + }, { + "name": "偏关县" + }, { + "name": "原平市" + }] + }, { + "name": "临汾市", + "area": [{ + "name": "尧都区" + }, { + "name": "曲沃县" + }, { + "name": "翼城县" + }, { + "name": "襄汾县" + }, { + "name": "洪洞县" + }, { + "name": "古县" + }, { + "name": "安泽县" + }, { + "name": "浮山县" + }, { + "name": "吉县" + }, { + "name": "乡宁县" + }, { + "name": "大宁县" + }, { + "name": "隰县" + }, { + "name": "永和县" + }, { + "name": "蒲县" + }, { + "name": "汾西县" + }, { + "name": "侯马市" + }, { + "name": "霍州市" + }] + }, { + "name": "吕梁市", + "area": [{ + "name": "离石区" + }, { + "name": "文水县" + }, { + "name": "交城县" + }, { + "name": "兴县" + }, { + "name": "临县" + }, { + "name": "柳林县" + }, { + "name": "石楼县" + }, { + "name": "岚县" + }, { + "name": "方山县" + }, { + "name": "中阳县" + }, { + "name": "交口县" + }, { + "name": "孝义市" + }, { + "name": "汾阳市" + }] + }] +}, { + "name": "内蒙古自治区", + "city": [{ + "name": "呼和浩特市", + "area": [{ + "name": "新城区" + }, { + "name": "回民区" + }, { + "name": "玉泉区" + }, { + "name": "赛罕区" + }, { + "name": "土默特左旗" + }, { + "name": "托克托县" + }, { + "name": "和林格尔县" + }, { + "name": "清水河县" + }, { + "name": "武川县" + }] + }, { + "name": "包头市", + "area": [{ + "name": "东河区" + }, { + "name": "昆都仑区" + }, { + "name": "青山区" + }, { + "name": "石拐区" + }, { + "name": "白云鄂博矿区" + }, { + "name": "九原区" + }, { + "name": "土默特右旗" + }, { + "name": "固阳县" + }, { + "name": "达尔罕茂明安联合旗" + }] + }, { + "name": "乌海市", + "area": [{ + "name": "海勃湾区" + }, { + "name": "海南区" + }, { + "name": "乌达区" + }] + }, { + "name": "赤峰市", + "area": [{ + "name": "红山区" + }, { + "name": "元宝山区" + }, { + "name": "松山区" + }, { + "name": "阿鲁科尔沁旗" + }, { + "name": "巴林左旗" + }, { + "name": "巴林右旗" + }, { + "name": "林西县" + }, { + "name": "克什克腾旗" + }, { + "name": "翁牛特旗" + }, { + "name": "喀喇沁旗" + }, { + "name": "宁城县" + }, { + "name": "敖汉旗" + }] + }, { + "name": "通辽市", + "area": [{ + "name": "科尔沁区" + }, { + "name": "科尔沁左翼中旗" + }, { + "name": "科尔沁左翼后旗" + }, { + "name": "开鲁县" + }, { + "name": "库伦旗" + }, { + "name": "奈曼旗" + }, { + "name": "扎鲁特旗" + }, { + "name": "霍林郭勒市" + }] + }, { + "name": "鄂尔多斯市", + "area": [{ + "name": "东胜区" + }, { + "name": "达拉特旗" + }, { + "name": "准格尔旗" + }, { + "name": "鄂托克前旗" + }, { + "name": "鄂托克旗" + }, { + "name": "杭锦旗" + }, { + "name": "乌审旗" + }, { + "name": "伊金霍洛旗" + }] + }, { + "name": "呼伦贝尔市", + "area": [{ + "name": "海拉尔区" + }, { + "name": "扎赉诺尔区" + }, { + "name": "阿荣旗" + }, { + "name": "莫力达瓦达斡尔族自治旗" + }, { + "name": "鄂伦春自治旗" + }, { + "name": "鄂温克族自治旗" + }, { + "name": "陈巴尔虎旗" + }, { + "name": "新巴尔虎左旗" + }, { + "name": "新巴尔虎右旗" + }, { + "name": "满洲里市" + }, { + "name": "牙克石市" + }, { + "name": "扎兰屯市" + }, { + "name": "额尔古纳市" + }, { + "name": "根河市" + }] + }, { + "name": "巴彦淖尔市", + "area": [{ + "name": "临河区" + }, { + "name": "五原县" + }, { + "name": "磴口县" + }, { + "name": "乌拉特前旗" + }, { + "name": "乌拉特中旗" + }, { + "name": "乌拉特后旗" + }, { + "name": "杭锦后旗" + }] + }, { + "name": "乌兰察布市", + "area": [{ + "name": "集宁区" + }, { + "name": "卓资县" + }, { + "name": "化德县" + }, { + "name": "商都县" + }, { + "name": "兴和县" + }, { + "name": "凉城县" + }, { + "name": "察哈尔右翼前旗" + }, { + "name": "察哈尔右翼中旗" + }, { + "name": "察哈尔右翼后旗" + }, { + "name": "四子王旗" + }, { + "name": "丰镇市" + }] + }, { + "name": "兴安盟", + "area": [{ + "name": "乌兰浩特市" + }, { + "name": "阿尔山市" + }, { + "name": "科尔沁右翼前旗" + }, { + "name": "科尔沁右翼中旗" + }, { + "name": "扎赉特旗" + }, { + "name": "突泉县" + }] + }, { + "name": "锡林郭勒盟", + "area": [{ + "name": "二连浩特市" + }, { + "name": "锡林浩特市" + }, { + "name": "阿巴嘎旗" + }, { + "name": "苏尼特左旗" + }, { + "name": "苏尼特右旗" + }, { + "name": "东乌珠穆沁旗" + }, { + "name": "西乌珠穆沁旗" + }, { + "name": "太仆寺旗" + }, { + "name": "镶黄旗" + }, { + "name": "正镶白旗" + }, { + "name": "正蓝旗" + }, { + "name": "多伦县" + }] + }, { + "name": "阿拉善盟", + "area": [{ + "name": "阿拉善左旗" + }, { + "name": "阿拉善右旗" + }, { + "name": "额济纳旗" + }] + }] +}, { + "name": "辽宁省", + "city": [{ + "name": "沈阳市", + "area": [{ + "name": "和平区" + }, { + "name": "沈河区" + }, { + "name": "大东区" + }, { + "name": "皇姑区" + }, { + "name": "铁西区" + }, { + "name": "苏家屯区" + }, { + "name": "浑南区" + }, { + "name": "沈北新区" + }, { + "name": "于洪区" + }, { + "name": "辽中县" + }, { + "name": "康平县" + }, { + "name": "法库县" + }, { + "name": "新民市" + }] + }, { + "name": "大连市", + "area": [{ + "name": "中山区" + }, { + "name": "西岗区" + }, { + "name": "沙河口区" + }, { + "name": "甘井子区" + }, { + "name": "旅顺口区" + }, { + "name": "金州区" + }, { + "name": "长海县" + }, { + "name": "瓦房店市" + }, { + "name": "普兰店市" + }, { + "name": "庄河市" + }] + }, { + "name": "鞍山市", + "area": [{ + "name": "铁东区" + }, { + "name": "铁西区" + }, { + "name": "立山区" + }, { + "name": "千山区" + }, { + "name": "台安县" + }, { + "name": "岫岩满族自治县" + }, { + "name": "海城市" + }] + }, { + "name": "抚顺市", + "area": [{ + "name": "新抚区" + }, { + "name": "东洲区" + }, { + "name": "望花区" + }, { + "name": "顺城区" + }, { + "name": "抚顺县" + }, { + "name": "新宾满族自治县" + }, { + "name": "清原满族自治县" + }] + }, { + "name": "本溪市", + "area": [{ + "name": "平山区" + }, { + "name": "溪湖区" + }, { + "name": "明山区" + }, { + "name": "南芬区" + }, { + "name": "本溪满族自治县" + }, { + "name": "桓仁满族自治县" + }] + }, { + "name": "丹东市", + "area": [{ + "name": "元宝区" + }, { + "name": "振兴区" + }, { + "name": "振安区" + }, { + "name": "宽甸满族自治县" + }, { + "name": "东港市" + }, { + "name": "凤城市" + }] + }, { + "name": "锦州市", + "area": [{ + "name": "古塔区" + }, { + "name": "凌河区" + }, { + "name": "太和区" + }, { + "name": "黑山县" + }, { + "name": "义县" + }, { + "name": "凌海市" + }, { + "name": "北镇市" + }] + }, { + "name": "营口市", + "area": [{ + "name": "站前区" + }, { + "name": "西市区" + }, { + "name": "鲅鱼圈区" + }, { + "name": "老边区" + }, { + "name": "盖州市" + }, { + "name": "大石桥市" + }] + }, { + "name": "阜新市", + "area": [{ + "name": "海州区" + }, { + "name": "新邱区" + }, { + "name": "太平区" + }, { + "name": "清河门区" + }, { + "name": "细河区" + }, { + "name": "阜新蒙古族自治县" + }, { + "name": "彰武县" + }] + }, { + "name": "辽阳市", + "area": [{ + "name": "白塔区" + }, { + "name": "文圣区" + }, { + "name": "宏伟区" + }, { + "name": "弓长岭区" + }, { + "name": "太子河区" + }, { + "name": "辽阳县" + }, { + "name": "灯塔市" + }] + }, { + "name": "盘锦市", + "area": [{ + "name": "双台子区" + }, { + "name": "兴隆台区" + }, { + "name": "大洼县" + }, { + "name": "盘山县" + }] + }, { + "name": "铁岭市", + "area": [{ + "name": "银州区" + }, { + "name": "清河区" + }, { + "name": "铁岭县" + }, { + "name": "西丰县" + }, { + "name": "昌图县" + }, { + "name": "调兵山市" + }, { + "name": "开原市" + }] + }, { + "name": "朝阳市", + "area": [{ + "name": "双塔区" + }, { + "name": "龙城区" + }, { + "name": "朝阳县" + }, { + "name": "建平县" + }, { + "name": "喀喇沁左翼蒙古族自治县" + }, { + "name": "北票市" + }, { + "name": "凌源市" + }] + }, { + "name": "葫芦岛市", + "area": [{ + "name": "连山区" + }, { + "name": "龙港区" + }, { + "name": "南票区" + }, { + "name": "绥中县" + }, { + "name": "建昌县" + }, { + "name": "兴城市" + }] + }, { + "name": "金普新区", + "area": [{ + "name": "金州新区" + }, { + "name": "普湾新区" + }, { + "name": "保税区" + }] + }] +}, { + "name": "吉林省", + "city": [{ + "name": "长春市", + "area": [{ + "name": "南关区" + }, { + "name": "宽城区" + }, { + "name": "朝阳区" + }, { + "name": "二道区" + }, { + "name": "绿园区" + }, { + "name": "双阳区" + }, { + "name": "九台区" + }, { + "name": "农安县" + }, { + "name": "榆树市" + }, { + "name": "德惠市" + }] + }, { + "name": "吉林市", + "area": [{ + "name": "昌邑区" + }, { + "name": "龙潭区" + }, { + "name": "船营区" + }, { + "name": "丰满区" + }, { + "name": "永吉县" + }, { + "name": "蛟河市" + }, { + "name": "桦甸市" + }, { + "name": "舒兰市" + }, { + "name": "磐石市" + }] + }, { + "name": "四平市", + "area": [{ + "name": "铁西区" + }, { + "name": "铁东区" + }, { + "name": "梨树县" + }, { + "name": "伊通满族自治县" + }, { + "name": "公主岭市" + }, { + "name": "双辽市" + }] + }, { + "name": "辽源市", + "area": [{ + "name": "龙山区" + }, { + "name": "西安区" + }, { + "name": "东丰县" + }, { + "name": "东辽县" + }] + }, { + "name": "通化市", + "area": [{ + "name": "东昌区" + }, { + "name": "二道江区" + }, { + "name": "通化县" + }, { + "name": "辉南县" + }, { + "name": "柳河县" + }, { + "name": "梅河口市" + }, { + "name": "集安市" + }] + }, { + "name": "白山市", + "area": [{ + "name": "浑江区" + }, { + "name": "江源区" + }, { + "name": "抚松县" + }, { + "name": "靖宇县" + }, { + "name": "长白朝鲜族自治县" + }, { + "name": "临江市" + }] + }, { + "name": "松原市", + "area": [{ + "name": "宁江区" + }, { + "name": "前郭尔罗斯蒙古族自治县" + }, { + "name": "长岭县" + }, { + "name": "乾安县" + }, { + "name": "扶余市" + }] + }, { + "name": "白城市", + "area": [{ + "name": "洮北区" + }, { + "name": "镇赉县" + }, { + "name": "通榆县" + }, { + "name": "洮南市" + }, { + "name": "大安市" + }] + }, { + "name": "延边朝鲜族自治州", + "area": [{ + "name": "延吉市" + }, { + "name": "图们市" + }, { + "name": "敦化市" + }, { + "name": "珲春市" + }, { + "name": "龙井市" + }, { + "name": "和龙市" + }, { + "name": "汪清县" + }, { + "name": "安图县" + }] + }] +}, { + "name": "黑龙江省", + "city": [{ + "name": "哈尔滨市", + "area": [{ + "name": "道里区" + }, { + "name": "南岗区" + }, { + "name": "道外区" + }, { + "name": "平房区" + }, { + "name": "松北区" + }, { + "name": "香坊区" + }, { + "name": "呼兰区" + }, { + "name": "阿城区" + }, { + "name": "双城区" + }, { + "name": "依兰县" + }, { + "name": "方正县" + }, { + "name": "宾县" + }, { + "name": "巴彦县" + }, { + "name": "木兰县" + }, { + "name": "通河县" + }, { + "name": "延寿县" + }, { + "name": "尚志市" + }, { + "name": "五常市" + }] + }, { + "name": "齐齐哈尔市", + "area": [{ + "name": "龙沙区" + }, { + "name": "建华区" + }, { + "name": "铁锋区" + }, { + "name": "昂昂溪区" + }, { + "name": "富拉尔基区" + }, { + "name": "碾子山区" + }, { + "name": "梅里斯达斡尔族区" + }, { + "name": "龙江县" + }, { + "name": "依安县" + }, { + "name": "泰来县" + }, { + "name": "甘南县" + }, { + "name": "富裕县" + }, { + "name": "克山县" + }, { + "name": "克东县" + }, { + "name": "拜泉县" + }, { + "name": "讷河市" + }] + }, { + "name": "鸡西市", + "area": [{ + "name": "鸡冠区" + }, { + "name": "恒山区" + }, { + "name": "滴道区" + }, { + "name": "梨树区" + }, { + "name": "城子河区" + }, { + "name": "麻山区" + }, { + "name": "鸡东县" + }, { + "name": "虎林市" + }, { + "name": "密山市" + }] + }, { + "name": "鹤岗市", + "area": [{ + "name": "向阳区" + }, { + "name": "工农区" + }, { + "name": "南山区" + }, { + "name": "兴安区" + }, { + "name": "东山区" + }, { + "name": "兴山区" + }, { + "name": "萝北县" + }, { + "name": "绥滨县" + }] + }, { + "name": "双鸭山市", + "area": [{ + "name": "尖山区" + }, { + "name": "岭东区" + }, { + "name": "四方台区" + }, { + "name": "宝山区" + }, { + "name": "集贤县" + }, { + "name": "友谊县" + }, { + "name": "宝清县" + }, { + "name": "饶河县" + }] + }, { + "name": "大庆市", + "area": [{ + "name": "萨尔图区" + }, { + "name": "龙凤区" + }, { + "name": "让胡路区" + }, { + "name": "红岗区" + }, { + "name": "大同区" + }, { + "name": "肇州县" + }, { + "name": "肇源县" + }, { + "name": "林甸县" + }, { + "name": "杜尔伯特蒙古族自治县" + }] + }, { + "name": "伊春市", + "area": [{ + "name": "伊春区" + }, { + "name": "南岔区" + }, { + "name": "友好区" + }, { + "name": "西林区" + }, { + "name": "翠峦区" + }, { + "name": "新青区" + }, { + "name": "美溪区" + }, { + "name": "金山屯区" + }, { + "name": "五营区" + }, { + "name": "乌马河区" + }, { + "name": "汤旺河区" + }, { + "name": "带岭区" + }, { + "name": "乌伊岭区" + }, { + "name": "红星区" + }, { + "name": "上甘岭区" + }, { + "name": "嘉荫县" + }, { + "name": "铁力市" + }] + }, { + "name": "佳木斯市", + "area": [{ + "name": "向阳区" + }, { + "name": "前进区" + }, { + "name": "东风区" + }, { + "name": "郊区" + }, { + "name": "桦南县" + }, { + "name": "桦川县" + }, { + "name": "汤原县" + }, { + "name": "抚远县" + }, { + "name": "同江市" + }, { + "name": "富锦市" + }] + }, { + "name": "七台河市", + "area": [{ + "name": "新兴区" + }, { + "name": "桃山区" + }, { + "name": "茄子河区" + }, { + "name": "勃利县" + }] + }, { + "name": "牡丹江市", + "area": [{ + "name": "东安区" + }, { + "name": "阳明区" + }, { + "name": "爱民区" + }, { + "name": "西安区" + }, { + "name": "东宁县" + }, { + "name": "林口县" + }, { + "name": "绥芬河市" + }, { + "name": "海林市" + }, { + "name": "宁安市" + }, { + "name": "穆棱市" + }] + }, { + "name": "黑河市", + "area": [{ + "name": "爱辉区" + }, { + "name": "嫩江县" + }, { + "name": "逊克县" + }, { + "name": "孙吴县" + }, { + "name": "北安市" + }, { + "name": "五大连池市" + }] + }, { + "name": "绥化市", + "area": [{ + "name": "北林区" + }, { + "name": "望奎县" + }, { + "name": "兰西县" + }, { + "name": "青冈县" + }, { + "name": "庆安县" + }, { + "name": "明水县" + }, { + "name": "绥棱县" + }, { + "name": "安达市" + }, { + "name": "肇东市" + }, { + "name": "海伦市" + }] + }, { + "name": "大兴安岭地区", + "area": [{ + "name": "加格达奇区" + }, { + "name": "新林区" + }, { + "name": "松岭区" + }, { + "name": "呼中区" + }, { + "name": "呼玛县" + }, { + "name": "塔河县" + }, { + "name": "漠河县" + }] + }] +}, { + "name": "上海", + "city": [{ + "name": "上海市", + "area": [{ + "name": "黄浦区" + }, { + "name": "徐汇区" + }, { + "name": "长宁区" + }, { + "name": "静安区" + }, { + "name": "普陀区" + }, { + "name": "闸北区" + }, { + "name": "虹口区" + }, { + "name": "杨浦区" + }, { + "name": "闵行区" + }, { + "name": "宝山区" + }, { + "name": "嘉定区" + }, { + "name": "浦东新区" + }, { + "name": "金山区" + }, { + "name": "松江区" + }, { + "name": "青浦区" + }, { + "name": "奉贤区" + }, { + "name": "崇明县" + }] + }] +}, { + "name": "江苏省", + "city": [{ + "name": "南京市", + "area": [{ + "name": "玄武区" + }, { + "name": "秦淮区" + }, { + "name": "建邺区" + }, { + "name": "鼓楼区" + }, { + "name": "浦口区" + }, { + "name": "栖霞区" + }, { + "name": "雨花台区" + }, { + "name": "江宁区" + }, { + "name": "六合区" + }, { + "name": "溧水区" + }, { + "name": "高淳区" + }] + }, { + "name": "无锡市", + "area": [{ + "name": "崇安区" + }, { + "name": "南长区" + }, { + "name": "北塘区" + }, { + "name": "锡山区" + }, { + "name": "惠山区" + }, { + "name": "滨湖区" + }, { + "name": "江阴市" + }, { + "name": "宜兴市" + }] + }, { + "name": "徐州市", + "area": [{ + "name": "鼓楼区" + }, { + "name": "云龙区" + }, { + "name": "贾汪区" + }, { + "name": "泉山区" + }, { + "name": "铜山区" + }, { + "name": "丰县" + }, { + "name": "沛县" + }, { + "name": "睢宁县" + }, { + "name": "新沂市" + }, { + "name": "邳州市" + }] + }, { + "name": "常州市", + "area": [{ + "name": "天宁区" + }, { + "name": "钟楼区" + }, { + "name": "戚墅堰区" + }, { + "name": "新北区" + }, { + "name": "武进区" + }, { + "name": "溧阳市" + }, { + "name": "金坛市" + }] + }, { + "name": "苏州市", + "area": [{ + "name": "虎丘区" + }, { + "name": "吴中区" + }, { + "name": "相城区" + }, { + "name": "姑苏区" + }, { + "name": "吴江区" + }, { + "name": "常熟市" + }, { + "name": "张家港市" + }, { + "name": "昆山市" + }, { + "name": "太仓市" + }] + }, { + "name": "南通市", + "area": [{ + "name": "崇川区" + }, { + "name": "港闸区" + }, { + "name": "通州区" + }, { + "name": "海安县" + }, { + "name": "如东县" + }, { + "name": "启东市" + }, { + "name": "如皋市" + }, { + "name": "海门市" + }] + }, { + "name": "连云港市", + "area": [{ + "name": "连云区" + }, { + "name": "海州区" + }, { + "name": "赣榆区" + }, { + "name": "东海县" + }, { + "name": "灌云县" + }, { + "name": "灌南县" + }] + }, { + "name": "淮安市", + "area": [{ + "name": "清河区" + }, { + "name": "淮安区" + }, { + "name": "淮阴区" + }, { + "name": "清浦区" + }, { + "name": "涟水县" + }, { + "name": "洪泽县" + }, { + "name": "盱眙县" + }, { + "name": "金湖县" + }] + }, { + "name": "盐城市", + "area": [{ + "name": "亭湖区" + }, { + "name": "盐都区" + }, { + "name": "响水县" + }, { + "name": "滨海县" + }, { + "name": "阜宁县" + }, { + "name": "射阳县" + }, { + "name": "建湖县" + }, { + "name": "东台市" + }, { + "name": "大丰市" + }] + }, { + "name": "扬州市", + "area": [{ + "name": "广陵区" + }, { + "name": "邗江区" + }, { + "name": "江都区" + }, { + "name": "宝应县" + }, { + "name": "仪征市" + }, { + "name": "高邮市" + }] + }, { + "name": "镇江市", + "area": [{ + "name": "京口区" + }, { + "name": "润州区" + }, { + "name": "丹徒区" + }, { + "name": "丹阳市" + }, { + "name": "扬中市" + }, { + "name": "句容市" + }] + }, { + "name": "泰州市", + "area": [{ + "name": "海陵区" + }, { + "name": "高港区" + }, { + "name": "姜堰区" + }, { + "name": "兴化市" + }, { + "name": "靖江市" + }, { + "name": "泰兴市" + }] + }, { + "name": "宿迁市", + "area": [{ + "name": "宿城区" + }, { + "name": "宿豫区" + }, { + "name": "沭阳县" + }, { + "name": "泗阳县" + }, { + "name": "泗洪县" + }] + }] +}, { + "name": "浙江省", + "city": [{ + "name": "杭州市", + "area": [{ + "name": "上城区" + }, { + "name": "下城区" + }, { + "name": "江干区" + }, { + "name": "拱墅区" + }, { + "name": "西湖区" + }, { + "name": "滨江区" + }, { + "name": "萧山区" + }, { + "name": "余杭区" + }, { + "name": "桐庐县" + }, { + "name": "淳安县" + }, { + "name": "建德市" + }, { + "name": "富阳区" + }, { + "name": "临安市" + }] + }, { + "name": "宁波市", + "area": [{ + "name": "海曙区" + }, { + "name": "江东区" + }, { + "name": "江北区" + }, { + "name": "北仑区" + }, { + "name": "镇海区" + }, { + "name": "鄞州区" + }, { + "name": "象山县" + }, { + "name": "宁海县" + }, { + "name": "余姚市" + }, { + "name": "慈溪市" + }, { + "name": "奉化市" + }] + }, { + "name": "温州市", + "area": [{ + "name": "鹿城区" + }, { + "name": "龙湾区" + }, { + "name": "瓯海区" + }, { + "name": "洞头县" + }, { + "name": "永嘉县" + }, { + "name": "平阳县" + }, { + "name": "苍南县" + }, { + "name": "文成县" + }, { + "name": "泰顺县" + }, { + "name": "瑞安市" + }, { + "name": "乐清市" + }] + }, { + "name": "嘉兴市", + "area": [{ + "name": "南湖区" + }, { + "name": "秀洲区" + }, { + "name": "嘉善县" + }, { + "name": "海盐县" + }, { + "name": "海宁市" + }, { + "name": "平湖市" + }, { + "name": "桐乡市" + }] + }, { + "name": "湖州市", + "area": [{ + "name": "吴兴区" + }, { + "name": "南浔区" + }, { + "name": "德清县" + }, { + "name": "长兴县" + }, { + "name": "安吉县" + }] + }, { + "name": "绍兴市", + "area": [{ + "name": "越城区" + }, { + "name": "柯桥区" + }, { + "name": "上虞区" + }, { + "name": "新昌县" + }, { + "name": "诸暨市" + }, { + "name": "嵊州市" + }] + }, { + "name": "金华市", + "area": [{ + "name": "婺城区" + }, { + "name": "金东区" + }, { + "name": "武义县" + }, { + "name": "浦江县" + }, { + "name": "磐安县" + }, { + "name": "兰溪市" + }, { + "name": "义乌市" + }, { + "name": "东阳市" + }, { + "name": "永康市" + }] + }, { + "name": "衢州市", + "area": [{ + "name": "柯城区" + }, { + "name": "衢江区" + }, { + "name": "常山县" + }, { + "name": "开化县" + }, { + "name": "龙游县" + }, { + "name": "江山市" + }] + }, { + "name": "舟山市", + "area": [{ + "name": "定海区" + }, { + "name": "普陀区" + }, { + "name": "岱山县" + }, { + "name": "嵊泗县" + }] + }, { + "name": "台州市", + "area": [{ + "name": "椒江区" + }, { + "name": "黄岩区" + }, { + "name": "路桥区" + }, { + "name": "玉环县" + }, { + "name": "三门县" + }, { + "name": "天台县" + }, { + "name": "仙居县" + }, { + "name": "温岭市" + }, { + "name": "临海市" + }] + }, { + "name": "丽水市", + "area": [{ + "name": "莲都区" + }, { + "name": "青田县" + }, { + "name": "缙云县" + }, { + "name": "遂昌县" + }, { + "name": "松阳县" + }, { + "name": "云和县" + }, { + "name": "庆元县" + }, { + "name": "景宁畲族自治县" + }, { + "name": "龙泉市" + }] + }, { + "name": "舟山群岛新区", + "area": [{ + "name": "金塘岛" + }, { + "name": "六横岛" + }, { + "name": "衢山岛" + }, { + "name": "舟山本岛西北部" + }, { + "name": "岱山岛西南部" + }, { + "name": "泗礁岛" + }, { + "name": "朱家尖岛" + }, { + "name": "洋山岛" + }, { + "name": "长涂岛" + }, { + "name": "虾峙岛" + }] + }] +}, { + "name": "安徽省", + "city": [{ + "name": "合肥市", + "area": [{ + "name": "瑶海区" + }, { + "name": "庐阳区" + }, { + "name": "蜀山区" + }, { + "name": "包河区" + }, { + "name": "长丰县" + }, { + "name": "肥东县" + }, { + "name": "肥西县" + }, { + "name": "庐江县" + }, { + "name": "巢湖市" + }] + }, { + "name": "芜湖市", + "area": [{ + "name": "镜湖区" + }, { + "name": "弋江区" + }, { + "name": "鸠江区" + }, { + "name": "三山区" + }, { + "name": "芜湖县" + }, { + "name": "繁昌县" + }, { + "name": "南陵县" + }, { + "name": "无为县" + }] + }, { + "name": "蚌埠市", + "area": [{ + "name": "龙子湖区" + }, { + "name": "蚌山区" + }, { + "name": "禹会区" + }, { + "name": "淮上区" + }, { + "name": "怀远县" + }, { + "name": "五河县" + }, { + "name": "固镇县" + }] + }, { + "name": "淮南市", + "area": [{ + "name": "大通区" + }, { + "name": "田家庵区" + }, { + "name": "谢家集区" + }, { + "name": "八公山区" + }, { + "name": "潘集区" + }, { + "name": "凤台县" + }] + }, { + "name": "马鞍山市", + "area": [{ + "name": "花山区" + }, { + "name": "雨山区" + }, { + "name": "博望区" + }, { + "name": "当涂县" + }, { + "name": "含山县" + }, { + "name": "和县" + }] + }, { + "name": "淮北市", + "area": [{ + "name": "杜集区" + }, { + "name": "相山区" + }, { + "name": "烈山区" + }, { + "name": "濉溪县" + }] + }, { + "name": "铜陵市", + "area": [{ + "name": "铜官山区" + }, { + "name": "狮子山区" + }, { + "name": "郊区" + }, { + "name": "铜陵县" + }] + }, { + "name": "安庆市", + "area": [{ + "name": "迎江区" + }, { + "name": "大观区" + }, { + "name": "宜秀区" + }, { + "name": "怀宁县" + }, { + "name": "枞阳县" + }, { + "name": "潜山县" + }, { + "name": "太湖县" + }, { + "name": "宿松县" + }, { + "name": "望江县" + }, { + "name": "岳西县" + }, { + "name": "桐城市" + }] + }, { + "name": "黄山市", + "area": [{ + "name": "屯溪区" + }, { + "name": "黄山区" + }, { + "name": "徽州区" + }, { + "name": "歙县" + }, { + "name": "休宁县" + }, { + "name": "黟县" + }, { + "name": "祁门县" + }] + }, { + "name": "滁州市", + "area": [{ + "name": "琅琊区" + }, { + "name": "南谯区" + }, { + "name": "来安县" + }, { + "name": "全椒县" + }, { + "name": "定远县" + }, { + "name": "凤阳县" + }, { + "name": "天长市" + }, { + "name": "明光市" + }] + }, { + "name": "阜阳市", + "area": [{ + "name": "颍州区" + }, { + "name": "颍东区" + }, { + "name": "颍泉区" + }, { + "name": "临泉县" + }, { + "name": "太和县" + }, { + "name": "阜南县" + }, { + "name": "颍上县" + }, { + "name": "界首市" + }] + }, { + "name": "宿州市", + "area": [{ + "name": "埇桥区" + }, { + "name": "砀山县" + }, { + "name": "萧县" + }, { + "name": "灵璧县" + }, { + "name": "泗县" + }] + }, { + "name": "六安市", + "area": [{ + "name": "金安区" + }, { + "name": "裕安区" + }, { + "name": "寿县" + }, { + "name": "霍邱县" + }, { + "name": "舒城县" + }, { + "name": "金寨县" + }, { + "name": "霍山县" + }] + }, { + "name": "亳州市", + "area": [{ + "name": "谯城区" + }, { + "name": "涡阳县" + }, { + "name": "蒙城县" + }, { + "name": "利辛县" + }] + }, { + "name": "池州市", + "area": [{ + "name": "贵池区" + }, { + "name": "东至县" + }, { + "name": "石台县" + }, { + "name": "青阳县" + }] + }, { + "name": "宣城市", + "area": [{ + "name": "宣州区" + }, { + "name": "郎溪县" + }, { + "name": "广德县" + }, { + "name": "泾县" + }, { + "name": "绩溪县" + }, { + "name": "旌德县" + }, { + "name": "宁国市" + }] + }] +}, { + "name": "福建省", + "city": [{ + "name": "福州市", + "area": [{ + "name": "鼓楼区" + }, { + "name": "台江区" + }, { + "name": "仓山区" + }, { + "name": "马尾区" + }, { + "name": "晋安区" + }, { + "name": "闽侯县" + }, { + "name": "连江县" + }, { + "name": "罗源县" + }, { + "name": "闽清县" + }, { + "name": "永泰县" + }, { + "name": "平潭县" + }, { + "name": "福清市" + }, { + "name": "长乐市" + }] + }, { + "name": "厦门市", + "area": [{ + "name": "思明区" + }, { + "name": "海沧区" + }, { + "name": "湖里区" + }, { + "name": "集美区" + }, { + "name": "同安区" + }, { + "name": "翔安区" + }] + }, { + "name": "莆田市", + "area": [{ + "name": "城厢区" + }, { + "name": "涵江区" + }, { + "name": "荔城区" + }, { + "name": "秀屿区" + }, { + "name": "仙游县" + }] + }, { + "name": "三明市", + "area": [{ + "name": "梅列区" + }, { + "name": "三元区" + }, { + "name": "明溪县" + }, { + "name": "清流县" + }, { + "name": "宁化县" + }, { + "name": "大田县" + }, { + "name": "尤溪县" + }, { + "name": "沙县" + }, { + "name": "将乐县" + }, { + "name": "泰宁县" + }, { + "name": "建宁县" + }, { + "name": "永安市" + }] + }, { + "name": "泉州市", + "area": [{ + "name": "鲤城区" + }, { + "name": "丰泽区" + }, { + "name": "洛江区" + }, { + "name": "泉港区" + }, { + "name": "惠安县" + }, { + "name": "安溪县" + }, { + "name": "永春县" + }, { + "name": "德化县" + }, { + "name": "金门县" + }, { + "name": "石狮市" + }, { + "name": "晋江市" + }, { + "name": "南安市" + }] + }, { + "name": "漳州市", + "area": [{ + "name": "芗城区" + }, { + "name": "龙文区" + }, { + "name": "云霄县" + }, { + "name": "漳浦县" + }, { + "name": "诏安县" + }, { + "name": "长泰县" + }, { + "name": "东山县" + }, { + "name": "南靖县" + }, { + "name": "平和县" + }, { + "name": "华安县" + }, { + "name": "龙海市" + }] + }, { + "name": "南平市", + "area": [{ + "name": "延平区" + }, { + "name": "建阳区" + }, { + "name": "顺昌县" + }, { + "name": "浦城县" + }, { + "name": "光泽县" + }, { + "name": "松溪县" + }, { + "name": "政和县" + }, { + "name": "邵武市" + }, { + "name": "武夷山市" + }, { + "name": "建瓯市" + }] + }, { + "name": "龙岩市", + "area": [{ + "name": "新罗区" + }, { + "name": "长汀县" + }, { + "name": "永定区" + }, { + "name": "上杭县" + }, { + "name": "武平县" + }, { + "name": "连城县" + }, { + "name": "漳平市" + }] + }, { + "name": "宁德市", + "area": [{ + "name": "蕉城区" + }, { + "name": "霞浦县" + }, { + "name": "古田县" + }, { + "name": "屏南县" + }, { + "name": "寿宁县" + }, { + "name": "周宁县" + }, { + "name": "柘荣县" + }, { + "name": "福安市" + }, { + "name": "福鼎市" + }] + }] +}, { + "name": "江西省", + "city": [{ + "name": "南昌市", + "area": [{ + "name": "东湖区" + }, { + "name": "西湖区" + }, { + "name": "青云谱区" + }, { + "name": "湾里区" + }, { + "name": "青山湖区" + }, { + "name": "南昌县" + }, { + "name": "新建县" + }, { + "name": "安义县" + }, { + "name": "进贤县" + }] + }, { + "name": "景德镇市", + "area": [{ + "name": "昌江区" + }, { + "name": "珠山区" + }, { + "name": "浮梁县" + }, { + "name": "乐平市" + }] + }, { + "name": "萍乡市", + "area": [{ + "name": "安源区" + }, { + "name": "湘东区" + }, { + "name": "莲花县" + }, { + "name": "上栗县" + }, { + "name": "芦溪县" + }] + }, { + "name": "九江市", + "area": [{ + "name": "庐山区" + }, { + "name": "浔阳区" + }, { + "name": "九江县" + }, { + "name": "武宁县" + }, { + "name": "修水县" + }, { + "name": "永修县" + }, { + "name": "德安县" + }, { + "name": "星子县" + }, { + "name": "都昌县" + }, { + "name": "湖口县" + }, { + "name": "彭泽县" + }, { + "name": "瑞昌市" + }, { + "name": "共青城市" + }] + }, { + "name": "新余市", + "area": [{ + "name": "渝水区" + }, { + "name": "分宜县" + }] + }, { + "name": "鹰潭市", + "area": [{ + "name": "月湖区" + }, { + "name": "余江县" + }, { + "name": "贵溪市" + }] + }, { + "name": "赣州市", + "area": [{ + "name": "章贡区" + }, { + "name": "南康区" + }, { + "name": "赣县" + }, { + "name": "信丰县" + }, { + "name": "大余县" + }, { + "name": "上犹县" + }, { + "name": "崇义县" + }, { + "name": "安远县" + }, { + "name": "龙南县" + }, { + "name": "定南县" + }, { + "name": "全南县" + }, { + "name": "宁都县" + }, { + "name": "于都县" + }, { + "name": "兴国县" + }, { + "name": "会昌县" + }, { + "name": "寻乌县" + }, { + "name": "石城县" + }, { + "name": "瑞金市" + }] + }, { + "name": "吉安市", + "area": [{ + "name": "吉州区" + }, { + "name": "青原区" + }, { + "name": "吉安县" + }, { + "name": "吉水县" + }, { + "name": "峡江县" + }, { + "name": "新干县" + }, { + "name": "永丰县" + }, { + "name": "泰和县" + }, { + "name": "遂川县" + }, { + "name": "万安县" + }, { + "name": "安福县" + }, { + "name": "永新县" + }, { + "name": "井冈山市" + }] + }, { + "name": "宜春市", + "area": [{ + "name": "袁州区" + }, { + "name": "奉新县" + }, { + "name": "万载县" + }, { + "name": "上高县" + }, { + "name": "宜丰县" + }, { + "name": "靖安县" + }, { + "name": "铜鼓县" + }, { + "name": "丰城市" + }, { + "name": "樟树市" + }, { + "name": "高安市" + }] + }, { + "name": "抚州市", + "area": [{ + "name": "临川区" + }, { + "name": "南城县" + }, { + "name": "黎川县" + }, { + "name": "南丰县" + }, { + "name": "崇仁县" + }, { + "name": "乐安县" + }, { + "name": "宜黄县" + }, { + "name": "金溪县" + }, { + "name": "资溪县" + }, { + "name": "东乡县" + }, { + "name": "广昌县" + }] + }, { + "name": "上饶市", + "area": [{ + "name": "信州区" + }, { + "name": "上饶县" + }, { + "name": "广丰县" + }, { + "name": "玉山县" + }, { + "name": "铅山县" + }, { + "name": "横峰县" + }, { + "name": "弋阳县" + }, { + "name": "余干县" + }, { + "name": "鄱阳县" + }, { + "name": "万年县" + }, { + "name": "婺源县" + }, { + "name": "德兴市" + }] + }] +}, { + "name": "山东省", + "city": [{ + "name": "济南市", + "area": [{ + "name": "历下区" + }, { + "name": "市中区" + }, { + "name": "槐荫区" + }, { + "name": "天桥区" + }, { + "name": "历城区" + }, { + "name": "长清区" + }, { + "name": "平阴县" + }, { + "name": "济阳县" + }, { + "name": "商河县" + }, { + "name": "章丘市" + }] + }, { + "name": "青岛市", + "area": [{ + "name": "市南区" + }, { + "name": "市北区" + }, { + "name": "黄岛区" + }, { + "name": "崂山区" + }, { + "name": "李沧区" + }, { + "name": "城阳区" + }, { + "name": "胶州市" + }, { + "name": "即墨市" + }, { + "name": "平度市" + }, { + "name": "莱西市" + }, { + "name": "西海岸新区" + }] + }, { + "name": "淄博市", + "area": [{ + "name": "淄川区" + }, { + "name": "张店区" + }, { + "name": "博山区" + }, { + "name": "临淄区" + }, { + "name": "周村区" + }, { + "name": "桓台县" + }, { + "name": "高青县" + }, { + "name": "沂源县" + }] + }, { + "name": "枣庄市", + "area": [{ + "name": "市中区" + }, { + "name": "薛城区" + }, { + "name": "峄城区" + }, { + "name": "台儿庄区" + }, { + "name": "山亭区" + }, { + "name": "滕州市" + }] + }, { + "name": "东营市", + "area": [{ + "name": "东营区" + }, { + "name": "河口区" + }, { + "name": "垦利县" + }, { + "name": "利津县" + }, { + "name": "广饶县" + }] + }, { + "name": "烟台市", + "area": [{ + "name": "芝罘区" + }, { + "name": "福山区" + }, { + "name": "牟平区" + }, { + "name": "莱山区" + }, { + "name": "长岛县" + }, { + "name": "龙口市" + }, { + "name": "莱阳市" + }, { + "name": "莱州市" + }, { + "name": "蓬莱市" + }, { + "name": "招远市" + }, { + "name": "栖霞市" + }, { + "name": "海阳市" + }] + }, { + "name": "潍坊市", + "area": [{ + "name": "潍城区" + }, { + "name": "寒亭区" + }, { + "name": "坊子区" + }, { + "name": "奎文区" + }, { + "name": "临朐县" + }, { + "name": "昌乐县" + }, { + "name": "青州市" + }, { + "name": "诸城市" + }, { + "name": "寿光市" + }, { + "name": "安丘市" + }, { + "name": "高密市" + }, { + "name": "昌邑市" + }] + }, { + "name": "济宁市", + "area": [{ + "name": "任城区" + }, { + "name": "兖州区" + }, { + "name": "微山县" + }, { + "name": "鱼台县" + }, { + "name": "金乡县" + }, { + "name": "嘉祥县" + }, { + "name": "汶上县" + }, { + "name": "泗水县" + }, { + "name": "梁山县" + }, { + "name": "曲阜市" + }, { + "name": "邹城市" + }] + }, { + "name": "泰安市", + "area": [{ + "name": "泰山区" + }, { + "name": "岱岳区" + }, { + "name": "宁阳县" + }, { + "name": "东平县" + }, { + "name": "新泰市" + }, { + "name": "肥城市" + }] + }, { + "name": "威海市", + "area": [{ + "name": "环翠区" + }, { + "name": "文登区" + }, { + "name": "荣成市" + }, { + "name": "乳山市" + }] + }, { + "name": "日照市", + "area": [{ + "name": "东港区" + }, { + "name": "岚山区" + }, { + "name": "五莲县" + }, { + "name": "莒县" + }] + }, { + "name": "莱芜市", + "area": [{ + "name": "莱城区" + }, { + "name": "钢城区" + }] + }, { + "name": "临沂市", + "area": [{ + "name": "兰山区" + }, { + "name": "罗庄区" + }, { + "name": "河东区" + }, { + "name": "沂南县" + }, { + "name": "郯城县" + }, { + "name": "沂水县" + }, { + "name": "兰陵县" + }, { + "name": "费县" + }, { + "name": "平邑县" + }, { + "name": "莒南县" + }, { + "name": "蒙阴县" + }, { + "name": "临沭县" + }] + }, { + "name": "德州市", + "area": [{ + "name": "德城区" + }, { + "name": "陵城区" + }, { + "name": "宁津县" + }, { + "name": "庆云县" + }, { + "name": "临邑县" + }, { + "name": "齐河县" + }, { + "name": "平原县" + }, { + "name": "夏津县" + }, { + "name": "武城县" + }, { + "name": "乐陵市" + }, { + "name": "禹城市" + }] + }, { + "name": "聊城市", + "area": [{ + "name": "东昌府区" + }, { + "name": "阳谷县" + }, { + "name": "莘县" + }, { + "name": "茌平县" + }, { + "name": "东阿县" + }, { + "name": "冠县" + }, { + "name": "高唐县" + }, { + "name": "临清市" + }] + }, { + "name": "滨州市", + "area": [{ + "name": "滨城区" + }, { + "name": "沾化区" + }, { + "name": "惠民县" + }, { + "name": "阳信县" + }, { + "name": "无棣县" + }, { + "name": "博兴县" + }, { + "name": "邹平县" + }, { + "name": "北海新区" + }] + }, { + "name": "菏泽市", + "area": [{ + "name": "牡丹区" + }, { + "name": "曹县" + }, { + "name": "单县" + }, { + "name": "成武县" + }, { + "name": "巨野县" + }, { + "name": "郓城县" + }, { + "name": "鄄城县" + }, { + "name": "定陶县" + }, { + "name": "东明县" + }] + }] +}, { + "name": "河南省", + "city": [{ + "name": "郑州市", + "area": [{ + "name": "中原区" + }, { + "name": "二七区" + }, { + "name": "管城回族区" + }, { + "name": "金水区" + }, { + "name": "上街区" + }, { + "name": "惠济区" + }, { + "name": "中牟县" + }, { + "name": "巩义市" + }, { + "name": "荥阳市" + }, { + "name": "新密市" + }, { + "name": "新郑市" + }, { + "name": "登封市" + }] + }, { + "name": "开封市", + "area": [{ + "name": "龙亭区" + }, { + "name": "顺河回族区" + }, { + "name": "鼓楼区" + }, { + "name": "禹王台区" + }, { + "name": "祥符区" + }, { + "name": "杞县" + }, { + "name": "通许县" + }, { + "name": "尉氏县" + }, { + "name": "兰考县" + }] + }, { + "name": "洛阳市", + "area": [{ + "name": "老城区" + }, { + "name": "西工区" + }, { + "name": "瀍河回族区" + }, { + "name": "涧西区" + }, { + "name": "吉利区" + }, { + "name": "洛龙区" + }, { + "name": "孟津县" + }, { + "name": "新安县" + }, { + "name": "栾川县" + }, { + "name": "嵩县" + }, { + "name": "汝阳县" + }, { + "name": "宜阳县" + }, { + "name": "洛宁县" + }, { + "name": "伊川县" + }, { + "name": "偃师市" + }] + }, { + "name": "平顶山市", + "area": [{ + "name": "新华区" + }, { + "name": "卫东区" + }, { + "name": "石龙区" + }, { + "name": "湛河区" + }, { + "name": "宝丰县" + }, { + "name": "叶县" + }, { + "name": "鲁山县" + }, { + "name": "郏县" + }, { + "name": "舞钢市" + }, { + "name": "汝州市" + }] + }, { + "name": "安阳市", + "area": [{ + "name": "文峰区" + }, { + "name": "北关区" + }, { + "name": "殷都区" + }, { + "name": "龙安区" + }, { + "name": "安阳县" + }, { + "name": "汤阴县" + }, { + "name": "滑县" + }, { + "name": "内黄县" + }, { + "name": "林州市" + }] + }, { + "name": "鹤壁市", + "area": [{ + "name": "鹤山区" + }, { + "name": "山城区" + }, { + "name": "淇滨区" + }, { + "name": "浚县" + }, { + "name": "淇县" + }] + }, { + "name": "新乡市", + "area": [{ + "name": "红旗区" + }, { + "name": "卫滨区" + }, { + "name": "凤泉区" + }, { + "name": "牧野区" + }, { + "name": "新乡县" + }, { + "name": "获嘉县" + }, { + "name": "原阳县" + }, { + "name": "延津县" + }, { + "name": "封丘县" + }, { + "name": "长垣县" + }, { + "name": "卫辉市" + }, { + "name": "辉县市" + }] + }, { + "name": "焦作市", + "area": [{ + "name": "解放区" + }, { + "name": "中站区" + }, { + "name": "马村区" + }, { + "name": "山阳区" + }, { + "name": "修武县" + }, { + "name": "博爱县" + }, { + "name": "武陟县" + }, { + "name": "温县" + }, { + "name": "沁阳市" + }, { + "name": "孟州市" + }] + }, { + "name": "濮阳市", + "area": [{ + "name": "华龙区" + }, { + "name": "清丰县" + }, { + "name": "南乐县" + }, { + "name": "范县" + }, { + "name": "台前县" + }, { + "name": "濮阳县" + }] + }, { + "name": "许昌市", + "area": [{ + "name": "魏都区" + }, { + "name": "许昌县" + }, { + "name": "鄢陵县" + }, { + "name": "襄城县" + }, { + "name": "禹州市" + }, { + "name": "长葛市" + }] + }, { + "name": "漯河市", + "area": [{ + "name": "源汇区" + }, { + "name": "郾城区" + }, { + "name": "召陵区" + }, { + "name": "舞阳县" + }, { + "name": "临颍县" + }] + }, { + "name": "三门峡市", + "area": [{ + "name": "湖滨区" + }, { + "name": "渑池县" + }, { + "name": "陕县" + }, { + "name": "卢氏县" + }, { + "name": "义马市" + }, { + "name": "灵宝市" + }] + }, { + "name": "南阳市", + "area": [{ + "name": "宛城区" + }, { + "name": "卧龙区" + }, { + "name": "南召县" + }, { + "name": "方城县" + }, { + "name": "西峡县" + }, { + "name": "镇平县" + }, { + "name": "内乡县" + }, { + "name": "淅川县" + }, { + "name": "社旗县" + }, { + "name": "唐河县" + }, { + "name": "新野县" + }, { + "name": "桐柏县" + }, { + "name": "邓州市" + }] + }, { + "name": "商丘市", + "area": [{ + "name": "梁园区" + }, { + "name": "睢阳区" + }, { + "name": "民权县" + }, { + "name": "睢县" + }, { + "name": "宁陵县" + }, { + "name": "柘城县" + }, { + "name": "虞城县" + }, { + "name": "夏邑县" + }, { + "name": "永城市" + }] + }, { + "name": "信阳市", + "area": [{ + "name": "浉河区" + }, { + "name": "平桥区" + }, { + "name": "罗山县" + }, { + "name": "光山县" + }, { + "name": "新县" + }, { + "name": "商城县" + }, { + "name": "固始县" + }, { + "name": "潢川县" + }, { + "name": "淮滨县" + }, { + "name": "息县" + }] + }, { + "name": "周口市", + "area": [{ + "name": "川汇区" + }, { + "name": "扶沟县" + }, { + "name": "西华县" + }, { + "name": "商水县" + }, { + "name": "沈丘县" + }, { + "name": "郸城县" + }, { + "name": "淮阳县" + }, { + "name": "太康县" + }, { + "name": "鹿邑县" + }, { + "name": "项城市" + }] + }, { + "name": "驻马店市", + "area": [{ + "name": "驿城区" + }, { + "name": "西平县" + }, { + "name": "上蔡县" + }, { + "name": "平舆县" + }, { + "name": "正阳县" + }, { + "name": "确山县" + }, { + "name": "泌阳县" + }, { + "name": "汝南县" + }, { + "name": "遂平县" + }, { + "name": "新蔡县" + }] + }, { + "name": "直辖县级", + "area": [{ + "name": "济源市" + }] + }] +}, { + "name": "湖北省", + "city": [{ + "name": "武汉市", + "area": [{ + "name": "江岸区" + }, { + "name": "江汉区" + }, { + "name": "硚口区" + }, { + "name": "汉阳区" + }, { + "name": "武昌区" + }, { + "name": "青山区" + }, { + "name": "洪山区" + }, { + "name": "东西湖区" + }, { + "name": "汉南区" + }, { + "name": "蔡甸区" + }, { + "name": "江夏区" + }, { + "name": "黄陂区" + }, { + "name": "新洲区" + }] + }, { + "name": "黄石市", + "area": [{ + "name": "黄石港区" + }, { + "name": "西塞山区" + }, { + "name": "下陆区" + }, { + "name": "铁山区" + }, { + "name": "阳新县" + }, { + "name": "大冶市" + }] + }, { + "name": "十堰市", + "area": [{ + "name": "茅箭区" + }, { + "name": "张湾区" + }, { + "name": "郧阳区" + }, { + "name": "郧西县" + }, { + "name": "竹山县" + }, { + "name": "竹溪县" + }, { + "name": "房县" + }, { + "name": "丹江口市" + }] + }, { + "name": "宜昌市", + "area": [{ + "name": "西陵区" + }, { + "name": "伍家岗区" + }, { + "name": "点军区" + }, { + "name": "猇亭区" + }, { + "name": "夷陵区" + }, { + "name": "远安县" + }, { + "name": "兴山县" + }, { + "name": "秭归县" + }, { + "name": "长阳土家族自治县" + }, { + "name": "五峰土家族自治县" + }, { + "name": "宜都市" + }, { + "name": "当阳市" + }, { + "name": "枝江市" + }] + }, { + "name": "襄阳市", + "area": [{ + "name": "襄城区" + }, { + "name": "樊城区" + }, { + "name": "襄州区" + }, { + "name": "南漳县" + }, { + "name": "谷城县" + }, { + "name": "保康县" + }, { + "name": "老河口市" + }, { + "name": "枣阳市" + }, { + "name": "宜城市" + }] + }, { + "name": "鄂州市", + "area": [{ + "name": "梁子湖区" + }, { + "name": "华容区" + }, { + "name": "鄂城区" + }] + }, { + "name": "荆门市", + "area": [{ + "name": "东宝区" + }, { + "name": "掇刀区" + }, { + "name": "京山县" + }, { + "name": "沙洋县" + }, { + "name": "钟祥市" + }] + }, { + "name": "孝感市", + "area": [{ + "name": "孝南区" + }, { + "name": "孝昌县" + }, { + "name": "大悟县" + }, { + "name": "云梦县" + }, { + "name": "应城市" + }, { + "name": "安陆市" + }, { + "name": "汉川市" + }] + }, { + "name": "荆州市", + "area": [{ + "name": "沙市区" + }, { + "name": "荆州区" + }, { + "name": "公安县" + }, { + "name": "监利县" + }, { + "name": "江陵县" + }, { + "name": "石首市" + }, { + "name": "洪湖市" + }, { + "name": "松滋市" + }] + }, { + "name": "黄冈市", + "area": [{ + "name": "黄州区" + }, { + "name": "团风县" + }, { + "name": "红安县" + }, { + "name": "罗田县" + }, { + "name": "英山县" + }, { + "name": "浠水县" + }, { + "name": "蕲春县" + }, { + "name": "黄梅县" + }, { + "name": "麻城市" + }, { + "name": "武穴市" + }] + }, { + "name": "咸宁市", + "area": [{ + "name": "咸安区" + }, { + "name": "嘉鱼县" + }, { + "name": "通城县" + }, { + "name": "崇阳县" + }, { + "name": "通山县" + }, { + "name": "赤壁市" + }] + }, { + "name": "随州市", + "area": [{ + "name": "曾都区" + }, { + "name": "随县" + }, { + "name": "广水市" + }] + }, { + "name": "恩施土家族苗族自治州", + "area": [{ + "name": "恩施市" + }, { + "name": "利川市" + }, { + "name": "建始县" + }, { + "name": "巴东县" + }, { + "name": "宣恩县" + }, { + "name": "咸丰县" + }, { + "name": "来凤县" + }, { + "name": "鹤峰县" + }] + }, { + "name": "直辖县级", + "area": [{ + "name": "仙桃市" + }, { + "name": "潜江市" + }, { + "name": "天门市" + }, { + "name": "神农架林区" + }] + }] +}, { + "name": "湖南省", + "city": [{ + "name": "长沙市", + "area": [{ + "name": "芙蓉区" + }, { + "name": "天心区" + }, { + "name": "岳麓区" + }, { + "name": "开福区" + }, { + "name": "雨花区" + }, { + "name": "望城区" + }, { + "name": "长沙县" + }, { + "name": "宁乡县" + }, { + "name": "浏阳市" + }] + }, { + "name": "株洲市", + "area": [{ + "name": "荷塘区" + }, { + "name": "芦淞区" + }, { + "name": "石峰区" + }, { + "name": "天元区" + }, { + "name": "株洲县" + }, { + "name": "攸县" + }, { + "name": "茶陵县" + }, { + "name": "炎陵县" + }, { + "name": "醴陵市" + }] + }, { + "name": "湘潭市", + "area": [{ + "name": "雨湖区" + }, { + "name": "岳塘区" + }, { + "name": "湘潭县" + }, { + "name": "湘乡市" + }, { + "name": "韶山市" + }] + }, { + "name": "衡阳市", + "area": [{ + "name": "珠晖区" + }, { + "name": "雁峰区" + }, { + "name": "石鼓区" + }, { + "name": "蒸湘区" + }, { + "name": "南岳区" + }, { + "name": "衡阳县" + }, { + "name": "衡南县" + }, { + "name": "衡山县" + }, { + "name": "衡东县" + }, { + "name": "祁东县" + }, { + "name": "耒阳市" + }, { + "name": "常宁市" + }] + }, { + "name": "邵阳市", + "area": [{ + "name": "双清区" + }, { + "name": "大祥区" + }, { + "name": "北塔区" + }, { + "name": "邵东县" + }, { + "name": "新邵县" + }, { + "name": "邵阳县" + }, { + "name": "隆回县" + }, { + "name": "洞口县" + }, { + "name": "绥宁县" + }, { + "name": "新宁县" + }, { + "name": "城步苗族自治县" + }, { + "name": "武冈市" + }] + }, { + "name": "岳阳市", + "area": [{ + "name": "岳阳楼区" + }, { + "name": "云溪区" + }, { + "name": "君山区" + }, { + "name": "岳阳县" + }, { + "name": "华容县" + }, { + "name": "湘阴县" + }, { + "name": "平江县" + }, { + "name": "汨罗市" + }, { + "name": "临湘市" + }] + }, { + "name": "常德市", + "area": [{ + "name": "武陵区" + }, { + "name": "鼎城区" + }, { + "name": "安乡县" + }, { + "name": "汉寿县" + }, { + "name": "澧县" + }, { + "name": "临澧县" + }, { + "name": "桃源县" + }, { + "name": "石门县" + }, { + "name": "津市市" + }] + }, { + "name": "张家界市", + "area": [{ + "name": "永定区" + }, { + "name": "武陵源区" + }, { + "name": "慈利县" + }, { + "name": "桑植县" + }] + }, { + "name": "益阳市", + "area": [{ + "name": "资阳区" + }, { + "name": "赫山区" + }, { + "name": "南县" + }, { + "name": "桃江县" + }, { + "name": "安化县" + }, { + "name": "沅江市" + }] + }, { + "name": "郴州市", + "area": [{ + "name": "北湖区" + }, { + "name": "苏仙区" + }, { + "name": "桂阳县" + }, { + "name": "宜章县" + }, { + "name": "永兴县" + }, { + "name": "嘉禾县" + }, { + "name": "临武县" + }, { + "name": "汝城县" + }, { + "name": "桂东县" + }, { + "name": "安仁县" + }, { + "name": "资兴市" + }] + }, { + "name": "永州市", + "area": [{ + "name": "零陵区" + }, { + "name": "冷水滩区" + }, { + "name": "祁阳县" + }, { + "name": "东安县" + }, { + "name": "双牌县" + }, { + "name": "道县" + }, { + "name": "江永县" + }, { + "name": "宁远县" + }, { + "name": "蓝山县" + }, { + "name": "新田县" + }, { + "name": "江华瑶族自治县" + }] + }, { + "name": "怀化市", + "area": [{ + "name": "鹤城区" + }, { + "name": "中方县" + }, { + "name": "沅陵县" + }, { + "name": "辰溪县" + }, { + "name": "溆浦县" + }, { + "name": "会同县" + }, { + "name": "麻阳苗族自治县" + }, { + "name": "新晃侗族自治县" + }, { + "name": "芷江侗族自治县" + }, { + "name": "靖州苗族侗族自治县" + }, { + "name": "通道侗族自治县" + }, { + "name": "洪江市" + }] + }, { + "name": "娄底市", + "area": [{ + "name": "娄星区" + }, { + "name": "双峰县" + }, { + "name": "新化县" + }, { + "name": "冷水江市" + }, { + "name": "涟源市" + }] + }, { + "name": "湘西土家族苗族自治州", + "area": [{ + "name": "吉首市" + }, { + "name": "泸溪县" + }, { + "name": "凤凰县" + }, { + "name": "花垣县" + }, { + "name": "保靖县" + }, { + "name": "古丈县" + }, { + "name": "永顺县" + }, { + "name": "龙山县" + }] + }] +}, { + "name": "广东省", + "city": [{ + "name": "广州市", + "area": [{ + "name": "荔湾区" + }, { + "name": "越秀区" + }, { + "name": "海珠区" + }, { + "name": "天河区" + }, { + "name": "白云区" + }, { + "name": "黄埔区" + }, { + "name": "番禺区" + }, { + "name": "花都区" + }, { + "name": "南沙区" + }, { + "name": "从化区" + }, { + "name": "增城区" + }] + }, { + "name": "韶关市", + "area": [{ + "name": "武江区" + }, { + "name": "浈江区" + }, { + "name": "曲江区" + }, { + "name": "始兴县" + }, { + "name": "仁化县" + }, { + "name": "翁源县" + }, { + "name": "乳源瑶族自治县" + }, { + "name": "新丰县" + }, { + "name": "乐昌市" + }, { + "name": "南雄市" + }] + }, { + "name": "深圳市", + "area": [{ + "name": "罗湖区" + }, { + "name": "福田区" + }, { + "name": "南山区" + }, { + "name": "宝安区" + }, { + "name": "龙岗区" + }, { + "name": "盐田区" + }, { + "name": "光明新区" + }, { + "name": "坪山新区" + }, { + "name": "大鹏新区" + }, { + "name": "龙华新区" + }] + }, { + "name": "珠海市", + "area": [{ + "name": "香洲区" + }, { + "name": "斗门区" + }, { + "name": "金湾区" + }] + }, { + "name": "汕头市", + "area": [{ + "name": "龙湖区" + }, { + "name": "金平区" + }, { + "name": "濠江区" + }, { + "name": "潮阳区" + }, { + "name": "潮南区" + }, { + "name": "澄海区" + }, { + "name": "南澳县" + }] + }, { + "name": "佛山市", + "area": [{ + "name": "禅城区" + }, { + "name": "南海区" + }, { + "name": "顺德区" + }, { + "name": "三水区" + }, { + "name": "高明区" + }] + }, { + "name": "江门市", + "area": [{ + "name": "蓬江区" + }, { + "name": "江海区" + }, { + "name": "新会区" + }, { + "name": "台山市" + }, { + "name": "开平市" + }, { + "name": "鹤山市" + }, { + "name": "恩平市" + }] + }, { + "name": "湛江市", + "area": [{ + "name": "赤坎区" + }, { + "name": "霞山区" + }, { + "name": "坡头区" + }, { + "name": "麻章区" + }, { + "name": "遂溪县" + }, { + "name": "徐闻县" + }, { + "name": "廉江市" + }, { + "name": "雷州市" + }, { + "name": "吴川市" + }] + }, { + "name": "茂名市", + "area": [{ + "name": "茂南区" + }, { + "name": "电白区" + }, { + "name": "高州市" + }, { + "name": "化州市" + }, { + "name": "信宜市" + }] + }, { + "name": "肇庆市", + "area": [{ + "name": "端州区" + }, { + "name": "鼎湖区" + }, { + "name": "广宁县" + }, { + "name": "怀集县" + }, { + "name": "封开县" + }, { + "name": "德庆县" + }, { + "name": "高要市" + }, { + "name": "四会市" + }] + }, { + "name": "惠州市", + "area": [{ + "name": "惠城区" + }, { + "name": "惠阳区" + }, { + "name": "博罗县" + }, { + "name": "惠东县" + }, { + "name": "龙门县" + }] + }, { + "name": "梅州市", + "area": [{ + "name": "梅江区" + }, { + "name": "梅县区" + }, { + "name": "大埔县" + }, { + "name": "丰顺县" + }, { + "name": "五华县" + }, { + "name": "平远县" + }, { + "name": "蕉岭县" + }, { + "name": "兴宁市" + }] + }, { + "name": "汕尾市", + "area": [{ + "name": "城区" + }, { + "name": "海丰县" + }, { + "name": "陆河县" + }, { + "name": "陆丰市" + }] + }, { + "name": "河源市", + "area": [{ + "name": "源城区" + }, { + "name": "紫金县" + }, { + "name": "龙川县" + }, { + "name": "连平县" + }, { + "name": "和平县" + }, { + "name": "东源县" + }] + }, { + "name": "阳江市", + "area": [{ + "name": "江城区" + }, { + "name": "阳东区" + }, { + "name": "阳西县" + }, { + "name": "阳春市" + }] + }, { + "name": "清远市", + "area": [{ + "name": "清城区" + }, { + "name": "清新区" + }, { + "name": "佛冈县" + }, { + "name": "阳山县" + }, { + "name": "连山壮族瑶族自治县" + }, { + "name": "连南瑶族自治县" + }, { + "name": "英德市" + }, { + "name": "连州市" + }] + }, { + "name": "东莞市", + "area": [{ + "name": "莞城区" + }, { + "name": "南城区" + }, { + "name": "万江区" + }, { + "name": "石碣镇" + }, { + "name": "石龙镇" + }, { + "name": "茶山镇" + }, { + "name": "石排镇" + }, { + "name": "企石镇" + }, { + "name": "横沥镇" + }, { + "name": "桥头镇" + }, { + "name": "谢岗镇" + }, { + "name": "东坑镇" + }, { + "name": "常平镇" + }, { + "name": "寮步镇" + }, { + "name": "大朗镇" + }, { + "name": "麻涌镇" + }, { + "name": "中堂镇" + }, { + "name": "高埗镇" + }, { + "name": "樟木头镇" + }, { + "name": "大岭山镇" + }, { + "name": "望牛墩镇" + }, { + "name": "黄江镇" + }, { + "name": "洪梅镇" + }, { + "name": "清溪镇" + }, { + "name": "沙田镇" + }, { + "name": "道滘镇" + }, { + "name": "塘厦镇" + }, { + "name": "虎门镇" + }, { + "name": "厚街镇" + }, { + "name": "凤岗镇" + }, { + "name": "长安镇" + }] + }, { + "name": "中山市", + "area": [{ + "name": "石岐区" + }, { + "name": "南区" + }, { + "name": "五桂山区" + }, { + "name": "火炬开发区" + }, { + "name": "黄圃镇" + }, { + "name": "南头镇" + }, { + "name": "东凤镇" + }, { + "name": "阜沙镇" + }, { + "name": "小榄镇" + }, { + "name": "东升镇" + }, { + "name": "古镇镇" + }, { + "name": "横栏镇" + }, { + "name": "三角镇" + }, { + "name": "民众镇" + }, { + "name": "南朗镇" + }, { + "name": "港口镇" + }, { + "name": "大涌镇" + }, { + "name": "沙溪镇" + }, { + "name": "三乡镇" + }, { + "name": "板芙镇" + }, { + "name": "神湾镇" + }, { + "name": "坦洲镇" + }] + }, { + "name": "潮州市", + "area": [{ + "name": "湘桥区" + }, { + "name": "潮安区" + }, { + "name": "饶平县" + }] + }, { + "name": "揭阳市", + "area": [{ + "name": "榕城区" + }, { + "name": "揭东区" + }, { + "name": "揭西县" + }, { + "name": "惠来县" + }, { + "name": "普宁市" + }] + }, { + "name": "云浮市", + "area": [{ + "name": "云城区" + }, { + "name": "云安区" + }, { + "name": "新兴县" + }, { + "name": "郁南县" + }, { + "name": "罗定市" + }] + }] +}, { + "name": "广西壮族自治区", + "city": [{ + "name": "南宁市", + "area": [{ + "name": "兴宁区" + }, { + "name": "青秀区" + }, { + "name": "江南区" + }, { + "name": "西乡塘区" + }, { + "name": "良庆区" + }, { + "name": "邕宁区" + }, { + "name": "武鸣县" + }, { + "name": "隆安县" + }, { + "name": "马山县" + }, { + "name": "上林县" + }, { + "name": "宾阳县" + }, { + "name": "横县" + }, { + "name": "埌东新区" + }] + }, { + "name": "柳州市", + "area": [{ + "name": "城中区" + }, { + "name": "鱼峰区" + }, { + "name": "柳南区" + }, { + "name": "柳北区" + }, { + "name": "柳江县" + }, { + "name": "柳城县" + }, { + "name": "鹿寨县" + }, { + "name": "融安县" + }, { + "name": "融水苗族自治县" + }, { + "name": "三江侗族自治县" + }, { + "name": "柳东新区" + }] + }, { + "name": "桂林市", + "area": [{ + "name": "秀峰区" + }, { + "name": "叠彩区" + }, { + "name": "象山区" + }, { + "name": "七星区" + }, { + "name": "雁山区" + }, { + "name": "临桂区" + }, { + "name": "阳朔县" + }, { + "name": "灵川县" + }, { + "name": "全州县" + }, { + "name": "兴安县" + }, { + "name": "永福县" + }, { + "name": "灌阳县" + }, { + "name": "龙胜各族自治县" + }, { + "name": "资源县" + }, { + "name": "平乐县" + }, { + "name": "荔浦县" + }, { + "name": "恭城瑶族自治县" + }] + }, { + "name": "梧州市", + "area": [{ + "name": "万秀区" + }, { + "name": "长洲区" + }, { + "name": "龙圩区" + }, { + "name": "苍梧县" + }, { + "name": "藤县" + }, { + "name": "蒙山县" + }, { + "name": "岑溪市" + }] + }, { + "name": "北海市", + "area": [{ + "name": "海城区" + }, { + "name": "银海区" + }, { + "name": "铁山港区" + }, { + "name": "合浦县" + }] + }, { + "name": "防城港市", + "area": [{ + "name": "港口区" + }, { + "name": "防城区" + }, { + "name": "上思县" + }, { + "name": "东兴市" + }] + }, { + "name": "钦州市", + "area": [{ + "name": "钦南区" + }, { + "name": "钦北区" + }, { + "name": "灵山县" + }, { + "name": "浦北县" + }] + }, { + "name": "贵港市", + "area": [{ + "name": "港北区" + }, { + "name": "港南区" + }, { + "name": "覃塘区" + }, { + "name": "平南县" + }, { + "name": "桂平市" + }] + }, { + "name": "玉林市", + "area": [{ + "name": "玉州区" + }, { + "name": "福绵区" + }, { + "name": "玉东新区" + }, { + "name": "容县" + }, { + "name": "陆川县" + }, { + "name": "博白县" + }, { + "name": "兴业县" + }, { + "name": "北流市" + }] + }, { + "name": "百色市", + "area": [{ + "name": "右江区" + }, { + "name": "田阳县" + }, { + "name": "田东县" + }, { + "name": "平果县" + }, { + "name": "德保县" + }, { + "name": "靖西县" + }, { + "name": "那坡县" + }, { + "name": "凌云县" + }, { + "name": "乐业县" + }, { + "name": "田林县" + }, { + "name": "西林县" + }, { + "name": "隆林各族自治县" + }] + }, { + "name": "贺州市", + "area": [{ + "name": "八步区" + }, { + "name": "昭平县" + }, { + "name": "钟山县" + }, { + "name": "富川瑶族自治县" + }, { + "name": "平桂管理区" + }] + }, { + "name": "河池市", + "area": [{ + "name": "金城江区" + }, { + "name": "南丹县" + }, { + "name": "天峨县" + }, { + "name": "凤山县" + }, { + "name": "东兰县" + }, { + "name": "罗城仫佬族自治县" + }, { + "name": "环江毛南族自治县" + }, { + "name": "巴马瑶族自治县" + }, { + "name": "都安瑶族自治县" + }, { + "name": "大化瑶族自治县" + }, { + "name": "宜州市" + }] + }, { + "name": "来宾市", + "area": [{ + "name": "兴宾区" + }, { + "name": "忻城县" + }, { + "name": "象州县" + }, { + "name": "武宣县" + }, { + "name": "金秀瑶族自治县" + }, { + "name": "合山市" + }] + }, { + "name": "崇左市", + "area": [{ + "name": "江州区" + }, { + "name": "扶绥县" + }, { + "name": "宁明县" + }, { + "name": "龙州县" + }, { + "name": "大新县" + }, { + "name": "天等县" + }, { + "name": "凭祥市" + }] + }] +}, { + "name": "海南省", + "city": [{ + "name": "海口市", + "area": [{ + "name": "秀英区" + }, { + "name": "龙华区" + }, { + "name": "琼山区" + }, { + "name": "美兰区" + }] + }, { + "name": "三亚市", + "area": [{ + "name": "海棠区" + }, { + "name": "吉阳区" + }, { + "name": "天涯区" + }, { + "name": "崖州区" + }] + }, { + "name": "三沙市", + "area": [{ + "name": "西沙群岛" + }, { + "name": "南沙群岛" + }, { + "name": "中沙群岛" + }] + }, { + "name": "直辖县级", + "area": [{ + "name": "五指山市" + }, { + "name": "琼海市" + }, { + "name": "儋州市" + }, { + "name": "文昌市" + }, { + "name": "万宁市" + }, { + "name": "东方市" + }, { + "name": "定安县" + }, { + "name": "屯昌县" + }, { + "name": "澄迈县" + }, { + "name": "临高县" + }, { + "name": "白沙黎族自治县" + }, { + "name": "昌江黎族自治县" + }, { + "name": "乐东黎族自治县" + }, { + "name": "陵水黎族自治县" + }, { + "name": "保亭黎族苗族自治县" + }, { + "name": "琼中黎族苗族自治县" + }] + }] +}, { + "name": "重庆", + "city": [{ + "name": "重庆市", + "area": [{ + "name": "万州区" + }, { + "name": "涪陵区" + }, { + "name": "渝中区" + }, { + "name": "大渡口区" + }, { + "name": "江北区" + }, { + "name": "沙坪坝区" + }, { + "name": "九龙坡区" + }, { + "name": "南岸区" + }, { + "name": "北碚区" + }, { + "name": "綦江区" + }, { + "name": "大足区" + }, { + "name": "渝北区" + }, { + "name": "巴南区" + }, { + "name": "黔江区" + }, { + "name": "长寿区" + }, { + "name": "江津区" + }, { + "name": "合川区" + }, { + "name": "永川区" + }, { + "name": "南川区" + }, { + "name": "璧山区" + }, { + "name": "铜梁区" + }, { + "name": "潼南县" + }, { + "name": "荣昌县" + }, { + "name": "梁平县" + }, { + "name": "城口县" + }, { + "name": "丰都县" + }, { + "name": "垫江县" + }, { + "name": "武隆县" + }, { + "name": "忠县" + }, { + "name": "开县" + }, { + "name": "云阳县" + }, { + "name": "奉节县" + }, { + "name": "巫山县" + }, { + "name": "巫溪县" + }, { + "name": "石柱土家族自治县" + }, { + "name": "秀山土家族苗族自治县" + }, { + "name": "酉阳土家族苗族自治县" + }, { + "name": "彭水苗族土家族自治县" + }] + }, { + "name": "两江新区", + "area": [{ + "name": "北部新区" + }, { + "name": "保税港区" + }, { + "name": "工业园区" + }] + }] +}, { + "name": "四川省", + "city": [{ + "name": "成都市", + "area": [{ + "name": "锦江区" + }, { + "name": "青羊区" + }, { + "name": "金牛区" + }, { + "name": "武侯区" + }, { + "name": "成华区" + }, { + "name": "龙泉驿区" + }, { + "name": "青白江区" + }, { + "name": "新都区" + }, { + "name": "温江区" + }, { + "name": "金堂县" + }, { + "name": "双流县" + }, { + "name": "郫县" + }, { + "name": "大邑县" + }, { + "name": "蒲江县" + }, { + "name": "新津县" + }, { + "name": "都江堰市" + }, { + "name": "彭州市" + }, { + "name": "邛崃市" + }, { + "name": "崇州市" + }] + }, { + "name": "自贡市", + "area": [{ + "name": "自流井区" + }, { + "name": "贡井区" + }, { + "name": "大安区" + }, { + "name": "沿滩区" + }, { + "name": "荣县" + }, { + "name": "富顺县" + }] + }, { + "name": "攀枝花市", + "area": [{ + "name": "东区" + }, { + "name": "西区" + }, { + "name": "仁和区" + }, { + "name": "米易县" + }, { + "name": "盐边县" + }] + }, { + "name": "泸州市", + "area": [{ + "name": "江阳区" + }, { + "name": "纳溪区" + }, { + "name": "龙马潭区" + }, { + "name": "泸县" + }, { + "name": "合江县" + }, { + "name": "叙永县" + }, { + "name": "古蔺县" + }] + }, { + "name": "德阳市", + "area": [{ + "name": "旌阳区" + }, { + "name": "中江县" + }, { + "name": "罗江县" + }, { + "name": "广汉市" + }, { + "name": "什邡市" + }, { + "name": "绵竹市" + }] + }, { + "name": "绵阳市", + "area": [{ + "name": "涪城区" + }, { + "name": "游仙区" + }, { + "name": "三台县" + }, { + "name": "盐亭县" + }, { + "name": "安县" + }, { + "name": "梓潼县" + }, { + "name": "北川羌族自治县" + }, { + "name": "平武县" + }, { + "name": "江油市" + }] + }, { + "name": "广元市", + "area": [{ + "name": "利州区" + }, { + "name": "昭化区" + }, { + "name": "朝天区" + }, { + "name": "旺苍县" + }, { + "name": "青川县" + }, { + "name": "剑阁县" + }, { + "name": "苍溪县" + }] + }, { + "name": "遂宁市", + "area": [{ + "name": "船山区" + }, { + "name": "安居区" + }, { + "name": "蓬溪县" + }, { + "name": "射洪县" + }, { + "name": "大英县" + }] + }, { + "name": "内江市", + "area": [{ + "name": "市中区" + }, { + "name": "东兴区" + }, { + "name": "威远县" + }, { + "name": "资中县" + }, { + "name": "隆昌县" + }] + }, { + "name": "乐山市", + "area": [{ + "name": "市中区" + }, { + "name": "沙湾区" + }, { + "name": "五通桥区" + }, { + "name": "金口河区" + }, { + "name": "犍为县" + }, { + "name": "井研县" + }, { + "name": "夹江县" + }, { + "name": "沐川县" + }, { + "name": "峨边彝族自治县" + }, { + "name": "马边彝族自治县" + }, { + "name": "峨眉山市" + }] + }, { + "name": "南充市", + "area": [{ + "name": "顺庆区" + }, { + "name": "高坪区" + }, { + "name": "嘉陵区" + }, { + "name": "南部县" + }, { + "name": "营山县" + }, { + "name": "蓬安县" + }, { + "name": "仪陇县" + }, { + "name": "西充县" + }, { + "name": "阆中市" + }] + }, { + "name": "眉山市", + "area": [{ + "name": "东坡区" + }, { + "name": "彭山区" + }, { + "name": "仁寿县" + }, { + "name": "洪雅县" + }, { + "name": "丹棱县" + }, { + "name": "青神县" + }] + }, { + "name": "宜宾市", + "area": [{ + "name": "翠屏区" + }, { + "name": "南溪区" + }, { + "name": "宜宾县" + }, { + "name": "江安县" + }, { + "name": "长宁县" + }, { + "name": "高县" + }, { + "name": "珙县" + }, { + "name": "筠连县" + }, { + "name": "兴文县" + }, { + "name": "屏山县" + }] + }, { + "name": "广安市", + "area": [{ + "name": "广安区" + }, { + "name": "前锋区" + }, { + "name": "岳池县" + }, { + "name": "武胜县" + }, { + "name": "邻水县" + }, { + "name": "华蓥市" + }] + }, { + "name": "达州市", + "area": [{ + "name": "通川区" + }, { + "name": "达川区" + }, { + "name": "宣汉县" + }, { + "name": "开江县" + }, { + "name": "大竹县" + }, { + "name": "渠县" + }, { + "name": "万源市" + }] + }, { + "name": "雅安市", + "area": [{ + "name": "雨城区" + }, { + "name": "名山区" + }, { + "name": "荥经县" + }, { + "name": "汉源县" + }, { + "name": "石棉县" + }, { + "name": "天全县" + }, { + "name": "芦山县" + }, { + "name": "宝兴县" + }] + }, { + "name": "巴中市", + "area": [{ + "name": "巴州区" + }, { + "name": "恩阳区" + }, { + "name": "通江县" + }, { + "name": "南江县" + }, { + "name": "平昌县" + }] + }, { + "name": "资阳市", + "area": [{ + "name": "雁江区" + }, { + "name": "安岳县" + }, { + "name": "乐至县" + }, { + "name": "简阳市" + }] + }, { + "name": "阿坝藏族羌族自治州", + "area": [{ + "name": "汶川县" + }, { + "name": "理县" + }, { + "name": "茂县" + }, { + "name": "松潘县" + }, { + "name": "九寨沟县" + }, { + "name": "金川县" + }, { + "name": "小金县" + }, { + "name": "黑水县" + }, { + "name": "马尔康县" + }, { + "name": "壤塘县" + }, { + "name": "阿坝县" + }, { + "name": "若尔盖县" + }, { + "name": "红原县" + }] + }, { + "name": "甘孜藏族自治州", + "area": [{ + "name": "康定县" + }, { + "name": "泸定县" + }, { + "name": "丹巴县" + }, { + "name": "九龙县" + }, { + "name": "雅江县" + }, { + "name": "道孚县" + }, { + "name": "炉霍县" + }, { + "name": "甘孜县" + }, { + "name": "新龙县" + }, { + "name": "德格县" + }, { + "name": "白玉县" + }, { + "name": "石渠县" + }, { + "name": "色达县" + }, { + "name": "理塘县" + }, { + "name": "巴塘县" + }, { + "name": "乡城县" + }, { + "name": "稻城县" + }, { + "name": "得荣县" + }] + }, { + "name": "凉山彝族自治州", + "area": [{ + "name": "西昌市" + }, { + "name": "木里藏族自治县" + }, { + "name": "盐源县" + }, { + "name": "德昌县" + }, { + "name": "会理县" + }, { + "name": "会东县" + }, { + "name": "宁南县" + }, { + "name": "普格县" + }, { + "name": "布拖县" + }, { + "name": "金阳县" + }, { + "name": "昭觉县" + }, { + "name": "喜德县" + }, { + "name": "冕宁县" + }, { + "name": "越西县" + }, { + "name": "甘洛县" + }, { + "name": "美姑县" + }, { + "name": "雷波县" + }] + }] +}, { + "name": "贵州省", + "city": [{ + "name": "贵阳市", + "area": [{ + "name": "南明区" + }, { + "name": "云岩区" + }, { + "name": "花溪区" + }, { + "name": "乌当区" + }, { + "name": "白云区" + }, { + "name": "观山湖区" + }, { + "name": "开阳县" + }, { + "name": "息烽县" + }, { + "name": "修文县" + }, { + "name": "清镇市" + }] + }, { + "name": "六盘水市", + "area": [{ + "name": "钟山区" + }, { + "name": "六枝特区" + }, { + "name": "水城县" + }, { + "name": "盘县" + }] + }, { + "name": "遵义市", + "area": [{ + "name": "红花岗区" + }, { + "name": "汇川区" + }, { + "name": "遵义县" + }, { + "name": "桐梓县" + }, { + "name": "绥阳县" + }, { + "name": "正安县" + }, { + "name": "道真仡佬族苗族自治县" + }, { + "name": "务川仡佬族苗族自治县" + }, { + "name": "凤冈县" + }, { + "name": "湄潭县" + }, { + "name": "余庆县" + }, { + "name": "习水县" + }, { + "name": "赤水市" + }, { + "name": "仁怀市" + }] + }, { + "name": "安顺市", + "area": [{ + "name": "西秀区" + }, { + "name": "平坝区" + }, { + "name": "普定县" + }, { + "name": "镇宁布依族苗族自治县" + }, { + "name": "关岭布依族苗族自治县" + }, { + "name": "紫云苗族布依族自治县" + }] + }, { + "name": "毕节市", + "area": [{ + "name": "七星关区" + }, { + "name": "大方县" + }, { + "name": "黔西县" + }, { + "name": "金沙县" + }, { + "name": "织金县" + }, { + "name": "纳雍县" + }, { + "name": "威宁彝族回族苗族自治县" + }, { + "name": "赫章县" + }] + }, { + "name": "铜仁市", + "area": [{ + "name": "碧江区" + }, { + "name": "万山区" + }, { + "name": "江口县" + }, { + "name": "玉屏侗族自治县" + }, { + "name": "石阡县" + }, { + "name": "思南县" + }, { + "name": "印江土家族苗族自治县" + }, { + "name": "德江县" + }, { + "name": "沿河土家族自治县" + }, { + "name": "松桃苗族自治县" + }] + }, { + "name": "黔西南布依族苗族自治州", + "area": [{ + "name": "兴义市 " + }, { + "name": "兴仁县" + }, { + "name": "普安县" + }, { + "name": "晴隆县" + }, { + "name": "贞丰县" + }, { + "name": "望谟县" + }, { + "name": "册亨县" + }, { + "name": "安龙县" + }] + }, { + "name": "黔东南苗族侗族自治州", + "area": [{ + "name": "凯里市" + }, { + "name": "黄平县" + }, { + "name": "施秉县" + }, { + "name": "三穗县" + }, { + "name": "镇远县" + }, { + "name": "岑巩县" + }, { + "name": "天柱县" + }, { + "name": "锦屏县" + }, { + "name": "剑河县" + }, { + "name": "台江县" + }, { + "name": "黎平县" + }, { + "name": "榕江县" + }, { + "name": "从江县" + }, { + "name": "雷山县" + }, { + "name": "麻江县" + }, { + "name": "丹寨县" + }] + }, { + "name": "黔南布依族苗族自治州", + "area": [{ + "name": "都匀市" + }, { + "name": "福泉市" + }, { + "name": "荔波县" + }, { + "name": "贵定县" + }, { + "name": "瓮安县" + }, { + "name": "独山县" + }, { + "name": "平塘县" + }, { + "name": "罗甸县" + }, { + "name": "长顺县" + }, { + "name": "龙里县" + }, { + "name": "惠水县" + }, { + "name": "三都水族自治县" + }] + }] +}, { + "name": "云南省", + "city": [{ + "name": "昆明市", + "area": [{ + "name": "五华区" + }, { + "name": "盘龙区" + }, { + "name": "官渡区" + }, { + "name": "西山区" + }, { + "name": "东川区" + }, { + "name": "呈贡区" + }, { + "name": "晋宁县" + }, { + "name": "富民县" + }, { + "name": "宜良县" + }, { + "name": "石林彝族自治县" + }, { + "name": "嵩明县" + }, { + "name": "禄劝彝族苗族自治县" + }, { + "name": "寻甸回族彝族自治县 " + }, { + "name": "安宁市" + }] + }, { + "name": "曲靖市", + "area": [{ + "name": "麒麟区" + }, { + "name": "马龙县" + }, { + "name": "陆良县" + }, { + "name": "师宗县" + }, { + "name": "罗平县" + }, { + "name": "富源县" + }, { + "name": "会泽县" + }, { + "name": "沾益县" + }, { + "name": "宣威市" + }] + }, { + "name": "玉溪市", + "area": [{ + "name": "红塔区" + }, { + "name": "江川县" + }, { + "name": "澄江县" + }, { + "name": "通海县" + }, { + "name": "华宁县" + }, { + "name": "易门县" + }, { + "name": "峨山彝族自治县" + }, { + "name": "新平彝族傣族自治县" + }, { + "name": "元江哈尼族彝族傣族自治县" + }] + }, { + "name": "保山市", + "area": [{ + "name": "隆阳区" + }, { + "name": "施甸县" + }, { + "name": "腾冲县" + }, { + "name": "龙陵县" + }, { + "name": "昌宁县" + }] + }, { + "name": "昭通市", + "area": [{ + "name": "昭阳区" + }, { + "name": "鲁甸县" + }, { + "name": "巧家县" + }, { + "name": "盐津县" + }, { + "name": "大关县" + }, { + "name": "永善县" + }, { + "name": "绥江县" + }, { + "name": "镇雄县" + }, { + "name": "彝良县" + }, { + "name": "威信县" + }, { + "name": "水富县" + }] + }, { + "name": "丽江市", + "area": [{ + "name": "古城区" + }, { + "name": "玉龙纳西族自治县" + }, { + "name": "永胜县" + }, { + "name": "华坪县" + }, { + "name": "宁蒗彝族自治县" + }] + }, { + "name": "普洱市", + "area": [{ + "name": "思茅区" + }, { + "name": "宁洱哈尼族彝族自治县" + }, { + "name": "墨江哈尼族自治县" + }, { + "name": "景东彝族自治县" + }, { + "name": "景谷傣族彝族自治县" + }, { + "name": "镇沅彝族哈尼族拉祜族自治县" + }, { + "name": "江城哈尼族彝族自治县" + }, { + "name": "孟连傣族拉祜族佤族自治县" + }, { + "name": "澜沧拉祜族自治县" + }, { + "name": "西盟佤族自治县" + }] + }, { + "name": "临沧市", + "area": [{ + "name": "临翔区" + }, { + "name": "凤庆县" + }, { + "name": "云县" + }, { + "name": "永德县" + }, { + "name": "镇康县" + }, { + "name": "双江拉祜族佤族布朗族傣族自治县" + }, { + "name": "耿马傣族佤族自治县" + }, { + "name": "沧源佤族自治县" + }] + }, { + "name": "楚雄彝族自治州", + "area": [{ + "name": "楚雄市" + }, { + "name": "双柏县" + }, { + "name": "牟定县" + }, { + "name": "南华县" + }, { + "name": "姚安县" + }, { + "name": "大姚县" + }, { + "name": "永仁县" + }, { + "name": "元谋县" + }, { + "name": "武定县" + }, { + "name": "禄丰县" + }] + }, { + "name": "红河哈尼族彝族自治州", + "area": [{ + "name": "个旧市" + }, { + "name": "开远市" + }, { + "name": "蒙自市" + }, { + "name": "弥勒市" + }, { + "name": "屏边苗族自治县" + }, { + "name": "建水县" + }, { + "name": "石屏县" + }, { + "name": "泸西县" + }, { + "name": "元阳县" + }, { + "name": "红河县" + }, { + "name": "金平苗族瑶族傣族自治县" + }, { + "name": "绿春县" + }, { + "name": "河口瑶族自治县" + }] + }, { + "name": "文山壮族苗族自治州", + "area": [{ + "name": "文山市" + }, { + "name": "砚山县" + }, { + "name": "西畴县" + }, { + "name": "麻栗坡县" + }, { + "name": "马关县" + }, { + "name": "丘北县" + }, { + "name": "广南县" + }, { + "name": "富宁县" + }] + }, { + "name": "西双版纳傣族自治州", + "area": [{ + "name": "景洪市" + }, { + "name": "勐海县" + }, { + "name": "勐腊县" + }] + }, { + "name": "大理白族自治州", + "area": [{ + "name": "大理市" + }, { + "name": "漾濞彝族自治县" + }, { + "name": "祥云县" + }, { + "name": "宾川县" + }, { + "name": "弥渡县" + }, { + "name": "南涧彝族自治县" + }, { + "name": "巍山彝族回族自治县" + }, { + "name": "永平县" + }, { + "name": "云龙县" + }, { + "name": "洱源县" + }, { + "name": "剑川县" + }, { + "name": "鹤庆县" + }] + }, { + "name": "德宏傣族景颇族自治州", + "area": [{ + "name": "瑞丽市" + }, { + "name": "芒市" + }, { + "name": "梁河县" + }, { + "name": "盈江县" + }, { + "name": "陇川县" + }] + }, { + "name": "怒江傈僳族自治州", + "area": [{ + "name": "泸水县" + }, { + "name": "福贡县" + }, { + "name": "贡山独龙族怒族自治县" + }, { + "name": "兰坪白族普米族自治县" + }] + }, { + "name": "迪庆藏族自治州", + "area": [{ + "name": "香格里拉市" + }, { + "name": "德钦县" + }, { + "name": "维西傈僳族自治县" + }] + }] +}, { + "name": "西藏自治区", + "city": [{ + "name": "拉萨市", + "area": [{ + "name": "城关区" + }, { + "name": "林周县" + }, { + "name": "当雄县" + }, { + "name": "尼木县" + }, { + "name": "曲水县" + }, { + "name": "堆龙德庆县" + }, { + "name": "达孜县" + }, { + "name": "墨竹工卡县" + }] + }, { + "name": "日喀则市", + "area": [{ + "name": "桑珠孜区" + }, { + "name": "南木林县" + }, { + "name": "江孜县" + }, { + "name": "定日县" + }, { + "name": "萨迦县" + }, { + "name": "拉孜县" + }, { + "name": "昂仁县" + }, { + "name": "谢通门县" + }, { + "name": "白朗县" + }, { + "name": "仁布县" + }, { + "name": "康马县" + }, { + "name": "定结县" + }, { + "name": "仲巴县" + }, { + "name": "亚东县" + }, { + "name": "吉隆县" + }, { + "name": "聂拉木县" + }, { + "name": "萨嘎县" + }, { + "name": "岗巴县" + }] + }, { + "name": "昌都市", + "area": [{ + "name": "卡若区" + }, { + "name": "江达县" + }, { + "name": "贡觉县" + }, { + "name": "类乌齐县" + }, { + "name": "丁青县" + }, { + "name": "察雅县" + }, { + "name": "八宿县" + }, { + "name": "左贡县" + }, { + "name": "芒康县" + }, { + "name": "洛隆县" + }, { + "name": "边坝县" + }] + }, { + "name": "山南地区", + "area": [{ + "name": "乃东县" + }, { + "name": "扎囊县" + }, { + "name": "贡嘎县" + }, { + "name": "桑日县" + }, { + "name": "琼结县" + }, { + "name": "曲松县" + }, { + "name": "措美县" + }, { + "name": "洛扎县" + }, { + "name": "加查县" + }, { + "name": "隆子县" + }, { + "name": "错那县" + }, { + "name": "浪卡子县" + }] + }, { + "name": "那曲地区", + "area": [{ + "name": "那曲县" + }, { + "name": "嘉黎县" + }, { + "name": "比如县" + }, { + "name": "聂荣县" + }, { + "name": "安多县" + }, { + "name": "申扎县" + }, { + "name": "索县" + }, { + "name": "班戈县" + }, { + "name": "巴青县" + }, { + "name": "尼玛县" + }, { + "name": "双湖县" + }] + }, { + "name": "阿里地区", + "area": [{ + "name": "普兰县" + }, { + "name": "札达县" + }, { + "name": "噶尔县" + }, { + "name": "日土县" + }, { + "name": "革吉县" + }, { + "name": "改则县" + }, { + "name": "措勤县" + }] + }, { + "name": "林芝地区", + "area": [{ + "name": "林芝县" + }, { + "name": "工布江达县" + }, { + "name": "米林县" + }, { + "name": "墨脱县" + }, { + "name": "波密县" + }, { + "name": "察隅县" + }, { + "name": "朗县" + }] + }] +}, { + "name": "陕西省", + "city": [{ + "name": "西安市", + "area": [{ + "name": "新城区" + }, { + "name": "碑林区" + }, { + "name": "莲湖区" + }, { + "name": "灞桥区" + }, { + "name": "未央区" + }, { + "name": "雁塔区" + }, { + "name": "阎良区" + }, { + "name": "临潼区" + }, { + "name": "长安区" + }, { + "name": "蓝田县" + }, { + "name": "周至县" + }, { + "name": "户县" + }, { + "name": "高陵区" + }] + }, { + "name": "铜川市", + "area": [{ + "name": "王益区" + }, { + "name": "印台区" + }, { + "name": "耀州区" + }, { + "name": "宜君县" + }] + }, { + "name": "宝鸡市", + "area": [{ + "name": "渭滨区" + }, { + "name": "金台区" + }, { + "name": "陈仓区" + }, { + "name": "凤翔县" + }, { + "name": "岐山县" + }, { + "name": "扶风县" + }, { + "name": "眉县" + }, { + "name": "陇县" + }, { + "name": "千阳县" + }, { + "name": "麟游县" + }, { + "name": "凤县" + }, { + "name": "太白县" + }] + }, { + "name": "咸阳市", + "area": [{ + "name": "秦都区" + }, { + "name": "杨陵区" + }, { + "name": "渭城区" + }, { + "name": "三原县" + }, { + "name": "泾阳县" + }, { + "name": "乾县" + }, { + "name": "礼泉县" + }, { + "name": "永寿县" + }, { + "name": "彬县" + }, { + "name": "长武县" + }, { + "name": "旬邑县" + }, { + "name": "淳化县" + }, { + "name": "武功县" + }, { + "name": "兴平市" + }] + }, { + "name": "渭南市", + "area": [{ + "name": "临渭区" + }, { + "name": "华县" + }, { + "name": "潼关县" + }, { + "name": "大荔县" + }, { + "name": "合阳县" + }, { + "name": "澄城县" + }, { + "name": "蒲城县" + }, { + "name": "白水县" + }, { + "name": "富平县" + }, { + "name": "韩城市" + }, { + "name": "华阴市" + }] + }, { + "name": "延安市", + "area": [{ + "name": "宝塔区" + }, { + "name": "延长县" + }, { + "name": "延川县" + }, { + "name": "子长县" + }, { + "name": "安塞县" + }, { + "name": "志丹县" + }, { + "name": "吴起县" + }, { + "name": "甘泉县" + }, { + "name": "富县" + }, { + "name": "洛川县" + }, { + "name": "宜川县" + }, { + "name": "黄龙县" + }, { + "name": "黄陵县" + }] + }, { + "name": "汉中市", + "area": [{ + "name": "汉台区" + }, { + "name": "南郑县" + }, { + "name": "城固县" + }, { + "name": "洋县" + }, { + "name": "西乡县" + }, { + "name": "勉县" + }, { + "name": "宁强县" + }, { + "name": "略阳县" + }, { + "name": "镇巴县" + }, { + "name": "留坝县" + }, { + "name": "佛坪县" + }] + }, { + "name": "榆林市", + "area": [{ + "name": "榆阳区" + }, { + "name": "神木县" + }, { + "name": "府谷县" + }, { + "name": "横山县" + }, { + "name": "靖边县" + }, { + "name": "定边县" + }, { + "name": "绥德县" + }, { + "name": "米脂县" + }, { + "name": "佳县" + }, { + "name": "吴堡县" + }, { + "name": "清涧县" + }, { + "name": "子洲县" + }] + }, { + "name": "安康市", + "area": [{ + "name": "汉滨区" + }, { + "name": "汉阴县" + }, { + "name": "石泉县" + }, { + "name": "宁陕县" + }, { + "name": "紫阳县" + }, { + "name": "岚皋县" + }, { + "name": "平利县" + }, { + "name": "镇坪县" + }, { + "name": "旬阳县" + }, { + "name": "白河县" + }] + }, { + "name": "商洛市", + "area": [{ + "name": "商州区" + }, { + "name": "洛南县" + }, { + "name": "丹凤县" + }, { + "name": "商南县" + }, { + "name": "山阳县" + }, { + "name": "镇安县" + }, { + "name": "柞水县" + }] + }, { + "name": "西咸新区", + "area": [{ + "name": "空港新城" + }, { + "name": "沣东新城" + }, { + "name": "秦汉新城" + }, { + "name": "沣西新城" + }, { + "name": "泾河新城" + }] + }] +}, { + "name": "甘肃省", + "city": [{ + "name": "兰州市", + "area": [{ + "name": "城关区" + }, { + "name": "七里河区" + }, { + "name": "西固区" + }, { + "name": "安宁区" + }, { + "name": "红古区" + }, { + "name": "永登县" + }, { + "name": "皋兰县" + }, { + "name": "榆中县" + }] + }, { + "name": "嘉峪关市", + "area": [{ + "name": "雄关区" + }, { + "name": "长城区" + }, { + "name": "镜铁区" + }] + }, { + "name": "金昌市", + "area": [{ + "name": "金川区" + }, { + "name": "永昌县" + }] + }, { + "name": "白银市", + "area": [{ + "name": "白银区" + }, { + "name": "平川区" + }, { + "name": "靖远县" + }, { + "name": "会宁县" + }, { + "name": "景泰县" + }] + }, { + "name": "天水市", + "area": [{ + "name": "秦州区" + }, { + "name": "麦积区" + }, { + "name": "清水县" + }, { + "name": "秦安县" + }, { + "name": "甘谷县" + }, { + "name": "武山县" + }, { + "name": "张家川回族自治县" + }] + }, { + "name": "武威市", + "area": [{ + "name": "凉州区" + }, { + "name": "民勤县" + }, { + "name": "古浪县" + }, { + "name": "天祝藏族自治县" + }] + }, { + "name": "张掖市", + "area": [{ + "name": "甘州区" + }, { + "name": "肃南裕固族自治县" + }, { + "name": "民乐县" + }, { + "name": "临泽县" + }, { + "name": "高台县" + }, { + "name": "山丹县" + }] + }, { + "name": "平凉市", + "area": [{ + "name": "崆峒区" + }, { + "name": "泾川县" + }, { + "name": "灵台县" + }, { + "name": "崇信县" + }, { + "name": "华亭县" + }, { + "name": "庄浪县" + }, { + "name": "静宁县" + }] + }, { + "name": "酒泉市", + "area": [{ + "name": "肃州区" + }, { + "name": "金塔县" + }, { + "name": "瓜州县" + }, { + "name": "肃北蒙古族自治县" + }, { + "name": "阿克塞哈萨克族自治县" + }, { + "name": "玉门市" + }, { + "name": "敦煌市" + }] + }, { + "name": "庆阳市", + "area": [{ + "name": "西峰区" + }, { + "name": "庆城县" + }, { + "name": "环县" + }, { + "name": "华池县" + }, { + "name": "合水县" + }, { + "name": "正宁县" + }, { + "name": "宁县" + }, { + "name": "镇原县" + }] + }, { + "name": "定西市", + "area": [{ + "name": "安定区" + }, { + "name": "通渭县" + }, { + "name": "陇西县" + }, { + "name": "渭源县" + }, { + "name": "临洮县" + }, { + "name": "漳县" + }, { + "name": "岷县" + }] + }, { + "name": "陇南市", + "area": [{ + "name": "武都区" + }, { + "name": "成县" + }, { + "name": "文县" + }, { + "name": "宕昌县" + }, { + "name": "康县" + }, { + "name": "西和县" + }, { + "name": "礼县" + }, { + "name": "徽县" + }, { + "name": "两当县" + }] + }, { + "name": "临夏回族自治州", + "area": [{ + "name": "临夏市" + }, { + "name": "临夏县" + }, { + "name": "康乐县" + }, { + "name": "永靖县" + }, { + "name": "广河县" + }, { + "name": "和政县" + }, { + "name": "东乡族自治县" + }, { + "name": "积石山保安族东乡族撒拉族自治县" + }] + }, { + "name": "甘南藏族自治州", + "area": [{ + "name": "合作市" + }, { + "name": "临潭县" + }, { + "name": "卓尼县" + }, { + "name": "舟曲县" + }, { + "name": "迭部县" + }, { + "name": "玛曲县" + }, { + "name": "碌曲县" + }, { + "name": "夏河县" + }] + }] +}, { + "name": "青海省", + "city": [{ + "name": "西宁市", + "area": [{ + "name": "城东区" + }, { + "name": "城中区" + }, { + "name": "城西区" + }, { + "name": "城北区" + }, { + "name": "大通回族土族自治县" + }, { + "name": "湟中县" + }, { + "name": "湟源县" + }] + }, { + "name": "海东市", + "area": [{ + "name": "乐都区" + }, { + "name": "平安县" + }, { + "name": "民和回族土族自治县" + }, { + "name": "互助土族自治县" + }, { + "name": "化隆回族自治县" + }, { + "name": "循化撒拉族自治县" + }] + }, { + "name": "海北藏族自治州", + "area": [{ + "name": "门源回族自治县" + }, { + "name": "祁连县" + }, { + "name": "海晏县" + }, { + "name": "刚察县" + }] + }, { + "name": "黄南藏族自治州", + "area": [{ + "name": "同仁县" + }, { + "name": "尖扎县" + }, { + "name": "泽库县" + }, { + "name": "河南蒙古族自治县" + }] + }, { + "name": "海南藏族自治州", + "area": [{ + "name": "共和县" + }, { + "name": "同德县" + }, { + "name": "贵德县" + }, { + "name": "兴海县" + }, { + "name": "贵南县" + }] + }, { + "name": "果洛藏族自治州", + "area": [{ + "name": "玛沁县" + }, { + "name": "班玛县" + }, { + "name": "甘德县" + }, { + "name": "达日县" + }, { + "name": "久治县" + }, { + "name": "玛多县" + }] + }, { + "name": "玉树藏族自治州", + "area": [{ + "name": "玉树市" + }, { + "name": "杂多县" + }, { + "name": "称多县" + }, { + "name": "治多县" + }, { + "name": "囊谦县" + }, { + "name": "曲麻莱县" + }] + }, { + "name": "海西蒙古族藏族自治州", + "area": [{ + "name": "格尔木市" + }, { + "name": "德令哈市" + }, { + "name": "乌兰县" + }, { + "name": "都兰县" + }, { + "name": "天峻县" + }] + }] +}, { + "name": "宁夏回族自治区", + "city": [{ + "name": "银川市", + "area": [{ + "name": "兴庆区" + }, { + "name": "西夏区" + }, { + "name": "金凤区" + }, { + "name": "永宁县" + }, { + "name": "贺兰县" + }, { + "name": "灵武市" + }] + }, { + "name": "石嘴山市", + "area": [{ + "name": "大武口区" + }, { + "name": "惠农区" + }, { + "name": "平罗县" + }] + }, { + "name": "吴忠市", + "area": [{ + "name": "利通区" + }, { + "name": "红寺堡区" + }, { + "name": "盐池县" + }, { + "name": "同心县" + }, { + "name": "青铜峡市" + }] + }, { + "name": "固原市", + "area": [{ + "name": "原州区" + }, { + "name": "西吉县" + }, { + "name": "隆德县" + }, { + "name": "泾源县" + }, { + "name": "彭阳县" + }] + }, { + "name": "中卫市", + "area": [{ + "name": "沙坡头区" + }, { + "name": "中宁县" + }, { + "name": "海原县" + }] + }] +}, { + "name": "新疆维吾尔自治区", + "city": [{ + "name": "乌鲁木齐市", + "area": [{ + "name": "天山区" + }, { + "name": "沙依巴克区" + }, { + "name": "新市区" + }, { + "name": "水磨沟区" + }, { + "name": "头屯河区" + }, { + "name": "达坂城区" + }, { + "name": "米东区" + }, { + "name": "乌鲁木齐县" + }] + }, { + "name": "克拉玛依市", + "area": [{ + "name": "独山子区" + }, { + "name": "克拉玛依区" + }, { + "name": "白碱滩区" + }, { + "name": "乌尔禾区" + }] + }, { + "name": "吐鲁番地区", + "area": [{ + "name": "吐鲁番市" + }, { + "name": "鄯善县" + }, { + "name": "托克逊县" + }] + }, { + "name": "哈密地区", + "area": [{ + "name": "哈密市" + }, { + "name": "巴里坤哈萨克自治县" + }, { + "name": "伊吾县" + }] + }, { + "name": "昌吉回族自治州", + "area": [{ + "name": "昌吉市" + }, { + "name": "阜康市" + }, { + "name": "呼图壁县" + }, { + "name": "玛纳斯县" + }, { + "name": "奇台县" + }, { + "name": "吉木萨尔县" + }, { + "name": "木垒哈萨克自治县" + }] + }, { + "name": "博尔塔拉蒙古自治州", + "area": [{ + "name": "博乐市" + }, { + "name": "阿拉山口市" + }, { + "name": "精河县" + }, { + "name": "温泉县" + }] + }, { + "name": "巴音郭楞蒙古自治州", + "area": [{ + "name": "库尔勒市" + }, { + "name": "轮台县" + }, { + "name": "尉犁县" + }, { + "name": "若羌县" + }, { + "name": "且末县" + }, { + "name": "焉耆回族自治县" + }, { + "name": "和静县" + }, { + "name": "和硕县" + }, { + "name": "博湖县" + }] + }, { + "name": "阿克苏地区", + "area": [{ + "name": "阿克苏市" + }, { + "name": "温宿县" + }, { + "name": "库车县" + }, { + "name": "沙雅县" + }, { + "name": "新和县" + }, { + "name": "拜城县" + }, { + "name": "乌什县" + }, { + "name": "阿瓦提县" + }, { + "name": "柯坪县" + }] + }, { + "name": "克孜勒苏柯尔克孜自治州", + "area": [{ + "name": "阿图什市" + }, { + "name": "阿克陶县" + }, { + "name": "阿合奇县" + }, { + "name": "乌恰县" + }] + }, { + "name": "喀什地区", + "area": [{ + "name": "喀什市" + }, { + "name": "疏附县" + }, { + "name": "疏勒县" + }, { + "name": "英吉沙县" + }, { + "name": "泽普县" + }, { + "name": "莎车县" + }, { + "name": "叶城县" + }, { + "name": "麦盖提县" + }, { + "name": "岳普湖县" + }, { + "name": "伽师县" + }, { + "name": "巴楚县" + }, { + "name": "塔什库尔干塔吉克自治县" + }] + }, { + "name": "和田地区", + "area": [{ + "name": "和田市" + }, { + "name": "和田县" + }, { + "name": "墨玉县" + }, { + "name": "皮山县" + }, { + "name": "洛浦县" + }, { + "name": "策勒县" + }, { + "name": "于田县" + }, { + "name": "民丰县" + }] + }, { + "name": "伊犁哈萨克自治州", + "area": [{ + "name": "伊宁市" + }, { + "name": "奎屯市" + }, { + "name": "霍尔果斯市" + }, { + "name": "伊宁县" + }, { + "name": "察布查尔锡伯自治县" + }, { + "name": "霍城县" + }, { + "name": "巩留县" + }, { + "name": "新源县" + }, { + "name": "昭苏县" + }, { + "name": "特克斯县" + }, { + "name": "尼勒克县" + }] + }, { + "name": "塔城地区", + "area": [{ + "name": "塔城市" + }, { + "name": "乌苏市" + }, { + "name": "额敏县" + }, { + "name": "沙湾县" + }, { + "name": "托里县" + }, { + "name": "裕民县" + }, { + "name": "和布克赛尔蒙古自治县" + }] + }, { + "name": "阿勒泰地区", + "area": [{ + "name": "阿勒泰市" + }, { + "name": "布尔津县" + }, { + "name": "富蕴县" + }, { + "name": "福海县" + }, { + "name": "哈巴河县" + }, { + "name": "青河县" + }, { + "name": "吉木乃县" + }] + }, { + "name": "直辖县级", + "area": [{ + "name": "石河子市" + }, { + "name": "阿拉尔市" + }, { + "name": "图木舒克市" + }, { + "name": "五家渠市" + }, { + "name": "北屯市" + }, { + "name": "铁门关市" + }, { + "name": "双河市" + }] + }] +}, { + "name": "台湾", + "city": [{ + "name": "台北市", + "area": [{ + "name": "松山区" + }, { + "name": "信义区" + }, { + "name": "大安区" + }, { + "name": "中山区" + }, { + "name": "中正区" + }, { + "name": "大同区" + }, { + "name": "万华区" + }, { + "name": "文山区" + }, { + "name": "南港区" + }, { + "name": "内湖区" + }, { + "name": "士林区" + }, { + "name": "北投区" + }] + }, { + "name": "高雄市", + "area": [{ + "name": "盐埕区" + }, { + "name": "鼓山区" + }, { + "name": "左营区" + }, { + "name": "楠梓区" + }, { + "name": "三民区" + }, { + "name": "新兴区" + }, { + "name": "前金区" + }, { + "name": "苓雅区" + }, { + "name": "前镇区" + }, { + "name": "旗津区" + }, { + "name": "小港区" + }, { + "name": "凤山区" + }, { + "name": "林园区" + }, { + "name": "大寮区" + }, { + "name": "大树区" + }, { + "name": "大社区" + }, { + "name": "仁武区" + }, { + "name": "鸟松区" + }, { + "name": "冈山区" + }, { + "name": "桥头区" + }, { + "name": "燕巢区" + }, { + "name": "田寮区" + }, { + "name": "阿莲区" + }, { + "name": "路竹区" + }, { + "name": "湖内区" + }, { + "name": "茄萣区" + }, { + "name": "永安区" + }, { + "name": "弥陀区" + }, { + "name": "梓官区" + }, { + "name": "旗山区" + }, { + "name": "美浓区" + }, { + "name": "六龟区" + }, { + "name": "甲仙区" + }, { + "name": "杉林区" + }, { + "name": "内门区" + }, { + "name": "茂林区" + }, { + "name": "桃源区" + }, { + "name": "那玛夏区" + }] + }, { + "name": "基隆市", + "area": [{ + "name": "中正区" + }, { + "name": "七堵区" + }, { + "name": "暖暖区" + }, { + "name": "仁爱区" + }, { + "name": "中山区" + }, { + "name": "安乐区" + }, { + "name": "信义区" + }] + }, { + "name": "台中市", + "area": [{ + "name": "中区" + }, { + "name": "东区" + }, { + "name": "南区" + }, { + "name": "西区" + }, { + "name": "北区" + }, { + "name": "西屯区" + }, { + "name": "南屯区" + }, { + "name": "北屯区" + }, { + "name": "丰原区" + }, { + "name": "东势区" + }, { + "name": "大甲区" + }, { + "name": "清水区" + }, { + "name": "沙鹿区" + }, { + "name": "梧栖区" + }, { + "name": "后里区" + }, { + "name": "神冈区" + }, { + "name": "潭子区" + }, { + "name": "大雅区" + }, { + "name": "新社区" + }, { + "name": "石冈区" + }, { + "name": "外埔区" + }, { + "name": "大安区" + }, { + "name": "乌日区" + }, { + "name": "大肚区" + }, { + "name": "龙井区" + }, { + "name": "雾峰区" + }, { + "name": "太平区" + }, { + "name": "大里区" + }, { + "name": "和平区" + }] + }, { + "name": "台南市", + "area": [{ + "name": "东区" + }, { + "name": "南区" + }, { + "name": "北区" + }, { + "name": "安南区" + }, { + "name": "安平区" + }, { + "name": "中西区" + }, { + "name": "新营区" + }, { + "name": "盐水区" + }, { + "name": "白河区" + }, { + "name": "柳营区" + }, { + "name": "后壁区" + }, { + "name": "东山区" + }, { + "name": "麻豆区" + }, { + "name": "下营区" + }, { + "name": "六甲区" + }, { + "name": "官田区" + }, { + "name": "大内区" + }, { + "name": "佳里区" + }, { + "name": "学甲区" + }, { + "name": "西港区" + }, { + "name": "七股区" + }, { + "name": "将军区" + }, { + "name": "北门区" + }, { + "name": "新化区" + }, { + "name": "善化区" + }, { + "name": "新市区" + }, { + "name": "安定区" + }, { + "name": "山上区" + }, { + "name": "玉井区" + }, { + "name": "楠西区" + }, { + "name": "南化区" + }, { + "name": "左镇区" + }, { + "name": "仁德区" + }, { + "name": "归仁区" + }, { + "name": "关庙区" + }, { + "name": "龙崎区" + }, { + "name": "永康区" + }] + }, { + "name": "新竹市", + "area": [{ + "name": "东区" + }, { + "name": "北区" + }, { + "name": "香山区" + }] + }, { + "name": "嘉义市", + "area": [{ + "name": "东区" + }, { + "name": "西区" + }] + }, { + "name": "新北市", + "area": [{ + "name": "板桥区" + }, { + "name": "三重区" + }, { + "name": "中和区" + }, { + "name": "永和区" + }, { + "name": "新庄区" + }, { + "name": "新店区" + }, { + "name": "树林区" + }, { + "name": "莺歌区" + }, { + "name": "三峡区" + }, { + "name": "淡水区" + }, { + "name": "汐止区" + }, { + "name": "瑞芳区" + }, { + "name": "土城区" + }, { + "name": "芦洲区" + }, { + "name": "五股区" + }, { + "name": "泰山区" + }, { + "name": "林口区" + }, { + "name": "深坑区" + }, { + "name": "石碇区" + }, { + "name": "坪林区" + }, { + "name": "三芝区" + }, { + "name": "石门区" + }, { + "name": "八里区" + }, { + "name": "平溪区" + }, { + "name": "双溪区" + }, { + "name": "贡寮区" + }, { + "name": "金山区" + }, { + "name": "万里区" + }, { + "name": "乌来区" + }] + }, { + "name": "宜兰县", + "area": [{ + "name": "宜兰市" + }, { + "name": "罗东镇" + }, { + "name": "苏澳镇" + }, { + "name": "头城镇" + }, { + "name": "礁溪乡" + }, { + "name": "壮围乡" + }, { + "name": "员山乡" + }, { + "name": "冬山乡" + }, { + "name": "五结乡" + }, { + "name": "三星乡" + }, { + "name": "大同乡" + }, { + "name": "南澳乡" + }] + }, { + "name": "桃园县", + "area": [{ + "name": "桃园市" + }, { + "name": "中坜市" + }, { + "name": "平镇市" + }, { + "name": "八德市" + }, { + "name": "杨梅市" + }, { + "name": "芦竹市" + }, { + "name": "大溪镇" + }, { + "name": "大园乡" + }, { + "name": "龟山乡" + }, { + "name": "龙潭乡" + }, { + "name": "新屋乡" + }, { + "name": "观音乡" + }, { + "name": "复兴乡" + }] + }, { + "name": "新竹县", + "area": [{ + "name": "竹北市" + }, { + "name": "竹东镇" + }, { + "name": "新埔镇" + }, { + "name": "关西镇" + }, { + "name": "湖口乡" + }, { + "name": "新丰乡" + }, { + "name": "芎林乡" + }, { + "name": "横山乡" + }, { + "name": "北埔乡" + }, { + "name": "宝山乡" + }, { + "name": "峨眉乡" + }, { + "name": "尖石乡" + }, { + "name": "五峰乡" + }] + }, { + "name": "苗栗县", + "area": [{ + "name": "苗栗市" + }, { + "name": "苑里镇" + }, { + "name": "通霄镇" + }, { + "name": "竹南镇" + }, { + "name": "头份镇" + }, { + "name": "后龙镇" + }, { + "name": "卓兰镇" + }, { + "name": "大湖乡" + }, { + "name": "公馆乡" + }, { + "name": "铜锣乡" + }, { + "name": "南庄乡" + }, { + "name": "头屋乡" + }, { + "name": "三义乡" + }, { + "name": "西湖乡" + }, { + "name": "造桥乡" + }, { + "name": "三湾乡" + }, { + "name": "狮潭乡" + }, { + "name": "泰安乡" + }] + }, { + "name": "彰化县", + "area": [{ + "name": "彰化市" + }, { + "name": "鹿港镇" + }, { + "name": "和美镇" + }, { + "name": "线西乡" + }, { + "name": "伸港乡" + }, { + "name": "福兴乡" + }, { + "name": "秀水乡" + }, { + "name": "花坛乡" + }, { + "name": "芬园乡" + }, { + "name": "员林镇" + }, { + "name": "溪湖镇" + }, { + "name": "田中镇" + }, { + "name": "大村乡" + }, { + "name": "埔盐乡" + }, { + "name": "埔心乡" + }, { + "name": "永靖乡" + }, { + "name": "社头乡" + }, { + "name": "二水乡" + }, { + "name": "北斗镇" + }, { + "name": "二林镇" + }, { + "name": "田尾乡" + }, { + "name": "埤头乡" + }, { + "name": "芳苑乡" + }, { + "name": "大城乡" + }, { + "name": "竹塘乡" + }, { + "name": "溪州乡" + }] + }, { + "name": "南投县", + "area": [{ + "name": "南投市" + }, { + "name": "埔里镇" + }, { + "name": "草屯镇" + }, { + "name": "竹山镇" + }, { + "name": "集集镇" + }, { + "name": "名间乡" + }, { + "name": "鹿谷乡" + }, { + "name": "中寮乡" + }, { + "name": "鱼池乡" + }, { + "name": "国姓乡" + }, { + "name": "水里乡" + }, { + "name": "信义乡" + }, { + "name": "仁爱乡" + }] + }, { + "name": "云林县", + "area": [{ + "name": "斗六市" + }, { + "name": "斗南镇" + }, { + "name": "虎尾镇" + }, { + "name": "西螺镇" + }, { + "name": "土库镇" + }, { + "name": "北港镇" + }, { + "name": "古坑乡" + }, { + "name": "大埤乡" + }, { + "name": "莿桐乡" + }, { + "name": "林内乡" + }, { + "name": "二仑乡" + }, { + "name": "仑背乡" + }, { + "name": "麦寮乡" + }, { + "name": "东势乡" + }, { + "name": "褒忠乡" + }, { + "name": "台西乡" + }, { + "name": "元长乡" + }, { + "name": "四湖乡" + }, { + "name": "口湖乡" + }, { + "name": "水林乡" + }] + }, { + "name": "嘉义县", + "area": [{ + "name": "太保市" + }, { + "name": "朴子市" + }, { + "name": "布袋镇" + }, { + "name": "大林镇" + }, { + "name": "民雄乡" + }, { + "name": "溪口乡" + }, { + "name": "新港乡" + }, { + "name": "六脚乡" + }, { + "name": "东石乡" + }, { + "name": "义竹乡" + }, { + "name": "鹿草乡" + }, { + "name": "水上乡" + }, { + "name": "中埔乡" + }, { + "name": "竹崎乡" + }, { + "name": "梅山乡" + }, { + "name": "番路乡" + }, { + "name": "大埔乡" + }, { + "name": "阿里山乡" + }] + }, { + "name": "屏东县", + "area": [{ + "name": "屏东市" + }, { + "name": "潮州镇" + }, { + "name": "东港镇" + }, { + "name": "恒春镇" + }, { + "name": "万丹乡" + }, { + "name": "长治乡" + }, { + "name": "麟洛乡" + }, { + "name": "九如乡" + }, { + "name": "里港乡" + }, { + "name": "盐埔乡" + }, { + "name": "高树乡" + }, { + "name": "万峦乡" + }, { + "name": "内埔乡" + }, { + "name": "竹田乡" + }, { + "name": "新埤乡" + }, { + "name": "枋寮乡" + }, { + "name": "新园乡" + }, { + "name": "崁顶乡" + }, { + "name": "林边乡" + }, { + "name": "南州乡" + }, { + "name": "佳冬乡" + }, { + "name": "琉球乡" + }, { + "name": "车城乡" + }, { + "name": "满州乡" + }, { + "name": "枋山乡" + }, { + "name": "三地门乡" + }, { + "name": "雾台乡" + }, { + "name": "玛家乡" + }, { + "name": "泰武乡" + }, { + "name": "来义乡" + }, { + "name": "春日乡" + }, { + "name": "狮子乡" + }, { + "name": "牡丹乡" + }] + }, { + "name": "台东县", + "area": [{ + "name": "台东市" + }, { + "name": "成功镇" + }, { + "name": "关山镇" + }, { + "name": "卑南乡" + }, { + "name": "鹿野乡" + }, { + "name": "池上乡" + }, { + "name": "东河乡" + }, { + "name": "长滨乡" + }, { + "name": "太麻里乡" + }, { + "name": "大武乡" + }, { + "name": "绿岛乡" + }, { + "name": "海端乡" + }, { + "name": "延平乡" + }, { + "name": "金峰乡" + }, { + "name": "达仁乡" + }, { + "name": "兰屿乡" + }] + }, { + "name": "花莲县", + "area": [{ + "name": "花莲市" + }, { + "name": "凤林镇" + }, { + "name": "玉里镇" + }, { + "name": "新城乡" + }, { + "name": "吉安乡" + }, { + "name": "寿丰乡" + }, { + "name": "光复乡" + }, { + "name": "丰滨乡" + }, { + "name": "瑞穗乡" + }, { + "name": "富里乡" + }, { + "name": "秀林乡" + }, { + "name": "万荣乡" + }, { + "name": "卓溪乡" + }] + }, { + "name": "澎湖县", + "area": [{ + "name": "马公市" + }, { + "name": "湖西乡" + }, { + "name": "白沙乡" + }, { + "name": "西屿乡" + }, { + "name": "望安乡" + }, { + "name": "七美乡" + }] + }, { + "name": "金门县", + "area": [{ + "name": "金城镇" + }, { + "name": "金湖镇" + }, { + "name": "金沙镇" + }, { + "name": "金宁乡" + }, { + "name": "烈屿乡" + }, { + "name": "乌丘乡" + }] + }, { + "name": "连江县", + "area": [{ + "name": "南竿乡" + }, { + "name": "北竿乡" + }, { + "name": "莒光乡" + }, { + "name": "东引乡" + }] + }] +}, { + "name": "香港特别行政区", + "city": [{ + "name": "香港岛", + "area": [{ + "name": "中西区" + }, { + "name": "湾仔区" + }, { + "name": "东区" + }, { + "name": "南区" + }] + }, { + "name": "九龙", + "area": [{ + "name": "油尖旺区" + }, { + "name": "深水埗区" + }, { + "name": "九龙城区" + }, { + "name": "黄大仙区" + }, { + "name": "观塘区" + }] + }, { + "name": "新界", + "area": [{ + "name": "荃湾区" + }, { + "name": "屯门区" + }, { + "name": "元朗区" + }, { + "name": "北区" + }, { + "name": "大埔区" + }, { + "name": "西贡区" + }, { + "name": "沙田区" + }, { + "name": "葵青区" + }, { + "name": "离岛区" + }] + }] +}, { + "name": "澳门特别行政区", + "city": [{ + "name": "澳门半岛", + "area": [{ + "name": "花地玛堂区" + }, { + "name": "圣安多尼堂区" + }, { + "name": "大堂区" + }, { + "name": "望德堂区" + }, { + "name": "风顺堂区" + }] + }, { + "name": "氹仔岛", + "area": [{ + "name": "嘉模堂区" + }] + }, { + "name": "路环岛", + "area": [{ + "name": "圣方济各堂区" + }] + }] +}] \ No newline at end of file diff --git a/static/logo.png b/static/logo.png new file mode 100644 index 0000000..5ef0870 Binary files /dev/null and b/static/logo.png differ diff --git a/uni.scss b/uni.scss new file mode 100644 index 0000000..7cb2f8b --- /dev/null +++ b/uni.scss @@ -0,0 +1,78 @@ +/** + * 这里是uni-app内置的常用样式变量 + * + * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 + * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App + * + */ +@import '@/uni_modules/uview-ui/theme.scss'; +/** + * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 + * + * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 + */ + +/* 颜色变量 */ + +/* 行为相关颜色 */ +$uni-color-primary: #007aff; +$uni-color-success: #4cd964; +$uni-color-warning: #f0ad4e; +$uni-color-error: #dd524d; + +/* 文字基本颜色 */ +$uni-text-color:#333;//基本色 +$uni-text-color-inverse:#fff;//反色 +$uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息 +$uni-text-color-placeholder: #808080; +$uni-text-color-disable:#c0c0c0; + +/* 背景颜色 */ +$uni-bg-color:#ffffff; +$uni-bg-color-grey:#f8f8f8; +$uni-bg-color-hover:#f1f1f1;//点击状态颜色 +$uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色 + +/* 边框颜色 */ +$uni-border-color:#c8c7cc; + +/* 尺寸变量 */ + +/* 文字尺寸 */ +$uni-font-size-sm:12px; +$uni-font-size-base:14px; +$uni-font-size-lg:16; + +/* 图片尺寸 */ +$uni-img-size-sm:20px; +$uni-img-size-base:26px; +$uni-img-size-lg:40px; + +/* Border Radius */ +$uni-border-radius-sm: 2px; +$uni-border-radius-base: 3px; +$uni-border-radius-lg: 6px; +$uni-border-radius-circle: 50%; + +/* 水平间距 */ +$uni-spacing-row-sm: 5px; +$uni-spacing-row-base: 10px; +$uni-spacing-row-lg: 15px; + +/* 垂直间距 */ +$uni-spacing-col-sm: 4px; +$uni-spacing-col-base: 8px; +$uni-spacing-col-lg: 12px; + +/* 透明度 */ +$uni-opacity-disabled: 0.3; // 组件禁用态的透明度 + +/* 文章场景相关 */ +$uni-color-title: #2C405A; // 文章标题颜色 +$uni-font-size-title:20px; +$uni-color-subtitle: #555555; // 二级标题颜色 +$uni-font-size-subtitle:26px; +$uni-color-paragraph: #3F536E; // 文章段落颜色 +$uni-font-size-paragraph:15px; + +page{background-color: #F5F6FB;} diff --git a/uni_modules/uview-ui/LICENSE b/uni_modules/uview-ui/LICENSE new file mode 100644 index 0000000..8e39ead --- /dev/null +++ b/uni_modules/uview-ui/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 www.uviewui.com + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/uni_modules/uview-ui/README.md b/uni_modules/uview-ui/README.md new file mode 100644 index 0000000..c78ff47 --- /dev/null +++ b/uni_modules/uview-ui/README.md @@ -0,0 +1,66 @@ +

+ logo +

+

uView 2.0

+

多平台快速开发的UI框架

+ +[![stars](https://img.shields.io/github/stars/umicro/uView2.0?style=flat-square&logo=GitHub)](https://github.com/umicro/uView2.0) +[![forks](https://img.shields.io/github/forks/umicro/uView2.0?style=flat-square&logo=GitHub)](https://github.com/umicro/uView2.0) +[![issues](https://img.shields.io/github/issues/umicro/uView2.0?style=flat-square&logo=GitHub)](https://github.com/umicro/uView2.0/issues) +[![Website](https://img.shields.io/badge/uView-up-blue?style=flat-square)](https://uviewui.com) +[![release](https://img.shields.io/github/v/release/umicro/uView2.0?style=flat-square)](https://gitee.com/umicro/uView2.0/releases) +[![license](https://img.shields.io/github/license/umicro/uView2.0?style=flat-square)](https://en.wikipedia.org/wiki/MIT_License) + +## 说明 + +uView UI,是[uni-app](https://uniapp.dcloud.io/)全面兼容nvue的uni-app生态框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水 + +## [官方文档:https://uviewui.com](https://uviewui.com) + + +## 预览 + +您可以通过**微信**扫码,查看最佳的演示效果。 +
+
+ + + +## 链接 + +- [官方文档](https://www.uviewui.com/) +- [更新日志](https://www.uviewui.com/components/changelog.html) +- [升级指南](https://www.uviewui.com/components/changeGuide.html) +- [关于我们](https://www.uviewui.com/cooperation/about.html) + +## 交流反馈 + +欢迎加入我们的QQ群交流反馈:[点此跳转](https://www.uviewui.com/components/addQQGroup.html) + +## 关于PR + +> 我们非常乐意接受各位的优质PR,但在此之前我希望您了解uView2.0是一个需要兼容多个平台的(小程序、h5、ios app、android app)包括nvue页面、vue页面。 +> 所以希望在您修复bug并提交之前尽可能的去这些平台测试一下兼容性。最好能携带测试截图以方便审核。非常感谢! + +## 安装 + +#### **uni-app插件市场链接** —— [https://ext.dcloud.net.cn/plugin?id=1593](https://ext.dcloud.net.cn/plugin?id=1593) + +请通过[官网安装文档](https://www.uviewui.com/components/install.html)了解更详细的内容 + +## 快速上手 + +请通过[快速上手](https://uviewui.com/components/quickstart.html)了解更详细的内容 + +## 使用方法 +配置easycom规则后,自动按需引入,无需`import`组件,直接引用即可。 + +```html + +``` + +## 版权信息 +uView遵循[MIT](https://en.wikipedia.org/wiki/MIT_License)开源协议,意味着您无需支付任何费用,也无需授权,即可将uView应用到您的产品中。 + diff --git a/uni_modules/uview-ui/changelog.md b/uni_modules/uview-ui/changelog.md new file mode 100644 index 0000000..817d403 --- /dev/null +++ b/uni_modules/uview-ui/changelog.md @@ -0,0 +1,344 @@ +## 2.0.33(2022-06-17) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复`loadmore`组件`lineColor`类型错误问题 +2. 修复`u-parse`组件`imgtap`、`linktap`不生效问题 +## 2.0.32(2022-06-16) +# uView2.0重磅发布,利剑出鞘,一统江湖 +1. `u-loadmore`新增自定义颜色、虚/实线 +2. 修复`u-swiper-action`组件部分平台不能上下滑动的问题 +3. 修复`u-list`回弹问题 +4. 修复`notice-bar`组件动画在低端安卓机可能会抖动的问题 +5. `u-loading-page`添加控制图标大小的属性`iconSize` +6. 修复`u-tooltip`组件`color`参数不生效的问题 +7. 修复`u--input`组件使用`blur`事件输出为`undefined`的bug +8. `u-code-input`组件新增键盘弹起时,是否自动上推页面参数`adjustPosition` +9. 修复`image`组件`load`事件无回调对象问题 +10. 修复`button`组件`loadingSize`设置无效问题 +10. 其他修复 +## 2.0.31(2022-04-19) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复`upload`在`vue`页面上传成功后没有成功标志的问题 +2. 解决演示项目中微信小程序模拟上传图片一直出于上传中问题 +3. 修复`u-code-input`组件在`nvue`页面编译到`app`平台上光标异常问题(`app`去除此功能) +4. 修复`actionSheet`组件标题关闭按钮点击事件名称错误的问题 +5. 其他修复 +## 2.0.30(2022-04-04) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. `u-rate`增加`readonly`属性 +2. `tabs`滑块支持设置背景图片 +3. 修复`u-subsection` `mode`为`subsection`时,滑块样式不正确的问题 +4. `u-code-input`添加光标效果动画 +5. 修复`popup`的`open`事件不触发 +6. 修复`u-flex-column`无效的问题 +7. 修复`u-datetime-picker`索引在特定场合异常问题 +8. 修复`u-datetime-picker`最小时间字符串模板错误问题 +9. `u-swiper`添加`m3u8`验证 +10. `u-swiper`修改判断image和video逻辑 +11. 修复`swiper`无法使用本地图片问题,增加`type`参数 +12. 修复`u-row-notice`格式错误问题 +13. 修复`u-switch`组件当`unit`为`rpx`时,`nodeStyle`消失的问题 +14. 修复`datetime-picker`组件`showToolbar`与`visibleItemCount`属性无效的问题 +15. 修复`upload`组件条件编译位置判断错误,导致`previewImage`属性设置为`false`时,整个组件都会被隐藏的问题 +16. 修复`u-checkbox-group`设置`shape`属性无效的问题 +17. 修复`u-upload`的`capture`传入字符串的时候不生效的问题 +18. 修复`u-action-sheet`组件,关闭事件逻辑错误的问题 +19. 修复`u-list`触顶事件的触发错误的问题 +20. 修复`u-text`只有手机号可拨打的问题 +21. 修复`u-textarea`不能换行的问题 +22. 其他修复 +## 2.0.29(2022-03-13) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复`u--text`组件设置`decoration`属性未生效的问题 +2. 修复`u-datetime-picker`使用`formatter`后返回值不正确 +3. 修复`u-datetime-picker` `intercept` 可能为undefined +4. 修复已设置单位 uni..config.unit = 'rpx'时,线型指示器 `transform` 的位置翻倍,导致指示器超出宽度 +5. 修复mixin中bem方法生成的类名在支付宝和字节小程序中失效 +6. 修复默认值传值为空的时候,打开`u-datetime-picker`报错,不能选中第一列时间的bug +7. 修复`u-datetime-picker`使用`formatter`后返回值不正确 +8. 修复`u-image`组件`loading`无效果的问题 +9. 修复`config.unit`属性设为`rpx`时,导航栏占用高度不足导致塌陷的问题 +10. 修复`u-datetime-picker`组件`itemHeight`无效问题 +11. 其他修复 +## 2.0.28(2022-02-22) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. search组件新增searchIconSize属性 +2. 兼容Safari/Webkit中传入时间格式如2022-02-17 12:00:56 +3. 修复text value.js 判断日期出format错误问题 +4. priceFormat格式化金额出现精度错误 +5. priceFormat在部分情况下出现精度损失问题 +6. 优化表单rules提示 +7. 修复avatar组件src为空时,展示状态不对 +8. 其他修复 +## 2.0.27(2022-01-28) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1.样式修复 +## 2.0.26(2022-01-28) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1.样式修复 +## 2.0.25(2022-01-27) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复text组件mode=price时,可能会导致精度错误的问题 +2. 添加$u.setConfig()方法,可设置uView内置的config, props, zIndex, color属性,详见:[修改uView内置配置方案](https://uviewui.com/components/setting.html#%E9%BB%98%E8%AE%A4%E5%8D%95%E4%BD%8D%E9%85%8D%E7%BD%AE) +3. 优化form组件在errorType=toast时,如果输入错误页面会有抖动的问题 +4. 修复$u.addUnit()对配置默认单位可能无效的问题 +## 2.0.24(2022-01-25) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复swiper在current指定非0时缩放有误 +2. 修复u-icon添加stop属性的时候报错 +3. 优化遗留的通过正则判断rpx单位的问题 +4. 优化Layout布局 vue使用gutter时,会超出固定区域 +5. 优化search组件高度单位问题(rpx -> px) +6. 修复u-image slot 加载和错误的图片失去了高度 +7. 修复u-index-list中footer插槽与header插槽存在性判断错误 +8. 修复部分机型下u-popup关闭时会闪烁 +9. 修复u-image在nvue-app下失去宽高 +10. 修复u-popup运行报错 +11. 修复u-tooltip报错 +12. 修复box-sizing在app下的警告 +13. 修复u-navbar在小程序中报运行时错误 +14. 其他修复 +## 2.0.23(2022-01-24) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复image组件在hx3.3.9的nvue下可能会显示异常的问题 +2. 修复col组件gutter参数带rpx单位处理不正确的问题 +3. 修复text组件单行时无法显示省略号的问题 +4. navbar添加titleStyle参数 +5. 升级到hx3.3.9可消除nvue下控制台样式警告的问题 +## 2.0.22(2022-01-19) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. $u.page()方法优化,避免在特殊场景可能报错的问题 +2. picker组件添加immediateChange参数 +3. 新增$u.pages()方法 +## 2.0.21(2022-01-19) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 优化:form组件在用户设置rules的时候提示用户model必传 +2. 优化遗留的通过正则判断rpx单位的问题 +3. 修复微信小程序环境中tabbar组件开启safeAreaInsetBottom属性后,placeholder高度填充不正确 +4. 修复swiper在current指定非0时缩放有误 +5. 修复u-icon添加stop属性的时候报错 +6. 修复upload组件在accept=all的时候没有作用 +7. 修复在text组件mode为phone时call属性无效的问题 +8. 处理u-form clearValidate方法 +9. 其他修复 +## 2.0.20(2022-01-14) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复calendar默认会选择一个日期,如果直接点确定的话,无法取到值的问题 +2. 修复Slider缺少disabled props 还有注释 +3. 修复u-notice-bar点击事件无法拿到index索引值的问题 +4. 修复u-collapse-item在vue文件下,app端自定义插槽不生效的问题 +5. 优化头像为空时显示默认头像 +6. 修复图片地址赋值后判断加载状态为完成问题 +7. 修复日历滚动到默认日期月份区域 +8. search组件暴露点击左边icon事件 +9. 修复u-form clearValidate方法不生效 +10. upload h5端增加返回文件参数(文件的name参数) +11. 处理upload选择文件后url为blob类型无法预览的问题 +12. u-code-input 修复输入框没有往左移出一半屏幕 +13. 修复Upload上传 disabled为true时,控制台报hoverClass类型错误 +14. 临时处理ios app下grid点击坍塌问题 +15. 其他修复 +## 2.0.19(2021-12-29) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 优化微信小程序包体积可在微信中预览,请升级HbuilderX3.3.4,同时在“运行->运行到小程序模拟器”中勾选“运行时是否压缩代码” +2. 优化微信小程序setData性能,处理某些方法如$u.route()无法在模板中使用的问题 +3. navbar添加autoBack参数 +4. 允许avatar组件的事件冒泡 +5. 修复cell组件报错问题 +6. 其他修复 +## 2.0.18(2021-12-28) +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复app端编译报错问题 +2. 重新处理微信小程序端setData过大的性能问题 +3. 修复边框问题 +4. 修复最大最小月份不大于0则没有数据出现的问题 +5. 修复SwipeAction微信小程序端无法上下滑动问题 +6. 修复input的placeholder在小程序端默认显示为true问题 +7. 修复divider组件click事件无效问题 +8. 修复u-code-input maxlength 属性值为 String 类型时显示异常 +9. 修复当 grid只有 1到2时 在小程序端algin设置无效的问题 +10. 处理form-item的label为top时,取消错误提示的左边距 +11. 其他修复 +## 2.0.17(2021-12-26) +## uView正在参与开源中国的“年度最佳项目”评选,之前投过票的现在也可以投票,恳请同学们投一票,[点此帮助uView](https://www.oschina.net/project/top_cn_2021/?id=583) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 解决HBuilderX3.3.3.20211225版本导致的样式问题 +2. calendar日历添加monthNum参数 +3. navbar添加center slot +## 2.0.16(2021-12-25) +## uView正在参与开源中国的“年度最佳项目”评选,之前投过票的现在也可以投票,恳请同学们投一票,[点此帮助uView](https://www.oschina.net/project/top_cn_2021/?id=583) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 解决微信小程序setData性能问题 +2. 修复count-down组件change事件不触发问题 +## 2.0.15(2021-12-21) +## uView正在参与开源中国的“年度最佳项目”评选,之前投过票的现在也可以投票,恳请同学们投一票,[点此帮助uView](https://www.oschina.net/project/top_cn_2021/?id=583) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复Cell单元格titleWidth无效 +2. 修复cheakbox组件ischecked不更新 +3. 修复keyboard是否显示"."按键默认值问题 +4. 修复number-keyboard是否显示键盘的"."符号问题 +5. 修复Input输入框 readonly无效 +6. 修复u-avatar 导致打包app、H5时候报错问题 +7. 修复Upload上传deletable无效 +8. 修复upload当设置maxSize时无效的问题 +9. 修复tabs lineWidth传入带单位的字符串的时候偏移量计算错误问题 +10. 修复rate组件在有padding的view内,显示的星星位置和可触摸区域不匹配,无法正常选中星星 +## 2.0.13(2021-12-14) +## [点击加群交流反馈:364463526](https://jq.qq.com/?_chanwv=1027&k=mCxS3TGY) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复配置默认单位为rpx可能会导致自定义导航栏高度异常的问题 +## 2.0.12(2021-12-14) +## [点击加群交流反馈:364463526](https://jq.qq.com/?_chanwv=1027&k=mCxS3TGY) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复tabs组件在vue环境下划线消失的问题 +2. 修复upload组件在安卓小程序无法选择视频的问题 +3. 添加uni.$u.config.unit配置,用于配置参数默认单位,详见:[默认单位配置](https://www.uviewui.com/components/setting.html#%E9%BB%98%E8%AE%A4%E5%8D%95%E4%BD%8D%E9%85%8D%E7%BD%AE) +4. 修复textarea组件在没绑定v-model时,字符统计不生效问题 +5. 修复nvue下控制是否出现滚动条失效问题 +## 2.0.11(2021-12-13) +## [点击加群交流反馈:364463526](https://jq.qq.com/?_chanwv=1027&k=mCxS3TGY) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. text组件align参数无效的问题 +2. subsection组件添加keyName参数 +3. upload组件无法判断[Object file]类型的问题 +4. 处理notify层级过低问题 +5. codeInput组件添加disabledDot参数 +6. 处理actionSheet组件round参数无效的问题 +7. calendar组件添加round参数用于控制圆角值 +8. 处理swipeAction组件在vue环境下默认被打开的问题 +9. button组件的throttleTime节流参数无效的问题 +10. 解决u-notify手动关闭方法close()无效的问题 +11. input组件readonly不生效问题 +12. tag组件type参数为info不生效问题 +## 2.0.10(2021-12-08) +## [点击加群交流反馈:364463526](https://jq.qq.com/?_chanwv=1027&k=mCxS3TGY) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复button sendMessagePath属性不生效 +2. 修复DatetimePicker选择器title无效 +3. 修复u-toast设置loading=true不生效 +4. 修复u-text金额模式传0报错 +5. 修复u-toast组件的icon属性配置不生效 +6. button的icon在特殊场景下的颜色优化 +7. IndexList优化,增加# +## 2.0.9(2021-12-01) +## [点击加群交流反馈:232041042](https://jq.qq.com/?_wv=1027&k=KnbeceDU) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 优化swiper的height支持100%值(仅vue有效),修复嵌入视频时click事件无法触发的问题 +2. 优化tabs组件对list值为空的判断,或者动态变化list时重新计算相关尺寸的问题 +3. 优化datetime-picker组件逻辑,让其后续打开的默认值为上一次的选中值,需要通过v-model绑定值才有效 +4. 修复upload内嵌在其他组件中,选择图片可能不会换行的问题 +## 2.0.8(2021-12-01) +## [点击加群交流反馈:232041042](https://jq.qq.com/?_wv=1027&k=KnbeceDU) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复toast的position参数无效问题 +2. 处理input在ios nvue上无法获得焦点的问题 +3. avatar-group组件添加extraValue参数,让剩余展示数量可手动控制 +4. tabs组件添加keyName参数用于配置从对象中读取的键名 +5. 处理text组件名字脱敏默认配置无效的问题 +6. 处理picker组件item文本太长换行问题 +## 2.0.7(2021-11-30) +## [点击加群交流反馈:232041042](https://jq.qq.com/?_wv=1027&k=KnbeceDU) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 修复radio和checkbox动态改变v-model无效的问题。 +2. 优化form规则validator在微信小程序用法 +3. 修复backtop组件mode参数在微信小程序无效的问题 +4. 处理Album的previewFullImage属性无效的问题 +5. 处理u-datetime-picker组件mode='time'在选择改变时间时,控制台报错的问题 +## 2.0.6(2021-11-27) +## [点击加群交流反馈:232041042](https://jq.qq.com/?_wv=1027&k=KnbeceDU) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. 处理tag组件在vue下边框无效的问题。 +2. 处理popup组件圆角参数可能无效的问题。 +3. 处理tabs组件lineColor参数可能无效的问题。 +4. propgress组件在值很小时,显示异常的问题。 +## 2.0.5(2021-11-25) +## [点击加群交流反馈:232041042](https://jq.qq.com/?_wv=1027&k=KnbeceDU) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. calendar在vue下显示异常问题。 +2. form组件labelPosition和errorType参数无效的问题 +3. input组件inputAlign无效的问题 +4. 其他一些修复 +## 2.0.4(2021-11-23) +## [点击加群交流反馈:232041042](https://jq.qq.com/?_wv=1027&k=KnbeceDU) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +0. input组件缺失@confirm事件,以及subfix和prefix无效问题 +1. component.scss文件样式在vue下干扰全局布局问题 +2. 修复subsection在vue环境下表现异常的问题 +3. tag组件的bgColor等参数无效的问题 +4. upload组件不换行的问题 +5. 其他的一些修复处理 +## 2.0.3(2021-11-16) +## [点击加群交流反馈:1129077272](https://jq.qq.com/?_wv=1027&k=KnbeceDU) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. uView2.0已实现全面兼容nvue +2. uView2.0对1.x进行了架构重构,细节和性能都有极大提升 +3. 目前uView2.0为公测阶段,相关细节可能会有变动 +4. 我们写了一份与1.x的对比指南,详见[对比1.x](https://www.uviewui.com/components/diff1.x.html) +5. 处理modal的confirm回调事件拼写错误问题 +6. 处理input组件@input事件参数错误问题 +7. 其他一些修复 +## 2.0.2(2021-11-16) +## [点击加群交流反馈:1129077272](https://jq.qq.com/?_wv=1027&k=KnbeceDU) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. uView2.0已实现全面兼容nvue +2. uView2.0对1.x进行了架构重构,细节和性能都有极大提升 +3. 目前uView2.0为公测阶段,相关细节可能会有变动 +4. 我们写了一份与1.x的对比指南,详见[对比1.x](https://www.uviewui.com/components/diff1.x.html) +5. 修复input组件formatter参数缺失问题 +6. 优化loading-icon组件的scss写法问题,防止不兼容新版本scss +## 2.0.0(2020-11-15) +## [点击加群交流反馈:1129077272](https://jq.qq.com/?_wv=1027&k=KnbeceDU) + +# uView2.0重磅发布,利剑出鞘,一统江湖 + +1. uView2.0已实现全面兼容nvue +2. uView2.0对1.x进行了架构重构,细节和性能都有极大提升 +3. 目前uView2.0为公测阶段,相关细节可能会有变动 +4. 我们写了一份与1.x的对比指南,详见[对比1.x](https://www.uviewui.com/components/diff1.x.html) +5. 修复input组件formatter参数缺失问题 + + diff --git a/uni_modules/uview-ui/components/u--form/u--form.vue b/uni_modules/uview-ui/components/u--form/u--form.vue new file mode 100644 index 0000000..fdfc212 --- /dev/null +++ b/uni_modules/uview-ui/components/u--form/u--form.vue @@ -0,0 +1,78 @@ + + + diff --git a/uni_modules/uview-ui/components/u--image/u--image.vue b/uni_modules/uview-ui/components/u--image/u--image.vue new file mode 100644 index 0000000..21b7ab1 --- /dev/null +++ b/uni_modules/uview-ui/components/u--image/u--image.vue @@ -0,0 +1,47 @@ + + + \ No newline at end of file diff --git a/uni_modules/uview-ui/components/u--input/u--input.vue b/uni_modules/uview-ui/components/u--input/u--input.vue new file mode 100644 index 0000000..2fc1213 --- /dev/null +++ b/uni_modules/uview-ui/components/u--input/u--input.vue @@ -0,0 +1,72 @@ + + + \ No newline at end of file diff --git a/uni_modules/uview-ui/components/u--text/u--text.vue b/uni_modules/uview-ui/components/u--text/u--text.vue new file mode 100644 index 0000000..44ee52a --- /dev/null +++ b/uni_modules/uview-ui/components/u--text/u--text.vue @@ -0,0 +1,44 @@ + + + diff --git a/uni_modules/uview-ui/components/u--textarea/u--textarea.vue b/uni_modules/uview-ui/components/u--textarea/u--textarea.vue new file mode 100644 index 0000000..9dbcfbb --- /dev/null +++ b/uni_modules/uview-ui/components/u--textarea/u--textarea.vue @@ -0,0 +1,47 @@ + + + diff --git a/uni_modules/uview-ui/components/u-action-sheet/props.js b/uni_modules/uview-ui/components/u-action-sheet/props.js new file mode 100644 index 0000000..e96e04f --- /dev/null +++ b/uni_modules/uview-ui/components/u-action-sheet/props.js @@ -0,0 +1,54 @@ +export default { + props: { + // 操作菜单是否展示 (默认false) + show: { + type: Boolean, + default: uni.$u.props.actionSheet.show + }, + // 标题 + title: { + type: String, + default: uni.$u.props.actionSheet.title + }, + // 选项上方的描述信息 + description: { + type: String, + default: uni.$u.props.actionSheet.description + }, + // 数据 + actions: { + type: Array, + default: uni.$u.props.actionSheet.actions + }, + // 取消按钮的文字,不为空时显示按钮 + cancelText: { + type: String, + default: uni.$u.props.actionSheet.cancelText + }, + // 点击某个菜单项时是否关闭弹窗 + closeOnClickAction: { + type: Boolean, + default: uni.$u.props.actionSheet.closeOnClickAction + }, + // 处理底部安全区(默认true) + safeAreaInsetBottom: { + type: Boolean, + default: uni.$u.props.actionSheet.safeAreaInsetBottom + }, + // 小程序的打开方式 + openType: { + type: String, + default: uni.$u.props.actionSheet.openType + }, + // 点击遮罩是否允许关闭 (默认true) + closeOnClickOverlay: { + type: Boolean, + default: uni.$u.props.actionSheet.closeOnClickOverlay + }, + // 圆角值 + round: { + type: [Boolean, String, Number], + default: uni.$u.props.actionSheet.round + } + } +} diff --git a/uni_modules/uview-ui/components/u-action-sheet/u-action-sheet.vue b/uni_modules/uview-ui/components/u-action-sheet/u-action-sheet.vue new file mode 100644 index 0000000..26d5d8d --- /dev/null +++ b/uni_modules/uview-ui/components/u-action-sheet/u-action-sheet.vue @@ -0,0 +1,278 @@ + + + + + + diff --git a/uni_modules/uview-ui/components/u-album/props.js b/uni_modules/uview-ui/components/u-album/props.js new file mode 100644 index 0000000..75cdb37 --- /dev/null +++ b/uni_modules/uview-ui/components/u-album/props.js @@ -0,0 +1,59 @@ +export default { + props: { + // 图片地址,Array|Array形式 + urls: { + type: Array, + default: uni.$u.props.album.urls + }, + // 指定从数组的对象元素中读取哪个属性作为图片地址 + keyName: { + type: String, + default: uni.$u.props.album.keyName + }, + // 单图时,图片长边的长度 + singleSize: { + type: [String, Number], + default: uni.$u.props.album.singleSize + }, + // 多图时,图片边长 + multipleSize: { + type: [String, Number], + default: uni.$u.props.album.multipleSize + }, + // 多图时,图片水平和垂直之间的间隔 + space: { + type: [String, Number], + default: uni.$u.props.album.space + }, + // 单图时,图片缩放裁剪的模式 + singleMode: { + type: String, + default: uni.$u.props.album.singleMode + }, + // 多图时,图片缩放裁剪的模式 + multipleMode: { + type: String, + default: uni.$u.props.album.multipleMode + }, + // 最多展示的图片数量,超出时最后一个位置将会显示剩余图片数量 + maxCount: { + type: [String, Number], + default: uni.$u.props.album.maxCount + }, + // 是否可以预览图片 + previewFullImage: { + type: Boolean, + default: uni.$u.props.album.previewFullImage + }, + // 每行展示图片数量,如设置,singleSize和multipleSize将会无效 + rowCount: { + type: [String, Number], + default: uni.$u.props.album.rowCount + }, + // 超出maxCount时是否显示查看更多的提示 + showMore: { + type: Boolean, + default: uni.$u.props.album.showMore + } + } +} diff --git a/uni_modules/uview-ui/components/u-album/u-album.vue b/uni_modules/uview-ui/components/u-album/u-album.vue new file mode 100644 index 0000000..687e2d5 --- /dev/null +++ b/uni_modules/uview-ui/components/u-album/u-album.vue @@ -0,0 +1,259 @@ + + + + + \ No newline at end of file diff --git a/uni_modules/uview-ui/components/u-alert/props.js b/uni_modules/uview-ui/components/u-alert/props.js new file mode 100644 index 0000000..4297e2c --- /dev/null +++ b/uni_modules/uview-ui/components/u-alert/props.js @@ -0,0 +1,44 @@ +export default { + props: { + // 显示文字 + title: { + type: String, + default: uni.$u.props.alert.title + }, + // 主题,success/warning/info/error + type: { + type: String, + default: uni.$u.props.alert.type + }, + // 辅助性文字 + description: { + type: String, + default: uni.$u.props.alert.description + }, + // 是否可关闭 + closable: { + type: Boolean, + default: uni.$u.props.alert.closable + }, + // 是否显示图标 + showIcon: { + type: Boolean, + default: uni.$u.props.alert.showIcon + }, + // 浅或深色调,light-浅色,dark-深色 + effect: { + type: String, + default: uni.$u.props.alert.effect + }, + // 文字是否居中 + center: { + type: Boolean, + default: uni.$u.props.alert.center + }, + // 字体大小 + fontSize: { + type: [String, Number], + default: uni.$u.props.alert.fontSize + } + } +} diff --git a/uni_modules/uview-ui/components/u-alert/u-alert.vue b/uni_modules/uview-ui/components/u-alert/u-alert.vue new file mode 100644 index 0000000..81f7d43 --- /dev/null +++ b/uni_modules/uview-ui/components/u-alert/u-alert.vue @@ -0,0 +1,243 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-avatar-group/props.js b/uni_modules/uview-ui/components/u-avatar-group/props.js new file mode 100644 index 0000000..58b42ac --- /dev/null +++ b/uni_modules/uview-ui/components/u-avatar-group/props.js @@ -0,0 +1,52 @@ +export default { + props: { + // 头像图片组 + urls: { + type: Array, + default: uni.$u.props.avatarGroup.urls + }, + // 最多展示的头像数量 + maxCount: { + type: [String, Number], + default: uni.$u.props.avatarGroup.maxCount + }, + // 头像形状 + shape: { + type: String, + default: uni.$u.props.avatarGroup.shape + }, + // 图片裁剪模式 + mode: { + type: String, + default: uni.$u.props.avatarGroup.mode + }, + // 超出maxCount时是否显示查看更多的提示 + showMore: { + type: Boolean, + default: uni.$u.props.avatarGroup.showMore + }, + // 头像大小 + size: { + type: [String, Number], + default: uni.$u.props.avatarGroup.size + }, + // 指定从数组的对象元素中读取哪个属性作为图片地址 + keyName: { + type: String, + default: uni.$u.props.avatarGroup.keyName + }, + // 头像之间的遮挡比例 + gap: { + type: [String, Number], + validator(value) { + return value >= 0 && value <= 1 + }, + default: uni.$u.props.avatarGroup.gap + }, + // 需额外显示的值 + extraValue: { + type: [Number, String], + default: uni.$u.props.avatarGroup.extraValue + } + } +} diff --git a/uni_modules/uview-ui/components/u-avatar-group/u-avatar-group.vue b/uni_modules/uview-ui/components/u-avatar-group/u-avatar-group.vue new file mode 100644 index 0000000..7e996d7 --- /dev/null +++ b/uni_modules/uview-ui/components/u-avatar-group/u-avatar-group.vue @@ -0,0 +1,103 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-avatar/props.js b/uni_modules/uview-ui/components/u-avatar/props.js new file mode 100644 index 0000000..34ca0f2 --- /dev/null +++ b/uni_modules/uview-ui/components/u-avatar/props.js @@ -0,0 +1,78 @@ +export default { + props: { + // 头像图片路径(不能为相对路径) + src: { + type: String, + default: uni.$u.props.avatar.src + }, + // 头像形状,circle-圆形,square-方形 + shape: { + type: String, + default: uni.$u.props.avatar.shape + }, + // 头像尺寸 + size: { + type: [String, Number], + default: uni.$u.props.avatar.size + }, + // 裁剪模式 + mode: { + type: String, + default: uni.$u.props.avatar.mode + }, + // 显示的文字 + text: { + type: String, + default: uni.$u.props.avatar.text + }, + // 背景色 + bgColor: { + type: String, + default: uni.$u.props.avatar.bgColor + }, + // 文字颜色 + color: { + type: String, + default: uni.$u.props.avatar.color + }, + // 文字大小 + fontSize: { + type: [String, Number], + default: uni.$u.props.avatar.fontSize + }, + // 显示的图标 + icon: { + type: String, + default: uni.$u.props.avatar.icon + }, + // 显示小程序头像,只对百度,微信,QQ小程序有效 + mpAvatar: { + type: Boolean, + default: uni.$u.props.avatar.mpAvatar + }, + // 是否使用随机背景色 + randomBgColor: { + type: Boolean, + default: uni.$u.props.avatar.randomBgColor + }, + // 加载失败的默认头像(组件有内置默认图片) + defaultUrl: { + type: String, + default: uni.$u.props.avatar.defaultUrl + }, + // 如果配置了randomBgColor为true,且配置了此值,则从默认的背景色数组中取出对应索引的颜色值,取值0-19之间 + colorIndex: { + type: [String, Number], + // 校验参数规则,索引在0-19之间 + validator(n) { + return uni.$u.test.range(n, [0, 19]) || n === '' + }, + default: uni.$u.props.avatar.colorIndex + }, + // 组件标识符 + name: { + type: String, + default: uni.$u.props.avatar.name + } + } +} diff --git a/uni_modules/uview-ui/components/u-avatar/u-avatar.vue b/uni_modules/uview-ui/components/u-avatar/u-avatar.vue new file mode 100644 index 0000000..3319be5 --- /dev/null +++ b/uni_modules/uview-ui/components/u-avatar/u-avatar.vue @@ -0,0 +1,172 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-back-top/props.js b/uni_modules/uview-ui/components/u-back-top/props.js new file mode 100644 index 0000000..6c702c2 --- /dev/null +++ b/uni_modules/uview-ui/components/u-back-top/props.js @@ -0,0 +1,54 @@ +export default { + props: { + // 返回顶部的形状,circle-圆形,square-方形 + mode: { + type: String, + default: uni.$u.props.backtop.mode + }, + // 自定义图标 + icon: { + type: String, + default: uni.$u.props.backtop.icon + }, + // 提示文字 + text: { + type: String, + default: uni.$u.props.backtop.text + }, + // 返回顶部滚动时间 + duration: { + type: [String, Number], + default: uni.$u.props.backtop.duration + }, + // 滚动距离 + scrollTop: { + type: [String, Number], + default: uni.$u.props.backtop.scrollTop + }, + // 距离顶部多少距离显示,单位px + top: { + type: [String, Number], + default: uni.$u.props.backtop.top + }, + // 返回顶部按钮到底部的距离,单位px + bottom: { + type: [String, Number], + default: uni.$u.props.backtop.bottom + }, + // 返回顶部按钮到右边的距离,单位px + right: { + type: [String, Number], + default: uni.$u.props.backtop.right + }, + // 层级 + zIndex: { + type: [String, Number], + default: uni.$u.props.backtop.zIndex + }, + // 图标的样式,对象形式 + iconStyle: { + type: Object, + default: uni.$u.props.backtop.iconStyle + } + } +} diff --git a/uni_modules/uview-ui/components/u-back-top/u-back-top.vue b/uni_modules/uview-ui/components/u-back-top/u-back-top.vue new file mode 100644 index 0000000..2d07566 --- /dev/null +++ b/uni_modules/uview-ui/components/u-back-top/u-back-top.vue @@ -0,0 +1,129 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-badge/props.js b/uni_modules/uview-ui/components/u-badge/props.js new file mode 100644 index 0000000..74c032c --- /dev/null +++ b/uni_modules/uview-ui/components/u-badge/props.js @@ -0,0 +1,72 @@ +export default { + props: { + // 是否显示圆点 + isDot: { + type: Boolean, + default: uni.$u.props.badge.isDot + }, + // 显示的内容 + value: { + type: [Number, String], + default: uni.$u.props.badge.value + }, + // 是否显示 + show: { + type: Boolean, + default: uni.$u.props.badge.show + }, + // 最大值,超过最大值会显示 '{max}+' + max: { + type: [Number, String], + default: uni.$u.props.badge.max + }, + // 主题类型,error|warning|success|primary + type: { + type: String, + default: uni.$u.props.badge.type + }, + // 当数值为 0 时,是否展示 Badge + showZero: { + type: Boolean, + default: uni.$u.props.badge.showZero + }, + // 背景颜色,优先级比type高,如设置,type参数会失效 + bgColor: { + type: [String, null], + default: uni.$u.props.badge.bgColor + }, + // 字体颜色 + color: { + type: [String, null], + default: uni.$u.props.badge.color + }, + // 徽标形状,circle-四角均为圆角,horn-左下角为直角 + shape: { + type: String, + default: uni.$u.props.badge.shape + }, + // 设置数字的显示方式,overflow|ellipsis|limit + // overflow会根据max字段判断,超出显示`${max}+` + // ellipsis会根据max判断,超出显示`${max}...` + // limit会依据1000作为判断条件,超出1000,显示`${value/1000}K`,比如2.2k、3.34w,最多保留2位小数 + numberType: { + type: String, + default: uni.$u.props.badge.numberType + }, + // 设置badge的位置偏移,格式为 [x, y],也即设置的为top和right的值,absolute为true时有效 + offset: { + type: Array, + default: uni.$u.props.badge.offset + }, + // 是否反转背景和字体颜色 + inverted: { + type: Boolean, + default: uni.$u.props.badge.inverted + }, + // 是否绝对定位 + absolute: { + type: Boolean, + default: uni.$u.props.badge.absolute + } + } +} diff --git a/uni_modules/uview-ui/components/u-badge/u-badge.vue b/uni_modules/uview-ui/components/u-badge/u-badge.vue new file mode 100644 index 0000000..53cfc81 --- /dev/null +++ b/uni_modules/uview-ui/components/u-badge/u-badge.vue @@ -0,0 +1,171 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-button/nvue.scss b/uni_modules/uview-ui/components/u-button/nvue.scss new file mode 100644 index 0000000..490db7d --- /dev/null +++ b/uni_modules/uview-ui/components/u-button/nvue.scss @@ -0,0 +1,46 @@ +$u-button-active-opacity:0.75 !default; +$u-button-loading-text-margin-left:4px !default; +$u-button-text-color: #FFFFFF !default; +$u-button-text-plain-error-color:$u-error !default; +$u-button-text-plain-warning-color:$u-warning !default; +$u-button-text-plain-success-color:$u-success !default; +$u-button-text-plain-info-color:$u-info !default; +$u-button-text-plain-primary-color:$u-primary !default; +.u-button { + &--active { + opacity: $u-button-active-opacity; + } + + &--active--plain { + background-color: rgb(217, 217, 217); + } + + &__loading-text { + margin-left:$u-button-loading-text-margin-left; + } + + &__text, + &__loading-text { + color:$u-button-text-color; + } + + &__text--plain--error { + color:$u-button-text-plain-error-color; + } + + &__text--plain--warning { + color:$u-button-text-plain-warning-color; + } + + &__text--plain--success{ + color:$u-button-text-plain-success-color; + } + + &__text--plain--info { + color:$u-button-text-plain-info-color; + } + + &__text--plain--primary { + color:$u-button-text-plain-primary-color; + } +} \ No newline at end of file diff --git a/uni_modules/uview-ui/components/u-button/props.js b/uni_modules/uview-ui/components/u-button/props.js new file mode 100644 index 0000000..07fd844 --- /dev/null +++ b/uni_modules/uview-ui/components/u-button/props.js @@ -0,0 +1,161 @@ +/* + * @Author : LQ + * @Description : + * @version : 1.0 + * @Date : 2021-08-16 10:04:04 + * @LastAuthor : LQ + * @lastTime : 2021-08-16 10:04:24 + * @FilePath : /u-view2.0/uview-ui/components/u-button/props.js + */ +export default { + props: { + // 是否细边框 + hairline: { + type: Boolean, + default: uni.$u.props.button.hairline + }, + // 按钮的预置样式,info,primary,error,warning,success + type: { + type: String, + default: uni.$u.props.button.type + }, + // 按钮尺寸,large,normal,small,mini + size: { + type: String, + default: uni.$u.props.button.size + }, + // 按钮形状,circle(两边为半圆),square(带圆角) + shape: { + type: String, + default: uni.$u.props.button.shape + }, + // 按钮是否镂空 + plain: { + type: Boolean, + default: uni.$u.props.button.plain + }, + // 是否禁止状态 + disabled: { + type: Boolean, + default: uni.$u.props.button.disabled + }, + // 是否加载中 + loading: { + type: Boolean, + default: uni.$u.props.button.loading + }, + // 加载中提示文字 + loadingText: { + type: [String, Number], + default: uni.$u.props.button.loadingText + }, + // 加载状态图标类型 + loadingMode: { + type: String, + default: uni.$u.props.button.loadingMode + }, + // 加载图标大小 + loadingSize: { + type: [String, Number], + default: uni.$u.props.button.loadingSize + }, + // 开放能力,具体请看uniapp稳定关于button组件部分说明 + // https://uniapp.dcloud.io/component/button + openType: { + type: String, + default: uni.$u.props.button.openType + }, + // 用于
组件,点击分别会触发 组件的 submit/reset 事件 + // 取值为submit(提交表单),reset(重置表单) + formType: { + type: String, + default: uni.$u.props.button.formType + }, + // 打开 APP 时,向 APP 传递的参数,open-type=launchApp时有效 + // 只微信小程序、QQ小程序有效 + appParameter: { + type: String, + default: uni.$u.props.button.appParameter + }, + // 指定是否阻止本节点的祖先节点出现点击态,微信小程序有效 + hoverStopPropagation: { + type: Boolean, + default: uni.$u.props.button.hoverStopPropagation + }, + // 指定返回用户信息的语言,zh_CN 简体中文,zh_TW 繁体中文,en 英文。只微信小程序有效 + lang: { + type: String, + default: uni.$u.props.button.lang + }, + // 会话来源,open-type="contact"时有效。只微信小程序有效 + sessionFrom: { + type: String, + default: uni.$u.props.button.sessionFrom + }, + // 会话内消息卡片标题,open-type="contact"时有效 + // 默认当前标题,只微信小程序有效 + sendMessageTitle: { + type: String, + default: uni.$u.props.button.sendMessageTitle + }, + // 会话内消息卡片点击跳转小程序路径,open-type="contact"时有效 + // 默认当前分享路径,只微信小程序有效 + sendMessagePath: { + type: String, + default: uni.$u.props.button.sendMessagePath + }, + // 会话内消息卡片图片,open-type="contact"时有效 + // 默认当前页面截图,只微信小程序有效 + sendMessageImg: { + type: String, + default: uni.$u.props.button.sendMessageImg + }, + // 是否显示会话内消息卡片,设置此参数为 true,用户进入客服会话会在右下角显示"可能要发送的小程序"提示, + // 用户点击后可以快速发送小程序消息,open-type="contact"时有效 + showMessageCard: { + type: Boolean, + default: uni.$u.props.button.showMessageCard + }, + // 额外传参参数,用于小程序的data-xxx属性,通过target.dataset.name获取 + dataName: { + type: String, + default: uni.$u.props.button.dataName + }, + // 节流,一定时间内只能触发一次 + throttleTime: { + type: [String, Number], + default: uni.$u.props.button.throttleTime + }, + // 按住后多久出现点击态,单位毫秒 + hoverStartTime: { + type: [String, Number], + default: uni.$u.props.button.hoverStartTime + }, + // 手指松开后点击态保留时间,单位毫秒 + hoverStayTime: { + type: [String, Number], + default: uni.$u.props.button.hoverStayTime + }, + // 按钮文字,之所以通过props传入,是因为slot传入的话 + // nvue中无法控制文字的样式 + text: { + type: [String, Number], + default: uni.$u.props.button.text + }, + // 按钮图标 + icon: { + type: String, + default: uni.$u.props.button.icon + }, + // 按钮图标 + iconColor: { + type: String, + default: uni.$u.props.button.icon + }, + // 按钮颜色,支持传入linear-gradient渐变色 + color: { + type: String, + default: uni.$u.props.button.color + } + } +} diff --git a/uni_modules/uview-ui/components/u-button/u-button.vue b/uni_modules/uview-ui/components/u-button/u-button.vue new file mode 100644 index 0000000..5494351 --- /dev/null +++ b/uni_modules/uview-ui/components/u-button/u-button.vue @@ -0,0 +1,490 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-button/vue.scss b/uni_modules/uview-ui/components/u-button/vue.scss new file mode 100644 index 0000000..32019b2 --- /dev/null +++ b/uni_modules/uview-ui/components/u-button/vue.scss @@ -0,0 +1,80 @@ +// nvue下hover-class无效 +$u-button-before-top:50% !default; +$u-button-before-left:50% !default; +$u-button-before-width:100% !default; +$u-button-before-height:100% !default; +$u-button-before-transform:translate(-50%, -50%) !default; +$u-button-before-opacity:0 !default; +$u-button-before-background-color:#000 !default; +$u-button-before-border-color:#000 !default; +$u-button-active-before-opacity:.15 !default; +$u-button-icon-margin-left:4px !default; +$u-button-plain-u-button-info-color:$u-info; +$u-button-plain-u-button-success-color:$u-success; +$u-button-plain-u-button-error-color:$u-error; +$u-button-plain-u-button-warning-color:$u-error; + +.u-button { + width: 100%; + + &__text { + white-space: nowrap; + line-height: 1; + } + + &:before { + position: absolute; + top:$u-button-before-top; + left:$u-button-before-left; + width:$u-button-before-width; + height:$u-button-before-height; + border: inherit; + border-radius: inherit; + transform:$u-button-before-transform; + opacity:$u-button-before-opacity; + content: " "; + background-color:$u-button-before-background-color; + border-color:$u-button-before-border-color; + } + + &--active { + &:before { + opacity: .15 + } + } + + &__icon+&__text:not(:empty), + &__loading-text { + margin-left:$u-button-icon-margin-left; + } + + &--plain { + &.u-button--primary { + color: $u-primary; + } + } + + &--plain { + &.u-button--info { + color:$u-button-plain-u-button-info-color; + } + } + + &--plain { + &.u-button--success { + color:$u-button-plain-u-button-success-color; + } + } + + &--plain { + &.u-button--error { + color:$u-button-plain-u-button-error-color; + } + } + + &--plain { + &.u-button--warning { + color:$u-button-plain-u-button-warning-color; + } + } +} diff --git a/uni_modules/uview-ui/components/u-calendar/header.vue b/uni_modules/uview-ui/components/u-calendar/header.vue new file mode 100644 index 0000000..dc4f7d0 --- /dev/null +++ b/uni_modules/uview-ui/components/u-calendar/header.vue @@ -0,0 +1,99 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-calendar/month.vue b/uni_modules/uview-ui/components/u-calendar/month.vue new file mode 100644 index 0000000..c20937f --- /dev/null +++ b/uni_modules/uview-ui/components/u-calendar/month.vue @@ -0,0 +1,579 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-calendar/props.js b/uni_modules/uview-ui/components/u-calendar/props.js new file mode 100644 index 0000000..2ad7bc7 --- /dev/null +++ b/uni_modules/uview-ui/components/u-calendar/props.js @@ -0,0 +1,144 @@ +export default { + props: { + // 日历顶部标题 + title: { + type: String, + default: uni.$u.props.calendar.title + }, + // 是否显示标题 + showTitle: { + type: Boolean, + default: uni.$u.props.calendar.showTitle + }, + // 是否显示副标题 + showSubtitle: { + type: Boolean, + default: uni.$u.props.calendar.showSubtitle + }, + // 日期类型选择,single-选择单个日期,multiple-可以选择多个日期,range-选择日期范围 + mode: { + type: String, + default: uni.$u.props.calendar.mode + }, + // mode=range时,第一个日期底部的提示文字 + startText: { + type: String, + default: uni.$u.props.calendar.startText + }, + // mode=range时,最后一个日期底部的提示文字 + endText: { + type: String, + default: uni.$u.props.calendar.endText + }, + // 自定义列表 + customList: { + type: Array, + default: uni.$u.props.calendar.customList + }, + // 主题色,对底部按钮和选中日期有效 + color: { + type: String, + default: uni.$u.props.calendar.color + }, + // 最小的可选日期 + minDate: { + type: [String, Number], + default: uni.$u.props.calendar.minDate + }, + // 最大可选日期 + maxDate: { + type: [String, Number], + default: uni.$u.props.calendar.maxDate + }, + // 默认选中的日期,mode为multiple或range是必须为数组格式 + defaultDate: { + type: [Array, String, Date, null], + default: uni.$u.props.calendar.defaultDate + }, + // mode=multiple时,最多可选多少个日期 + maxCount: { + type: [String, Number], + default: uni.$u.props.calendar.maxCount + }, + // 日期行高 + rowHeight: { + type: [String, Number], + default: uni.$u.props.calendar.rowHeight + }, + // 日期格式化函数 + formatter: { + type: [Function, null], + default: uni.$u.props.calendar.formatter + }, + // 是否显示农历 + showLunar: { + type: Boolean, + default: uni.$u.props.calendar.showLunar + }, + // 是否显示月份背景色 + showMark: { + type: Boolean, + default: uni.$u.props.calendar.showMark + }, + // 确定按钮的文字 + confirmText: { + type: String, + default: uni.$u.props.calendar.confirmText + }, + // 确认按钮处于禁用状态时的文字 + confirmDisabledText: { + type: String, + default: uni.$u.props.calendar.confirmDisabledText + }, + // 是否显示日历弹窗 + show: { + type: Boolean, + default: uni.$u.props.calendar.show + }, + // 是否允许点击遮罩关闭日历 + closeOnClickOverlay: { + type: Boolean, + default: uni.$u.props.calendar.closeOnClickOverlay + }, + // 是否为只读状态,只读状态下禁止选择日期 + readonly: { + type: Boolean, + default: uni.$u.props.calendar.readonly + }, + // 是否展示确认按钮 + showConfirm: { + type: Boolean, + default: uni.$u.props.calendar.showConfirm + }, + // 日期区间最多可选天数,默认无限制,mode = range时有效 + maxRange: { + type: [Number, String], + default: uni.$u.props.calendar.maxRange + }, + // 范围选择超过最多可选天数时的提示文案,mode = range时有效 + rangePrompt: { + type: String, + default: uni.$u.props.calendar.rangePrompt + }, + // 范围选择超过最多可选天数时,是否展示提示文案,mode = range时有效 + showRangePrompt: { + type: Boolean, + default: uni.$u.props.calendar.showRangePrompt + }, + // 是否允许日期范围的起止时间为同一天,mode = range时有效 + allowSameDay: { + type: Boolean, + default: uni.$u.props.calendar.allowSameDay + }, + // 圆角值 + round: { + type: [Boolean, String, Number], + default: uni.$u.props.calendar.round + }, + // 最多展示月份数量 + monthNum: { + type: [Number, String], + default: 3 + } + } +} diff --git a/uni_modules/uview-ui/components/u-calendar/u-calendar.vue b/uni_modules/uview-ui/components/u-calendar/u-calendar.vue new file mode 100644 index 0000000..ad892ff --- /dev/null +++ b/uni_modules/uview-ui/components/u-calendar/u-calendar.vue @@ -0,0 +1,383 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-calendar/util.js b/uni_modules/uview-ui/components/u-calendar/util.js new file mode 100644 index 0000000..ca4736b --- /dev/null +++ b/uni_modules/uview-ui/components/u-calendar/util.js @@ -0,0 +1,85 @@ +export default { + methods: { + // 设置月份数据 + setMonth() { + // 月初是周几 + const day = dayjs(this.date).date(1).day() + const start = day == 0 ? 6 : day - 1 + + // 本月天数 + const days = dayjs(this.date).endOf('month').format('D') + + // 上个月天数 + const prevDays = dayjs(this.date).endOf('month').subtract(1, 'month').format('D') + + // 日期数据 + const arr = [] + // 清空表格 + this.month = [] + + // 添加上月数据 + arr.push( + ...new Array(start).fill(1).map((e, i) => { + const day = prevDays - start + i + 1 + + return { + value: day, + disabled: true, + date: dayjs(this.date).subtract(1, 'month').date(day).format('YYYY-MM-DD') + } + }) + ) + + // 添加本月数据 + arr.push( + ...new Array(days - 0).fill(1).map((e, i) => { + const day = i + 1 + + return { + value: day, + date: dayjs(this.date).date(day).format('YYYY-MM-DD') + } + }) + ) + + // 添加下个月 + arr.push( + ...new Array(42 - days - start).fill(1).map((e, i) => { + const day = i + 1 + + return { + value: day, + disabled: true, + date: dayjs(this.date).add(1, 'month').date(day).format('YYYY-MM-DD') + } + }) + ) + + // 分割数组 + for (let n = 0; n < arr.length; n += 7) { + this.month.push( + arr.slice(n, n + 7).map((e, i) => { + e.index = i + n + + // 自定义信息 + const custom = this.customList.find((c) => c.date == e.date) + + // 农历 + if (this.lunar) { + const { + IDayCn, + IMonthCn + } = this.getLunar(e.date) + e.lunar = IDayCn == '初一' ? IMonthCn : IDayCn + } + + return { + ...e, + ...custom + } + }) + ) + } + } + } +} diff --git a/uni_modules/uview-ui/components/u-car-keyboard/props.js b/uni_modules/uview-ui/components/u-car-keyboard/props.js new file mode 100644 index 0000000..3553647 --- /dev/null +++ b/uni_modules/uview-ui/components/u-car-keyboard/props.js @@ -0,0 +1,14 @@ +export default { + props: { + // 是否打乱键盘按键的顺序 + random: { + type: Boolean, + default: false + }, + // 输入一个中文后,是否自动切换到英文 + autoChange: { + type: Boolean, + default: false + } + } +} diff --git a/uni_modules/uview-ui/components/u-car-keyboard/u-car-keyboard.vue b/uni_modules/uview-ui/components/u-car-keyboard/u-car-keyboard.vue new file mode 100644 index 0000000..51175b5 --- /dev/null +++ b/uni_modules/uview-ui/components/u-car-keyboard/u-car-keyboard.vue @@ -0,0 +1,311 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-cell-group/props.js b/uni_modules/uview-ui/components/u-cell-group/props.js new file mode 100644 index 0000000..350ef40 --- /dev/null +++ b/uni_modules/uview-ui/components/u-cell-group/props.js @@ -0,0 +1,14 @@ +export default { + props: { + // 分组标题 + title: { + type: String, + default: uni.$u.props.cellGroup.title + }, + // 是否显示外边框 + border: { + type: Boolean, + default: uni.$u.props.cellGroup.border + } + } +} diff --git a/uni_modules/uview-ui/components/u-cell-group/u-cell-group.vue b/uni_modules/uview-ui/components/u-cell-group/u-cell-group.vue new file mode 100644 index 0000000..a9508c0 --- /dev/null +++ b/uni_modules/uview-ui/components/u-cell-group/u-cell-group.vue @@ -0,0 +1,61 @@ + + + + + + diff --git a/uni_modules/uview-ui/components/u-cell/props.js b/uni_modules/uview-ui/components/u-cell/props.js new file mode 100644 index 0000000..da03330 --- /dev/null +++ b/uni_modules/uview-ui/components/u-cell/props.js @@ -0,0 +1,110 @@ +export default { + props: { + // 标题 + title: { + type: [String, Number], + default: uni.$u.props.cell.title + }, + // 标题下方的描述信息 + label: { + type: [String, Number], + default: uni.$u.props.cell.label + }, + // 右侧的内容 + value: { + type: [String, Number], + default: uni.$u.props.cell.value + }, + // 左侧图标名称,或者图片链接(本地文件建议使用绝对地址) + icon: { + type: String, + default: uni.$u.props.cell.icon + }, + // 是否禁用cell + disabled: { + type: Boolean, + default: uni.$u.props.cell.disabled + }, + // 是否显示下边框 + border: { + type: Boolean, + default: uni.$u.props.cell.border + }, + // 内容是否垂直居中(主要是针对右侧的value部分) + center: { + type: Boolean, + default: uni.$u.props.cell.center + }, + // 点击后跳转的URL地址 + url: { + type: String, + default: uni.$u.props.cell.url + }, + // 链接跳转的方式,内部使用的是uView封装的route方法,可能会进行拦截操作 + linkType: { + type: String, + default: uni.$u.props.cell.linkType + }, + // 是否开启点击反馈(表现为点击时加上灰色背景) + clickable: { + type: Boolean, + default: uni.$u.props.cell.clickable + }, + // 是否展示右侧箭头并开启点击反馈 + isLink: { + type: Boolean, + default: uni.$u.props.cell.isLink + }, + // 是否显示表单状态下的必填星号(此组件可能会内嵌入input组件) + required: { + type: Boolean, + default: uni.$u.props.cell.required + }, + // 右侧的图标箭头 + rightIcon: { + type: String, + default: uni.$u.props.cell.rightIcon + }, + // 右侧箭头的方向,可选值为:left,up,down + arrowDirection: { + type: String, + default: uni.$u.props.cell.arrowDirection + }, + // 左侧图标样式 + iconStyle: { + type: [Object, String], + default: () => { + return uni.$u.props.cell.iconStyle + } + }, + // 右侧箭头图标的样式 + rightIconStyle: { + type: [Object, String], + default: () => { + return uni.$u.props.cell.rightIconStyle + } + }, + // 标题的样式 + titleStyle: { + type: [Object, String], + default: () => { + return uni.$u.props.cell.titleStyle + } + }, + // 单位元的大小,可选值为large + size: { + type: String, + default: uni.$u.props.cell.size + }, + // 点击cell是否阻止事件传播 + stop: { + type: Boolean, + default: uni.$u.props.cell.stop + }, + // 标识符,cell被点击时返回 + name: { + type: [Number, String], + default: uni.$u.props.cell.name + } + } +} diff --git a/uni_modules/uview-ui/components/u-cell/u-cell.vue b/uni_modules/uview-ui/components/u-cell/u-cell.vue new file mode 100644 index 0000000..b099c90 --- /dev/null +++ b/uni_modules/uview-ui/components/u-cell/u-cell.vue @@ -0,0 +1,229 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-checkbox-group/props.js b/uni_modules/uview-ui/components/u-checkbox-group/props.js new file mode 100644 index 0000000..2f818a1 --- /dev/null +++ b/uni_modules/uview-ui/components/u-checkbox-group/props.js @@ -0,0 +1,82 @@ +export default { + props: { + // 标识符 + name: { + type: String, + default: uni.$u.props.checkboxGroup.name + }, + // 绑定的值 + value: { + type: Array, + default: uni.$u.props.checkboxGroup.value + }, + // 形状,circle-圆形,square-方形 + shape: { + type: String, + default: uni.$u.props.checkboxGroup.shape + }, + // 是否禁用全部checkbox + disabled: { + type: Boolean, + default: uni.$u.props.checkboxGroup.disabled + }, + + // 选中状态下的颜色,如设置此值,将会覆盖parent的activeColor值 + activeColor: { + type: String, + default: uni.$u.props.checkboxGroup.activeColor + }, + // 未选中的颜色 + inactiveColor: { + type: String, + default: uni.$u.props.checkboxGroup.inactiveColor + }, + + // 整个组件的尺寸,默认px + size: { + type: [String, Number], + default: uni.$u.props.checkboxGroup.size + }, + // 布局方式,row-横向,column-纵向 + placement: { + type: String, + default: uni.$u.props.checkboxGroup.placement + }, + // label的字体大小,px单位 + labelSize: { + type: [String, Number], + default: uni.$u.props.checkboxGroup.labelSize + }, + // label的字体颜色 + labelColor: { + type: [String], + default: uni.$u.props.checkboxGroup.labelColor + }, + // 是否禁止点击文本操作 + labelDisabled: { + type: Boolean, + default: uni.$u.props.checkboxGroup.labelDisabled + }, + // 图标颜色 + iconColor: { + type: String, + default: uni.$u.props.checkboxGroup.iconColor + }, + // 图标的大小,单位px + iconSize: { + type: [String, Number], + default: uni.$u.props.checkboxGroup.iconSize + }, + // 勾选图标的对齐方式,left-左边,right-右边 + iconPlacement: { + type: String, + default: uni.$u.props.checkboxGroup.iconPlacement + }, + // 竖向配列时,是否显示下划线 + borderBottom: { + type: Boolean, + default: uni.$u.props.checkboxGroup.borderBottom + } + + } +} diff --git a/uni_modules/uview-ui/components/u-checkbox-group/u-checkbox-group.vue b/uni_modules/uview-ui/components/u-checkbox-group/u-checkbox-group.vue new file mode 100644 index 0000000..7a6b4fa --- /dev/null +++ b/uni_modules/uview-ui/components/u-checkbox-group/u-checkbox-group.vue @@ -0,0 +1,103 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-checkbox/props.js b/uni_modules/uview-ui/components/u-checkbox/props.js new file mode 100644 index 0000000..93f4fd9 --- /dev/null +++ b/uni_modules/uview-ui/components/u-checkbox/props.js @@ -0,0 +1,69 @@ +export default { + props: { + // checkbox的名称 + name: { + type: [String, Number, Boolean], + default: uni.$u.props.checkbox.name + }, + // 形状,square为方形,circle为圆型 + shape: { + type: String, + default: uni.$u.props.checkbox.shape + }, + // 整体的大小 + size: { + type: [String, Number], + default: uni.$u.props.checkbox.size + }, + // 是否默认选中 + checked: { + type: Boolean, + default: uni.$u.props.checkbox.checked + }, + // 是否禁用 + disabled: { + type: [String, Boolean], + default: uni.$u.props.checkbox.disabled + }, + // 选中状态下的颜色,如设置此值,将会覆盖parent的activeColor值 + activeColor: { + type: String, + default: uni.$u.props.checkbox.activeColor + }, + // 未选中的颜色 + inactiveColor: { + type: String, + default: uni.$u.props.checkbox.inactiveColor + }, + // 图标的大小,单位px + iconSize: { + type: [String, Number], + default: uni.$u.props.checkbox.iconSize + }, + // 图标颜色 + iconColor: { + type: String, + default: uni.$u.props.checkbox.iconColor + }, + // label提示文字,因为nvue下,直接slot进来的文字,由于特殊的结构,无法修改样式 + label: { + type: [String, Number], + default: uni.$u.props.checkbox.label + }, + // label的字体大小,px单位 + labelSize: { + type: [String, Number], + default: uni.$u.props.checkbox.labelSize + }, + // label的颜色 + labelColor: { + type: String, + default: uni.$u.props.checkbox.labelColor + }, + // 是否禁止点击提示语选中复选框 + labelDisabled: { + type: [String, Boolean], + default: uni.$u.props.checkbox.labelDisabled + } + } +} diff --git a/uni_modules/uview-ui/components/u-checkbox/u-checkbox.vue b/uni_modules/uview-ui/components/u-checkbox/u-checkbox.vue new file mode 100644 index 0000000..6429cca --- /dev/null +++ b/uni_modules/uview-ui/components/u-checkbox/u-checkbox.vue @@ -0,0 +1,344 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-circle-progress/props.js b/uni_modules/uview-ui/components/u-circle-progress/props.js new file mode 100644 index 0000000..d776cfb --- /dev/null +++ b/uni_modules/uview-ui/components/u-circle-progress/props.js @@ -0,0 +1,8 @@ +export default { + props: { + percentage: { + type: [String, Number], + default: uni.$u.props.circleProgress.percentage + } + } +} diff --git a/uni_modules/uview-ui/components/u-circle-progress/u-circle-progress.vue b/uni_modules/uview-ui/components/u-circle-progress/u-circle-progress.vue new file mode 100644 index 0000000..d1ee286 --- /dev/null +++ b/uni_modules/uview-ui/components/u-circle-progress/u-circle-progress.vue @@ -0,0 +1,198 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-code-input/props.js b/uni_modules/uview-ui/components/u-code-input/props.js new file mode 100644 index 0000000..0f016ee --- /dev/null +++ b/uni_modules/uview-ui/components/u-code-input/props.js @@ -0,0 +1,79 @@ +export default { + props: { + // 键盘弹起时,是否自动上推页面 + adjustPosition: { + type: Boolean, + default: uni.$u.props.codeInput.adjustPosition + }, + // 最大输入长度 + maxlength: { + type: [String, Number], + default: uni.$u.props.codeInput.maxlength + }, + // 是否用圆点填充 + dot: { + type: Boolean, + default: uni.$u.props.codeInput.dot + }, + // 显示模式,box-盒子模式,line-底部横线模式 + mode: { + type: String, + default: uni.$u.props.codeInput.mode + }, + // 是否细边框 + hairline: { + type: Boolean, + default: uni.$u.props.codeInput.hairline + }, + // 字符间的距离 + space: { + type: [String, Number], + default: uni.$u.props.codeInput.space + }, + // 预置值 + value: { + type: [String, Number], + default: uni.$u.props.codeInput.value + }, + // 是否自动获取焦点 + focus: { + type: Boolean, + default: uni.$u.props.codeInput.focus + }, + // 字体是否加粗 + bold: { + type: Boolean, + default: uni.$u.props.codeInput.bold + }, + // 字体颜色 + color: { + type: String, + default: uni.$u.props.codeInput.color + }, + // 字体大小 + fontSize: { + type: [String, Number], + default: uni.$u.props.codeInput.fontSize + }, + // 输入框的大小,宽等于高 + size: { + type: [String, Number], + default: uni.$u.props.codeInput.size + }, + // 是否隐藏原生键盘,如果想用自定义键盘的话,需设置此参数为true + disabledKeyboard: { + type: Boolean, + default: uni.$u.props.codeInput.disabledKeyboard + }, + // 边框和线条颜色 + borderColor: { + type: String, + default: uni.$u.props.codeInput.borderColor + }, + // 是否禁止输入"."符号 + disabledDot: { + type: Boolean, + default: uni.$u.props.codeInput.disabledDot + } + } +} diff --git a/uni_modules/uview-ui/components/u-code-input/u-code-input.vue b/uni_modules/uview-ui/components/u-code-input/u-code-input.vue new file mode 100644 index 0000000..96241cf --- /dev/null +++ b/uni_modules/uview-ui/components/u-code-input/u-code-input.vue @@ -0,0 +1,252 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-code/props.js b/uni_modules/uview-ui/components/u-code/props.js new file mode 100644 index 0000000..eaf80d0 --- /dev/null +++ b/uni_modules/uview-ui/components/u-code/props.js @@ -0,0 +1,34 @@ +export default { + props: { + // 倒计时总秒数 + seconds: { + type: [String, Number], + default: uni.$u.props.code.seconds + }, + // 尚未开始时提示 + startText: { + type: String, + default: uni.$u.props.code.startText + }, + // 正在倒计时中的提示 + changeText: { + type: String, + default: uni.$u.props.code.changeText + }, + // 倒计时结束时的提示 + endText: { + type: String, + default: uni.$u.props.code.endText + }, + // 是否在H5刷新或各端返回再进入时继续倒计时 + keepRunning: { + type: Boolean, + default: uni.$u.props.code.keepRunning + }, + // 为了区分多个页面,或者一个页面多个倒计时组件本地存储的继续倒计时变了 + uniqueKey: { + type: String, + default: uni.$u.props.code.uniqueKey + } + } +} diff --git a/uni_modules/uview-ui/components/u-code/u-code.vue b/uni_modules/uview-ui/components/u-code/u-code.vue new file mode 100644 index 0000000..cdf9f82 --- /dev/null +++ b/uni_modules/uview-ui/components/u-code/u-code.vue @@ -0,0 +1,129 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-col/props.js b/uni_modules/uview-ui/components/u-col/props.js new file mode 100644 index 0000000..0622251 --- /dev/null +++ b/uni_modules/uview-ui/components/u-col/props.js @@ -0,0 +1,29 @@ +export default { + props: { + // 占父容器宽度的多少等分,总分为12份 + span: { + type: [String, Number], + default: uni.$u.props.col.span + }, + // 指定栅格左侧的间隔数(总12栏) + offset: { + type: [String, Number], + default: uni.$u.props.col.offset + }, + // 水平排列方式,可选值为`start`(或`flex-start`)、`end`(或`flex-end`)、`center`、`around`(或`space-around`)、`between`(或`space-between`) + justify: { + type: String, + default: uni.$u.props.col.justify + }, + // 垂直对齐方式,可选值为top、center、bottom、stretch + align: { + type: String, + default: uni.$u.props.col.align + }, + // 文字对齐方式 + textAlign: { + type: String, + default: uni.$u.props.col.textAlign + } + } +} diff --git a/uni_modules/uview-ui/components/u-col/u-col.vue b/uni_modules/uview-ui/components/u-col/u-col.vue new file mode 100644 index 0000000..8be1517 --- /dev/null +++ b/uni_modules/uview-ui/components/u-col/u-col.vue @@ -0,0 +1,162 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-collapse-item/props.js b/uni_modules/uview-ui/components/u-collapse-item/props.js new file mode 100644 index 0000000..bd5749b --- /dev/null +++ b/uni_modules/uview-ui/components/u-collapse-item/props.js @@ -0,0 +1,59 @@ +export default { + props: { + // 标题 + title: { + type: String, + default: uni.$u.props.collapseItem.title + }, + // 标题右侧内容 + value: { + type: String, + default: uni.$u.props.collapseItem.value + }, + // 标题下方的描述信息 + label: { + type: String, + default: uni.$u.props.collapseItem.label + }, + // 是否禁用折叠面板 + disabled: { + type: Boolean, + default: uni.$u.props.collapseItem.disabled + }, + // 是否展示右侧箭头并开启点击反馈 + isLink: { + type: Boolean, + default: uni.$u.props.collapseItem.isLink + }, + // 是否开启点击反馈 + clickable: { + type: Boolean, + default: uni.$u.props.collapseItem.clickable + }, + // 是否显示内边框 + border: { + type: Boolean, + default: uni.$u.props.collapseItem.border + }, + // 标题的对齐方式 + align: { + type: String, + default: uni.$u.props.collapseItem.align + }, + // 唯一标识符 + name: { + type: [String, Number], + default: uni.$u.props.collapseItem.name + }, + // 标题左侧图片,可为绝对路径的图片或内置图标 + icon: { + type: String, + default: uni.$u.props.collapseItem.icon + }, + // 面板展开收起的过渡时间,单位ms + duration: { + type: Number, + default: uni.$u.props.collapseItem.duration + } + } +} diff --git a/uni_modules/uview-ui/components/u-collapse-item/u-collapse-item.vue b/uni_modules/uview-ui/components/u-collapse-item/u-collapse-item.vue new file mode 100644 index 0000000..0e1b703 --- /dev/null +++ b/uni_modules/uview-ui/components/u-collapse-item/u-collapse-item.vue @@ -0,0 +1,225 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-collapse/props.js b/uni_modules/uview-ui/components/u-collapse/props.js new file mode 100644 index 0000000..7ee6d31 --- /dev/null +++ b/uni_modules/uview-ui/components/u-collapse/props.js @@ -0,0 +1,19 @@ +export default { + props: { + // 当前展开面板的name,非手风琴模式:[],手风琴模式:string | number + value: { + type: [String, Number, Array, null], + default: uni.$u.props.collapse.value + }, + // 是否手风琴模式 + accordion: { + type: Boolean, + default: uni.$u.props.collapse.accordion + }, + // 是否显示外边框 + border: { + type: Boolean, + default: uni.$u.props.collapse.border + } + } +} diff --git a/uni_modules/uview-ui/components/u-collapse/u-collapse.vue b/uni_modules/uview-ui/components/u-collapse/u-collapse.vue new file mode 100644 index 0000000..fc188a2 --- /dev/null +++ b/uni_modules/uview-ui/components/u-collapse/u-collapse.vue @@ -0,0 +1,90 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-column-notice/props.js b/uni_modules/uview-ui/components/u-column-notice/props.js new file mode 100644 index 0000000..4809154 --- /dev/null +++ b/uni_modules/uview-ui/components/u-column-notice/props.js @@ -0,0 +1,55 @@ +export default { + props: { + // 显示的内容,字符串 + text: { + type: [Array], + default: uni.$u.props.columnNotice.text + }, + // 是否显示左侧的音量图标 + icon: { + type: String, + default: uni.$u.props.columnNotice.icon + }, + // 通告模式,link-显示右箭头,closable-显示右侧关闭图标 + mode: { + type: String, + default: uni.$u.props.columnNotice.mode + }, + // 文字颜色,各图标也会使用文字颜色 + color: { + type: String, + default: uni.$u.props.columnNotice.color + }, + // 背景颜色 + bgColor: { + type: String, + default: uni.$u.props.columnNotice.bgColor + }, + // 字体大小,单位px + fontSize: { + type: [String, Number], + default: uni.$u.props.columnNotice.fontSize + }, + // 水平滚动时的滚动速度,即每秒滚动多少px(px),这有利于控制文字无论多少时,都能有一个恒定的速度 + speed: { + type: [String, Number], + default: uni.$u.props.columnNotice.speed + }, + // direction = row时,是否使用步进形式滚动 + step: { + type: Boolean, + default: uni.$u.props.columnNotice.step + }, + // 滚动一个周期的时间长,单位ms + duration: { + type: [String, Number], + default: uni.$u.props.columnNotice.duration + }, + // 是否禁止用手滑动切换 + // 目前HX2.6.11,只支持App 2.5.5+、H5 2.5.5+、支付宝小程序、字节跳动小程序 + disableTouch: { + type: Boolean, + default: uni.$u.props.columnNotice.disableTouch + } + } +} diff --git a/uni_modules/uview-ui/components/u-column-notice/u-column-notice.vue b/uni_modules/uview-ui/components/u-column-notice/u-column-notice.vue new file mode 100644 index 0000000..fc39532 --- /dev/null +++ b/uni_modules/uview-ui/components/u-column-notice/u-column-notice.vue @@ -0,0 +1,160 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-count-down/props.js b/uni_modules/uview-ui/components/u-count-down/props.js new file mode 100644 index 0000000..d62f025 --- /dev/null +++ b/uni_modules/uview-ui/components/u-count-down/props.js @@ -0,0 +1,24 @@ +export default { + props: { + // 倒计时时长,单位ms + time: { + type: [String, Number], + default: uni.$u.props.countDown.time + }, + // 时间格式,DD-日,HH-时,mm-分,ss-秒,SSS-毫秒 + format: { + type: String, + default: uni.$u.props.countDown.format + }, + // 是否自动开始倒计时 + autoStart: { + type: Boolean, + default: uni.$u.props.countDown.autoStart + }, + // 是否展示毫秒倒计时 + millisecond: { + type: Boolean, + default: uni.$u.props.countDown.millisecond + } + } +} diff --git a/uni_modules/uview-ui/components/u-count-down/u-count-down.vue b/uni_modules/uview-ui/components/u-count-down/u-count-down.vue new file mode 100644 index 0000000..b5e85a6 --- /dev/null +++ b/uni_modules/uview-ui/components/u-count-down/u-count-down.vue @@ -0,0 +1,163 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-count-down/utils.js b/uni_modules/uview-ui/components/u-count-down/utils.js new file mode 100644 index 0000000..8c75005 --- /dev/null +++ b/uni_modules/uview-ui/components/u-count-down/utils.js @@ -0,0 +1,62 @@ +// 补0,如1 -> 01 +function padZero(num, targetLength = 2) { + let str = `${num}` + while (str.length < targetLength) { + str = `0${str}` + } + return str +} +const SECOND = 1000 +const MINUTE = 60 * SECOND +const HOUR = 60 * MINUTE +const DAY = 24 * HOUR +export function parseTimeData(time) { + const days = Math.floor(time / DAY) + const hours = Math.floor((time % DAY) / HOUR) + const minutes = Math.floor((time % HOUR) / MINUTE) + const seconds = Math.floor((time % MINUTE) / SECOND) + const milliseconds = Math.floor(time % SECOND) + return { + days, + hours, + minutes, + seconds, + milliseconds + } +} +export function parseFormat(format, timeData) { + let { + days, + hours, + minutes, + seconds, + milliseconds + } = timeData + // 如果格式化字符串中不存在DD(天),则将天的时间转为小时中去 + if (format.indexOf('DD') === -1) { + hours += days * 24 + } else { + // 对天补0 + format = format.replace('DD', padZero(days)) + } + // 其他同理于DD的格式化处理方式 + if (format.indexOf('HH') === -1) { + minutes += hours * 60 + } else { + format = format.replace('HH', padZero(hours)) + } + if (format.indexOf('mm') === -1) { + seconds += minutes * 60 + } else { + format = format.replace('mm', padZero(minutes)) + } + if (format.indexOf('ss') === -1) { + milliseconds += seconds * 1000 + } else { + format = format.replace('ss', padZero(seconds)) + } + return format.replace('SSS', padZero(milliseconds, 3)) +} +export function isSameSecond(time1, time2) { + return Math.floor(time1 / 1000) === Math.floor(time2 / 1000) +} diff --git a/uni_modules/uview-ui/components/u-count-to/props.js b/uni_modules/uview-ui/components/u-count-to/props.js new file mode 100644 index 0000000..86873c1 --- /dev/null +++ b/uni_modules/uview-ui/components/u-count-to/props.js @@ -0,0 +1,59 @@ +export default { + props: { + // 开始的数值,默认从0增长到某一个数 + startVal: { + type: [String, Number], + default: uni.$u.props.countTo.startVal + }, + // 要滚动的目标数值,必须 + endVal: { + type: [String, Number], + default: uni.$u.props.countTo.endVal + }, + // 滚动到目标数值的动画持续时间,单位为毫秒(ms) + duration: { + type: [String, Number], + default: uni.$u.props.countTo.duration + }, + // 设置数值后是否自动开始滚动 + autoplay: { + type: Boolean, + default: uni.$u.props.countTo.autoplay + }, + // 要显示的小数位数 + decimals: { + type: [String, Number], + default: uni.$u.props.countTo.decimals + }, + // 是否在即将到达目标数值的时候,使用缓慢滚动的效果 + useEasing: { + type: Boolean, + default: uni.$u.props.countTo.useEasing + }, + // 十进制分割 + decimal: { + type: [String, Number], + default: uni.$u.props.countTo.decimal + }, + // 字体颜色 + color: { + type: String, + default: uni.$u.props.countTo.color + }, + // 字体大小 + fontSize: { + type: [String, Number], + default: uni.$u.props.countTo.fontSize + }, + // 是否加粗字体 + bold: { + type: Boolean, + default: uni.$u.props.countTo.bold + }, + // 千位分隔符,类似金额的分割(¥23,321.05中的",") + separator: { + type: String, + default: uni.$u.props.countTo.separator + } + } +} diff --git a/uni_modules/uview-ui/components/u-count-to/u-count-to.vue b/uni_modules/uview-ui/components/u-count-to/u-count-to.vue new file mode 100644 index 0000000..417b732 --- /dev/null +++ b/uni_modules/uview-ui/components/u-count-to/u-count-to.vue @@ -0,0 +1,184 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-datetime-picker/props.js b/uni_modules/uview-ui/components/u-datetime-picker/props.js new file mode 100644 index 0000000..f44c0f9 --- /dev/null +++ b/uni_modules/uview-ui/components/u-datetime-picker/props.js @@ -0,0 +1,116 @@ +export default { + props: { + // 是否打开组件 + show: { + type: Boolean, + default: uni.$u.props.datetimePicker.show + }, + // 是否展示顶部的操作栏 + showToolbar: { + type: Boolean, + default: uni.$u.props.datetimePicker.showToolbar + }, + // 绑定值 + value: { + type: [String, Number], + default: uni.$u.props.datetimePicker.value + }, + // 顶部标题 + title: { + type: String, + default: uni.$u.props.datetimePicker.title + }, + // 展示格式,mode=date为日期选择,mode=time为时间选择,mode=year-month为年月选择,mode=datetime为日期时间选择 + mode: { + type: String, + default: uni.$u.props.datetimePicker.mode + }, + // 可选的最大时间 + maxDate: { + type: Number, + // 最大默认值为后10年 + default: uni.$u.props.datetimePicker.maxDate + }, + // 可选的最小时间 + minDate: { + type: Number, + // 最小默认值为前10年 + default: uni.$u.props.datetimePicker.minDate + }, + // 可选的最小小时,仅mode=time有效 + minHour: { + type: Number, + default: uni.$u.props.datetimePicker.minHour + }, + // 可选的最大小时,仅mode=time有效 + maxHour: { + type: Number, + default: uni.$u.props.datetimePicker.maxHour + }, + // 可选的最小分钟,仅mode=time有效 + minMinute: { + type: Number, + default: uni.$u.props.datetimePicker.minMinute + }, + // 可选的最大分钟,仅mode=time有效 + maxMinute: { + type: Number, + default: uni.$u.props.datetimePicker.maxMinute + }, + // 选项过滤函数 + filter: { + type: [Function, null], + default: uni.$u.props.datetimePicker.filter + }, + // 选项格式化函数 + formatter: { + type: [Function, null], + default: uni.$u.props.datetimePicker.formatter + }, + // 是否显示加载中状态 + loading: { + type: Boolean, + default: uni.$u.props.datetimePicker.loading + }, + // 各列中,单个选项的高度 + itemHeight: { + type: [String, Number], + default: uni.$u.props.datetimePicker.itemHeight + }, + // 取消按钮的文字 + cancelText: { + type: String, + default: uni.$u.props.datetimePicker.cancelText + }, + // 确认按钮的文字 + confirmText: { + type: String, + default: uni.$u.props.datetimePicker.confirmText + }, + // 取消按钮的颜色 + cancelColor: { + type: String, + default: uni.$u.props.datetimePicker.cancelColor + }, + // 确认按钮的颜色 + confirmColor: { + type: String, + default: uni.$u.props.datetimePicker.confirmColor + }, + // 每列中可见选项的数量 + visibleItemCount: { + type: [String, Number], + default: uni.$u.props.datetimePicker.visibleItemCount + }, + // 是否允许点击遮罩关闭选择器 + closeOnClickOverlay: { + type: Boolean, + default: uni.$u.props.datetimePicker.closeOnClickOverlay + }, + // 各列的默认索引 + defaultIndex: { + type: Array, + default: uni.$u.props.datetimePicker.defaultIndex + } + } +} diff --git a/uni_modules/uview-ui/components/u-datetime-picker/u-datetime-picker.vue b/uni_modules/uview-ui/components/u-datetime-picker/u-datetime-picker.vue new file mode 100644 index 0000000..18d8dcc --- /dev/null +++ b/uni_modules/uview-ui/components/u-datetime-picker/u-datetime-picker.vue @@ -0,0 +1,360 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-divider/props.js b/uni_modules/uview-ui/components/u-divider/props.js new file mode 100644 index 0000000..1fa8359 --- /dev/null +++ b/uni_modules/uview-ui/components/u-divider/props.js @@ -0,0 +1,44 @@ +export default { + props: { + // 是否虚线 + dashed: { + type: Boolean, + default: uni.$u.props.divider.dashed + }, + // 是否细线 + hairline: { + type: Boolean, + default: uni.$u.props.divider.hairline + }, + // 是否以点替代文字,优先于text字段起作用 + dot: { + type: Boolean, + default: uni.$u.props.divider.dot + }, + // 内容文本的位置,left-左边,center-中间,right-右边 + textPosition: { + type: String, + default: uni.$u.props.divider.textPosition + }, + // 文本内容 + text: { + type: [String, Number], + default: uni.$u.props.divider.text + }, + // 文本大小 + textSize: { + type: [String, Number], + default: uni.$u.props.divider.textSize + }, + // 文本颜色 + textColor: { + type: String, + default: uni.$u.props.divider.textColor + }, + // 线条颜色 + lineColor: { + type: String, + default: uni.$u.props.divider.lineColor + } + } +} diff --git a/uni_modules/uview-ui/components/u-divider/u-divider.vue b/uni_modules/uview-ui/components/u-divider/u-divider.vue new file mode 100644 index 0000000..b629da6 --- /dev/null +++ b/uni_modules/uview-ui/components/u-divider/u-divider.vue @@ -0,0 +1,116 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-dropdown-item/props.js b/uni_modules/uview-ui/components/u-dropdown-item/props.js new file mode 100644 index 0000000..501a1f0 --- /dev/null +++ b/uni_modules/uview-ui/components/u-dropdown-item/props.js @@ -0,0 +1,36 @@ +export default { + props: { + // 当前选中项的value值 + value: { + type: [Number, String, Array], + default: '' + }, + // 菜单项标题 + title: { + type: [String, Number], + default: '' + }, + // 选项数据,如果传入了默认slot,此参数无效 + options: { + type: Array, + default() { + return [] + } + }, + // 是否禁用此菜单项 + disabled: { + type: Boolean, + default: false + }, + // 下拉弹窗的高度 + height: { + type: [Number, String], + default: 'auto' + }, + // 点击遮罩是否可以收起弹窗 + closeOnClickOverlay: { + type: Boolean, + default: true + } + } +} diff --git a/uni_modules/uview-ui/components/u-dropdown-item/u-dropdown-item.vue b/uni_modules/uview-ui/components/u-dropdown-item/u-dropdown-item.vue new file mode 100644 index 0000000..07de583 --- /dev/null +++ b/uni_modules/uview-ui/components/u-dropdown-item/u-dropdown-item.vue @@ -0,0 +1,146 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-dropdown/props.js b/uni_modules/uview-ui/components/u-dropdown/props.js new file mode 100644 index 0000000..5f8465e --- /dev/null +++ b/uni_modules/uview-ui/components/u-dropdown/props.js @@ -0,0 +1,65 @@ +export default { + props: { + // 标题选中时的样式 + activeStyle: { + type: [String, Object], + default: () => ({ + color: '#2979ff', + fontSize: '14px' + }) + }, + // 标题未选中时的样式 + inactiveStyle: { + type: [String, Object], + default: () => ({ + color: '#606266', + fontSize: '14px' + }) + }, + // 点击遮罩是否关闭菜单 + closeOnClickMask: { + type: Boolean, + default: true + }, + // 点击当前激活项标题是否关闭菜单 + closeOnClickSelf: { + type: Boolean, + default: true + }, + // 过渡时间 + duration: { + type: [Number, String], + default: 300 + }, + // 标题菜单的高度 + height: { + type: [Number, String], + default: 40 + }, + // 是否显示下边框 + borderBottom: { + type: Boolean, + default: false + }, + // 标题的字体大小 + titleSize: { + type: [Number, String], + default: 14 + }, + // 下拉出来的内容部分的圆角值 + borderRadius: { + type: [Number, String], + default: 0 + }, + // 菜单右侧的icon图标 + menuIcon: { + type: String, + default: 'arrow-down' + }, + // 菜单右侧图标的大小 + menuIconSize: { + type: [Number, String], + default: 14 + } + } +} diff --git a/uni_modules/uview-ui/components/u-dropdown/u-dropdown.vue b/uni_modules/uview-ui/components/u-dropdown/u-dropdown.vue new file mode 100644 index 0000000..9c50bfe --- /dev/null +++ b/uni_modules/uview-ui/components/u-dropdown/u-dropdown.vue @@ -0,0 +1,127 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-empty/props.js b/uni_modules/uview-ui/components/u-empty/props.js new file mode 100644 index 0000000..78662f8 --- /dev/null +++ b/uni_modules/uview-ui/components/u-empty/props.js @@ -0,0 +1,59 @@ +export default { + props: { + // 内置图标名称,或图片路径,建议绝对路径 + icon: { + type: String, + default: uni.$u.props.empty.icon + }, + // 提示文字 + text: { + type: String, + default: uni.$u.props.empty.text + }, + // 文字颜色 + textColor: { + type: String, + default: uni.$u.props.empty.textColor + }, + // 文字大小 + textSize: { + type: [String, Number], + default: uni.$u.props.empty.textSize + }, + // 图标的颜色 + iconColor: { + type: String, + default: uni.$u.props.empty.iconColor + }, + // 图标的大小 + iconSize: { + type: [String, Number], + default: uni.$u.props.empty.iconSize + }, + // 选择预置的图标类型 + mode: { + type: String, + default: uni.$u.props.empty.mode + }, + // 图标宽度,单位px + width: { + type: [String, Number], + default: uni.$u.props.empty.width + }, + // 图标高度,单位px + height: { + type: [String, Number], + default: uni.$u.props.empty.height + }, + // 是否显示组件 + show: { + type: Boolean, + default: uni.$u.props.empty.show + }, + // 组件距离上一个元素之间的距离,默认px单位 + marginTop: { + type: [String, Number], + default: uni.$u.props.empty.marginTop + } + } +} diff --git a/uni_modules/uview-ui/components/u-empty/u-empty.vue b/uni_modules/uview-ui/components/u-empty/u-empty.vue new file mode 100644 index 0000000..03d6a27 --- /dev/null +++ b/uni_modules/uview-ui/components/u-empty/u-empty.vue @@ -0,0 +1,128 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-form-item/props.js b/uni_modules/uview-ui/components/u-form-item/props.js new file mode 100644 index 0000000..53a0191 --- /dev/null +++ b/uni_modules/uview-ui/components/u-form-item/props.js @@ -0,0 +1,43 @@ +export default { + props: { + // input的label提示语 + label: { + type: String, + default: uni.$u.props.formItem.label + }, + // 绑定的值 + prop: { + type: String, + default: uni.$u.props.formItem.prop + }, + // 是否显示表单域的下划线边框 + borderBottom: { + type: [String, Boolean], + default: uni.$u.props.formItem.borderBottom + }, + // label的宽度,单位px + labelWidth: { + type: [String, Number], + default: uni.$u.props.formItem.labelWidth + }, + // 右侧图标 + rightIcon: { + type: String, + default: uni.$u.props.formItem.rightIcon + }, + // 左侧图标 + leftIcon: { + type: String, + default: uni.$u.props.formItem.leftIcon + }, + // 是否显示左边的必填星号,只作显示用,具体校验必填的逻辑,请在rules中配置 + required: { + type: Boolean, + default: uni.$u.props.formItem.required + }, + leftIconStyle: { + type: [String, Object], + default: uni.$u.props.formItem.leftIconStyle, + } + } +} diff --git a/uni_modules/uview-ui/components/u-form-item/u-form-item.vue b/uni_modules/uview-ui/components/u-form-item/u-form-item.vue new file mode 100644 index 0000000..701d7cc --- /dev/null +++ b/uni_modules/uview-ui/components/u-form-item/u-form-item.vue @@ -0,0 +1,235 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-form/props.js b/uni_modules/uview-ui/components/u-form/props.js new file mode 100644 index 0000000..f2a629c --- /dev/null +++ b/uni_modules/uview-ui/components/u-form/props.js @@ -0,0 +1,45 @@ +export default { + props: { + // 当前form的需要验证字段的集合 + model: { + type: Object, + default: uni.$u.props.form.model + }, + // 验证规则 + rules: { + type: [Object, Function, Array], + default: uni.$u.props.form.rules + }, + // 有错误时的提示方式,message-提示信息,toast-进行toast提示 + // border-bottom-下边框呈现红色,none-无提示 + errorType: { + type: String, + default: uni.$u.props.form.errorType + }, + // 是否显示表单域的下划线边框 + borderBottom: { + type: Boolean, + default: uni.$u.props.form.borderBottom + }, + // label的位置,left-左边,top-上边 + labelPosition: { + type: String, + default: uni.$u.props.form.labelPosition + }, + // label的宽度,单位px + labelWidth: { + type: [String, Number], + default: uni.$u.props.form.labelWidth + }, + // lable字体的对齐方式 + labelAlign: { + type: String, + default: uni.$u.props.form.labelAlign + }, + // lable的样式,对象形式 + labelStyle: { + type: Object, + default: uni.$u.props.form.labelStyle + } + } +} diff --git a/uni_modules/uview-ui/components/u-form/u-form.vue b/uni_modules/uview-ui/components/u-form/u-form.vue new file mode 100644 index 0000000..fe2dde2 --- /dev/null +++ b/uni_modules/uview-ui/components/u-form/u-form.vue @@ -0,0 +1,214 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-gap/props.js b/uni_modules/uview-ui/components/u-gap/props.js new file mode 100644 index 0000000..89953e3 --- /dev/null +++ b/uni_modules/uview-ui/components/u-gap/props.js @@ -0,0 +1,24 @@ +export default { + props: { + // 背景颜色(默认transparent) + bgColor: { + type: String, + default: uni.$u.props.gap.bgColor + }, + // 分割槽高度,单位px(默认30) + height: { + type: [String, Number], + default: uni.$u.props.gap.height + }, + // 与上一个组件的距离 + marginTop: { + type: [String, Number], + default: uni.$u.props.gap.marginTop + }, + // 与下一个组件的距离 + marginBottom: { + type: [String, Number], + default: uni.$u.props.gap.marginBottom + } + } +} diff --git a/uni_modules/uview-ui/components/u-gap/u-gap.vue b/uni_modules/uview-ui/components/u-gap/u-gap.vue new file mode 100644 index 0000000..e4429f0 --- /dev/null +++ b/uni_modules/uview-ui/components/u-gap/u-gap.vue @@ -0,0 +1,38 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-grid-item/props.js b/uni_modules/uview-ui/components/u-grid-item/props.js new file mode 100644 index 0000000..06c3c66 --- /dev/null +++ b/uni_modules/uview-ui/components/u-grid-item/props.js @@ -0,0 +1,14 @@ +export default { + props: { + // 宫格的name + name: { + type: [String, Number, null], + default: uni.$u.props.gridItem.name + }, + // 背景颜色 + bgColor: { + type: String, + default: uni.$u.props.gridItem.bgColor + } + } +} diff --git a/uni_modules/uview-ui/components/u-grid-item/u-grid-item.vue b/uni_modules/uview-ui/components/u-grid-item/u-grid-item.vue new file mode 100644 index 0000000..fc0c7cf --- /dev/null +++ b/uni_modules/uview-ui/components/u-grid-item/u-grid-item.vue @@ -0,0 +1,209 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-grid/props.js b/uni_modules/uview-ui/components/u-grid/props.js new file mode 100644 index 0000000..87b0f6a --- /dev/null +++ b/uni_modules/uview-ui/components/u-grid/props.js @@ -0,0 +1,19 @@ +export default { + props: { + // 分成几列 + col: { + type: [String, Number], + default: uni.$u.props.grid.col + }, + // 是否显示边框 + border: { + type: Boolean, + default: uni.$u.props.grid.border + }, + // 宫格对齐方式,表现为数量少的时候,靠左,居中,还是靠右 + align: { + type: String, + default: uni.$u.props.grid.align + } + } +} diff --git a/uni_modules/uview-ui/components/u-grid/u-grid.vue b/uni_modules/uview-ui/components/u-grid/u-grid.vue new file mode 100644 index 0000000..b43cc27 --- /dev/null +++ b/uni_modules/uview-ui/components/u-grid/u-grid.vue @@ -0,0 +1,97 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-icon/icons.js b/uni_modules/uview-ui/components/u-icon/icons.js new file mode 100644 index 0000000..f4d0fe2 --- /dev/null +++ b/uni_modules/uview-ui/components/u-icon/icons.js @@ -0,0 +1,214 @@ +export default { + 'uicon-level': '\ue693', + 'uicon-column-line': '\ue68e', + 'uicon-checkbox-mark': '\ue807', + 'uicon-folder': '\ue7f5', + 'uicon-movie': '\ue7f6', + 'uicon-star-fill': '\ue669', + 'uicon-star': '\ue65f', + 'uicon-phone-fill': '\ue64f', + 'uicon-phone': '\ue622', + 'uicon-apple-fill': '\ue881', + 'uicon-chrome-circle-fill': '\ue885', + 'uicon-backspace': '\ue67b', + 'uicon-attach': '\ue632', + 'uicon-cut': '\ue948', + 'uicon-empty-car': '\ue602', + 'uicon-empty-coupon': '\ue682', + 'uicon-empty-address': '\ue646', + 'uicon-empty-favor': '\ue67c', + 'uicon-empty-permission': '\ue686', + 'uicon-empty-news': '\ue687', + 'uicon-empty-search': '\ue664', + 'uicon-github-circle-fill': '\ue887', + 'uicon-rmb': '\ue608', + 'uicon-person-delete-fill': '\ue66a', + 'uicon-reload': '\ue788', + 'uicon-order': '\ue68f', + 'uicon-server-man': '\ue6bc', + 'uicon-search': '\ue62a', + 'uicon-fingerprint': '\ue955', + 'uicon-more-dot-fill': '\ue630', + 'uicon-scan': '\ue662', + 'uicon-share-square': '\ue60b', + 'uicon-map': '\ue61d', + 'uicon-map-fill': '\ue64e', + 'uicon-tags': '\ue629', + 'uicon-tags-fill': '\ue651', + 'uicon-bookmark-fill': '\ue63b', + 'uicon-bookmark': '\ue60a', + 'uicon-eye': '\ue613', + 'uicon-eye-fill': '\ue641', + 'uicon-mic': '\ue64a', + 'uicon-mic-off': '\ue649', + 'uicon-calendar': '\ue66e', + 'uicon-calendar-fill': '\ue634', + 'uicon-trash': '\ue623', + 'uicon-trash-fill': '\ue658', + 'uicon-play-left': '\ue66d', + 'uicon-play-right': '\ue610', + 'uicon-minus': '\ue618', + 'uicon-plus': '\ue62d', + 'uicon-info': '\ue653', + 'uicon-info-circle': '\ue7d2', + 'uicon-info-circle-fill': '\ue64b', + 'uicon-question': '\ue715', + 'uicon-error': '\ue6d3', + 'uicon-close': '\ue685', + 'uicon-checkmark': '\ue6a8', + 'uicon-android-circle-fill': '\ue67e', + 'uicon-android-fill': '\ue67d', + 'uicon-ie': '\ue87b', + 'uicon-IE-circle-fill': '\ue889', + 'uicon-google': '\ue87a', + 'uicon-google-circle-fill': '\ue88a', + 'uicon-setting-fill': '\ue872', + 'uicon-setting': '\ue61f', + 'uicon-minus-square-fill': '\ue855', + 'uicon-plus-square-fill': '\ue856', + 'uicon-heart': '\ue7df', + 'uicon-heart-fill': '\ue851', + 'uicon-camera': '\ue7d7', + 'uicon-camera-fill': '\ue870', + 'uicon-more-circle': '\ue63e', + 'uicon-more-circle-fill': '\ue645', + 'uicon-chat': '\ue620', + 'uicon-chat-fill': '\ue61e', + 'uicon-bag-fill': '\ue617', + 'uicon-bag': '\ue619', + 'uicon-error-circle-fill': '\ue62c', + 'uicon-error-circle': '\ue624', + 'uicon-close-circle': '\ue63f', + 'uicon-close-circle-fill': '\ue637', + 'uicon-checkmark-circle': '\ue63d', + 'uicon-checkmark-circle-fill': '\ue635', + 'uicon-question-circle-fill': '\ue666', + 'uicon-question-circle': '\ue625', + 'uicon-share': '\ue631', + 'uicon-share-fill': '\ue65e', + 'uicon-shopping-cart': '\ue621', + 'uicon-shopping-cart-fill': '\ue65d', + 'uicon-bell': '\ue609', + 'uicon-bell-fill': '\ue640', + 'uicon-list': '\ue650', + 'uicon-list-dot': '\ue616', + 'uicon-zhihu': '\ue6ba', + 'uicon-zhihu-circle-fill': '\ue709', + 'uicon-zhifubao': '\ue6b9', + 'uicon-zhifubao-circle-fill': '\ue6b8', + 'uicon-weixin-circle-fill': '\ue6b1', + 'uicon-weixin-fill': '\ue6b2', + 'uicon-twitter-circle-fill': '\ue6ab', + 'uicon-twitter': '\ue6aa', + 'uicon-taobao-circle-fill': '\ue6a7', + 'uicon-taobao': '\ue6a6', + 'uicon-weibo-circle-fill': '\ue6a5', + 'uicon-weibo': '\ue6a4', + 'uicon-qq-fill': '\ue6a1', + 'uicon-qq-circle-fill': '\ue6a0', + 'uicon-moments-circel-fill': '\ue69a', + 'uicon-moments': '\ue69b', + 'uicon-qzone': '\ue695', + 'uicon-qzone-circle-fill': '\ue696', + 'uicon-baidu-circle-fill': '\ue680', + 'uicon-baidu': '\ue681', + 'uicon-facebook-circle-fill': '\ue68a', + 'uicon-facebook': '\ue689', + 'uicon-car': '\ue60c', + 'uicon-car-fill': '\ue636', + 'uicon-warning-fill': '\ue64d', + 'uicon-warning': '\ue694', + 'uicon-clock-fill': '\ue638', + 'uicon-clock': '\ue60f', + 'uicon-edit-pen': '\ue612', + 'uicon-edit-pen-fill': '\ue66b', + 'uicon-email': '\ue611', + 'uicon-email-fill': '\ue642', + 'uicon-minus-circle': '\ue61b', + 'uicon-minus-circle-fill': '\ue652', + 'uicon-plus-circle': '\ue62e', + 'uicon-plus-circle-fill': '\ue661', + 'uicon-file-text': '\ue663', + 'uicon-file-text-fill': '\ue665', + 'uicon-pushpin': '\ue7e3', + 'uicon-pushpin-fill': '\ue86e', + 'uicon-grid': '\ue673', + 'uicon-grid-fill': '\ue678', + 'uicon-play-circle': '\ue647', + 'uicon-play-circle-fill': '\ue655', + 'uicon-pause-circle-fill': '\ue654', + 'uicon-pause': '\ue8fa', + 'uicon-pause-circle': '\ue643', + 'uicon-eye-off': '\ue648', + 'uicon-eye-off-outline': '\ue62b', + 'uicon-gift-fill': '\ue65c', + 'uicon-gift': '\ue65b', + 'uicon-rmb-circle-fill': '\ue657', + 'uicon-rmb-circle': '\ue677', + 'uicon-kefu-ermai': '\ue656', + 'uicon-server-fill': '\ue751', + 'uicon-coupon-fill': '\ue8c4', + 'uicon-coupon': '\ue8ae', + 'uicon-integral': '\ue704', + 'uicon-integral-fill': '\ue703', + 'uicon-home-fill': '\ue964', + 'uicon-home': '\ue965', + 'uicon-hourglass-half-fill': '\ue966', + 'uicon-hourglass': '\ue967', + 'uicon-account': '\ue628', + 'uicon-plus-people-fill': '\ue626', + 'uicon-minus-people-fill': '\ue615', + 'uicon-account-fill': '\ue614', + 'uicon-thumb-down-fill': '\ue726', + 'uicon-thumb-down': '\ue727', + 'uicon-thumb-up': '\ue733', + 'uicon-thumb-up-fill': '\ue72f', + 'uicon-lock-fill': '\ue979', + 'uicon-lock-open': '\ue973', + 'uicon-lock-opened-fill': '\ue974', + 'uicon-lock': '\ue97a', + 'uicon-red-packet-fill': '\ue690', + 'uicon-photo-fill': '\ue98b', + 'uicon-photo': '\ue98d', + 'uicon-volume-off-fill': '\ue659', + 'uicon-volume-off': '\ue644', + 'uicon-volume-fill': '\ue670', + 'uicon-volume': '\ue633', + 'uicon-red-packet': '\ue691', + 'uicon-download': '\ue63c', + 'uicon-arrow-up-fill': '\ue6b0', + 'uicon-arrow-down-fill': '\ue600', + 'uicon-play-left-fill': '\ue675', + 'uicon-play-right-fill': '\ue676', + 'uicon-rewind-left-fill': '\ue679', + 'uicon-rewind-right-fill': '\ue67a', + 'uicon-arrow-downward': '\ue604', + 'uicon-arrow-leftward': '\ue601', + 'uicon-arrow-rightward': '\ue603', + 'uicon-arrow-upward': '\ue607', + 'uicon-arrow-down': '\ue60d', + 'uicon-arrow-right': '\ue605', + 'uicon-arrow-left': '\ue60e', + 'uicon-arrow-up': '\ue606', + 'uicon-skip-back-left': '\ue674', + 'uicon-skip-forward-right': '\ue672', + 'uicon-rewind-right': '\ue66f', + 'uicon-rewind-left': '\ue671', + 'uicon-arrow-right-double': '\ue68d', + 'uicon-arrow-left-double': '\ue68c', + 'uicon-wifi-off': '\ue668', + 'uicon-wifi': '\ue667', + 'uicon-empty-data': '\ue62f', + 'uicon-empty-history': '\ue684', + 'uicon-empty-list': '\ue68b', + 'uicon-empty-page': '\ue627', + 'uicon-empty-order': '\ue639', + 'uicon-man': '\ue697', + 'uicon-woman': '\ue69c', + 'uicon-man-add': '\ue61c', + 'uicon-man-add-fill': '\ue64c', + 'uicon-man-delete': '\ue61a', + 'uicon-man-delete-fill': '\ue66a', + 'uicon-zh': '\ue70a', + 'uicon-en': '\ue692' +} diff --git a/uni_modules/uview-ui/components/u-icon/props.js b/uni_modules/uview-ui/components/u-icon/props.js new file mode 100644 index 0000000..71845b7 --- /dev/null +++ b/uni_modules/uview-ui/components/u-icon/props.js @@ -0,0 +1,89 @@ +export default { + props: { + // 图标类名 + name: { + type: String, + default: uni.$u.props.icon.name + }, + // 图标颜色,可接受主题色 + color: { + type: String, + default: uni.$u.props.icon.color + }, + // 字体大小,单位px + size: { + type: [String, Number], + default: uni.$u.props.icon.size + }, + // 是否显示粗体 + bold: { + type: Boolean, + default: uni.$u.props.icon.bold + }, + // 点击图标的时候传递事件出去的index(用于区分点击了哪一个) + index: { + type: [String, Number], + default: uni.$u.props.icon.index + }, + // 触摸图标时的类名 + hoverClass: { + type: String, + default: uni.$u.props.icon.hoverClass + }, + // 自定义扩展前缀,方便用户扩展自己的图标库 + customPrefix: { + type: String, + default: uni.$u.props.icon.customPrefix + }, + // 图标右边或者下面的文字 + label: { + type: [String, Number], + default: uni.$u.props.icon.label + }, + // label的位置,只能右边或者下边 + labelPos: { + type: String, + default: uni.$u.props.icon.labelPos + }, + // label的大小 + labelSize: { + type: [String, Number], + default: uni.$u.props.icon.labelSize + }, + // label的颜色 + labelColor: { + type: String, + default: uni.$u.props.icon.labelColor + }, + // label与图标的距离 + space: { + type: [String, Number], + default: uni.$u.props.icon.space + }, + // 图片的mode + imgMode: { + type: String, + default: uni.$u.props.icon.imgMode + }, + // 用于显示图片小图标时,图片的宽度 + width: { + type: [String, Number], + default: uni.$u.props.icon.width + }, + // 用于显示图片小图标时,图片的高度 + height: { + type: [String, Number], + default: uni.$u.props.icon.height + }, + // 用于解决某些情况下,让图标垂直居中的用途 + top: { + type: [String, Number], + default: uni.$u.props.icon.top + }, + // 是否阻止事件传播 + stop: { + type: Boolean, + default: uni.$u.props.icon.stop + } + } +} diff --git a/uni_modules/uview-ui/components/u-icon/u-icon.vue b/uni_modules/uview-ui/components/u-icon/u-icon.vue new file mode 100644 index 0000000..9340328 --- /dev/null +++ b/uni_modules/uview-ui/components/u-icon/u-icon.vue @@ -0,0 +1,234 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-image/props.js b/uni_modules/uview-ui/components/u-image/props.js new file mode 100644 index 0000000..2eabb74 --- /dev/null +++ b/uni_modules/uview-ui/components/u-image/props.js @@ -0,0 +1,84 @@ +export default { + props: { + // 图片地址 + src: { + type: String, + default: uni.$u.props.image.src + }, + // 裁剪模式 + mode: { + type: String, + default: uni.$u.props.image.mode + }, + // 宽度,单位任意 + width: { + type: [String, Number], + default: uni.$u.props.image.width + }, + // 高度,单位任意 + height: { + type: [String, Number], + default: uni.$u.props.image.height + }, + // 图片形状,circle-圆形,square-方形 + shape: { + type: String, + default: uni.$u.props.image.shape + }, + // 圆角,单位任意 + radius: { + type: [String, Number], + default: uni.$u.props.image.radius + }, + // 是否懒加载,微信小程序、App、百度小程序、字节跳动小程序 + lazyLoad: { + type: Boolean, + default: uni.$u.props.image.lazyLoad + }, + // 开启长按图片显示识别微信小程序码菜单 + showMenuByLongpress: { + type: Boolean, + default: uni.$u.props.image.showMenuByLongpress + }, + // 加载中的图标,或者小图片 + loadingIcon: { + type: String, + default: uni.$u.props.image.loadingIcon + }, + // 加载失败的图标,或者小图片 + errorIcon: { + type: String, + default: uni.$u.props.image.errorIcon + }, + // 是否显示加载中的图标或者自定义的slot + showLoading: { + type: Boolean, + default: uni.$u.props.image.showLoading + }, + // 是否显示加载错误的图标或者自定义的slot + showError: { + type: Boolean, + default: uni.$u.props.image.showError + }, + // 是否需要淡入效果 + fade: { + type: Boolean, + default: uni.$u.props.image.fade + }, + // 只支持网络资源,只对微信小程序有效 + webp: { + type: Boolean, + default: uni.$u.props.image.webp + }, + // 过渡时间,单位ms + duration: { + type: [String, Number], + default: uni.$u.props.image.duration + }, + // 背景颜色,用于深色页面加载图片时,为了和背景色融合 + bgColor: { + type: String, + default: uni.$u.props.image.bgColor + } + } +} diff --git a/uni_modules/uview-ui/components/u-image/u-image.vue b/uni_modules/uview-ui/components/u-image/u-image.vue new file mode 100644 index 0000000..473e35b --- /dev/null +++ b/uni_modules/uview-ui/components/u-image/u-image.vue @@ -0,0 +1,232 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-index-anchor/props.js b/uni_modules/uview-ui/components/u-index-anchor/props.js new file mode 100644 index 0000000..6d8b59a --- /dev/null +++ b/uni_modules/uview-ui/components/u-index-anchor/props.js @@ -0,0 +1,29 @@ +export default { + props: { + // 列表锚点文本内容 + text: { + type: [String, Number], + default: uni.$u.props.indexAnchor.text + }, + // 列表锚点文字颜色 + color: { + type: String, + default: uni.$u.props.indexAnchor.color + }, + // 列表锚点文字大小,单位默认px + size: { + type: [String, Number], + default: uni.$u.props.indexAnchor.size + }, + // 列表锚点背景颜色 + bgColor: { + type: String, + default: uni.$u.props.indexAnchor.bgColor + }, + // 列表锚点高度,单位默认px + height: { + type: [String, Number], + default: uni.$u.props.indexAnchor.height + } + } +} diff --git a/uni_modules/uview-ui/components/u-index-anchor/u-index-anchor.vue b/uni_modules/uview-ui/components/u-index-anchor/u-index-anchor.vue new file mode 100644 index 0000000..b95ddef --- /dev/null +++ b/uni_modules/uview-ui/components/u-index-anchor/u-index-anchor.vue @@ -0,0 +1,91 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-index-item/props.js b/uni_modules/uview-ui/components/u-index-item/props.js new file mode 100644 index 0000000..7c11331 --- /dev/null +++ b/uni_modules/uview-ui/components/u-index-item/props.js @@ -0,0 +1,5 @@ +export default { + props: { + + } +} diff --git a/uni_modules/uview-ui/components/u-index-item/u-index-item.vue b/uni_modules/uview-ui/components/u-index-item/u-index-item.vue new file mode 100644 index 0000000..0bc7fb3 --- /dev/null +++ b/uni_modules/uview-ui/components/u-index-item/u-index-item.vue @@ -0,0 +1,87 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-index-list/props.js b/uni_modules/uview-ui/components/u-index-list/props.js new file mode 100644 index 0000000..354d459 --- /dev/null +++ b/uni_modules/uview-ui/components/u-index-list/props.js @@ -0,0 +1,29 @@ +export default { + props: { + // 右边锚点非激活的颜色 + inactiveColor: { + type: String, + default: uni.$u.props.indexList.inactiveColor + }, + // 右边锚点激活的颜色 + activeColor: { + type: String, + default: uni.$u.props.indexList.activeColor + }, + // 索引字符列表,数组形式 + indexList: { + type: Array, + default: uni.$u.props.indexList.indexList + }, + // 是否开启锚点自动吸顶 + sticky: { + type: Boolean, + default: uni.$u.props.indexList.sticky + }, + // 自定义导航栏的高度 + customNavHeight: { + type: [String, Number], + default: uni.$u.props.indexList.customNavHeight + } + } +} diff --git a/uni_modules/uview-ui/components/u-index-list/u-index-list.vue b/uni_modules/uview-ui/components/u-index-list/u-index-list.vue new file mode 100644 index 0000000..d712618 --- /dev/null +++ b/uni_modules/uview-ui/components/u-index-list/u-index-list.vue @@ -0,0 +1,440 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-input/props.js b/uni_modules/uview-ui/components/u-input/props.js new file mode 100644 index 0000000..88917c3 --- /dev/null +++ b/uni_modules/uview-ui/components/u-input/props.js @@ -0,0 +1,182 @@ +export default { + props: { + // 输入的值 + value: { + type: [String, Number], + default: uni.$u.props.input.value + }, + // 输入框类型 + // number-数字输入键盘,app-vue下可以输入浮点数,app-nvue和小程序平台下只能输入整数 + // idcard-身份证输入键盘,微信、支付宝、百度、QQ小程序 + // digit-带小数点的数字键盘,App的nvue页面、微信、支付宝、百度、头条、QQ小程序 + // text-文本输入键盘 + type: { + type: String, + default: uni.$u.props.input.type + }, + // 如果 textarea 是在一个 position:fixed 的区域,需要显示指定属性 fixed 为 true, + // 兼容性:微信小程序、百度小程序、字节跳动小程序、QQ小程序 + fixed: { + type: Boolean, + default: uni.$u.props.input.fixed + }, + // 是否禁用输入框 + disabled: { + type: Boolean, + default: uni.$u.props.input.disabled + }, + // 禁用状态时的背景色 + disabledColor: { + type: String, + default: uni.$u.props.input.disabledColor + }, + // 是否显示清除控件 + clearable: { + type: Boolean, + default: uni.$u.props.input.clearable + }, + // 是否密码类型 + password: { + type: Boolean, + default: uni.$u.props.input.password + }, + // 最大输入长度,设置为 -1 的时候不限制最大长度 + maxlength: { + type: [String, Number], + default: uni.$u.props.input.maxlength + }, + // 输入框为空时的占位符 + placeholder: { + type: String, + default: uni.$u.props.input.placeholder + }, + // 指定placeholder的样式类,注意页面或组件的style中写了scoped时,需要在类名前写/deep/ + placeholderClass: { + type: String, + default: uni.$u.props.input.placeholderClass + }, + // 指定placeholder的样式 + placeholderStyle: { + type: [String, Object], + default: uni.$u.props.input.placeholderStyle + }, + // 是否显示输入字数统计,只在 type ="text"或type ="textarea"时有效 + showWordLimit: { + type: Boolean, + default: uni.$u.props.input.showWordLimit + }, + // 设置右下角按钮的文字,有效值:send|search|next|go|done,兼容性详见uni-app文档 + // https://uniapp.dcloud.io/component/input + // https://uniapp.dcloud.io/component/textarea + confirmType: { + type: String, + default: uni.$u.props.input.confirmType + }, + // 点击键盘右下角按钮时是否保持键盘不收起,H5无效 + confirmHold: { + type: Boolean, + default: uni.$u.props.input.confirmHold + }, + // focus时,点击页面的时候不收起键盘,微信小程序有效 + holdKeyboard: { + type: Boolean, + default: uni.$u.props.input.holdKeyboard + }, + // 自动获取焦点 + // 在 H5 平台能否聚焦以及软键盘是否跟随弹出,取决于当前浏览器本身的实现。nvue 页面不支持,需使用组件的 focus()、blur() 方法控制焦点 + focus: { + type: Boolean, + default: uni.$u.props.input.focus + }, + // 键盘收起时,是否自动失去焦点,目前仅App3.0.0+有效 + autoBlur: { + type: Boolean, + default: uni.$u.props.input.autoBlur + }, + // 是否去掉 iOS 下的默认内边距,仅微信小程序,且type=textarea时有效 + disableDefaultPadding: { + type: Boolean, + default: uni.$u.props.input.disableDefaultPadding + }, + // 指定focus时光标的位置 + cursor: { + type: [String, Number], + default: uni.$u.props.input.cursor + }, + // 输入框聚焦时底部与键盘的距离 + cursorSpacing: { + type: [String, Number], + default: uni.$u.props.input.cursorSpacing + }, + // 光标起始位置,自动聚集时有效,需与selection-end搭配使用 + selectionStart: { + type: [String, Number], + default: uni.$u.props.input.selectionStart + }, + // 光标结束位置,自动聚集时有效,需与selection-start搭配使用 + selectionEnd: { + type: [String, Number], + default: uni.$u.props.input.selectionEnd + }, + // 键盘弹起时,是否自动上推页面 + adjustPosition: { + type: Boolean, + default: uni.$u.props.input.adjustPosition + }, + // 输入框内容对齐方式,可选值为:left|center|right + inputAlign: { + type: String, + default: uni.$u.props.input.inputAlign + }, + // 输入框字体的大小 + fontSize: { + type: [String, Number], + default: uni.$u.props.input.fontSize + }, + // 输入框字体颜色 + color: { + type: String, + default: uni.$u.props.input.color + }, + // 输入框前置图标 + prefixIcon: { + type: String, + default: uni.$u.props.input.prefixIcon + }, + // 前置图标样式,对象或字符串 + prefixIconStyle: { + type: [String, Object], + default: uni.$u.props.input.prefixIconStyle + }, + // 输入框后置图标 + suffixIcon: { + type: String, + default: uni.$u.props.input.suffixIcon + }, + // 后置图标样式,对象或字符串 + suffixIconStyle: { + type: [String, Object], + default: uni.$u.props.input.suffixIconStyle + }, + // 边框类型,surround-四周边框,bottom-底部边框,none-无边框 + border: { + type: String, + default: uni.$u.props.input.border + }, + // 是否只读,与disabled不同之处在于disabled会置灰组件,而readonly则不会 + readonly: { + type: Boolean, + default: uni.$u.props.input.readonly + }, + // 输入框形状,circle-圆形,square-方形 + shape: { + type: String, + default: uni.$u.props.input.shape + }, + // 用于处理或者过滤输入框内容的方法 + formatter: { + type: [Function, null], + default: uni.$u.props.input.formatter + } + } +} diff --git a/uni_modules/uview-ui/components/u-input/u-input.vue b/uni_modules/uview-ui/components/u-input/u-input.vue new file mode 100644 index 0000000..c755390 --- /dev/null +++ b/uni_modules/uview-ui/components/u-input/u-input.vue @@ -0,0 +1,353 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-keyboard/props.js b/uni_modules/uview-ui/components/u-keyboard/props.js new file mode 100644 index 0000000..cfdb00a --- /dev/null +++ b/uni_modules/uview-ui/components/u-keyboard/props.js @@ -0,0 +1,84 @@ +export default { + props: { + // 键盘的类型,number-数字键盘,card-身份证键盘,car-车牌号键盘 + mode: { + type: String, + default: uni.$u.props.keyboard.mode + }, + // 是否显示键盘的"."符号 + dotDisabled: { + type: Boolean, + default: uni.$u.props.keyboard.dotDisabled + }, + // 是否显示顶部工具条 + tooltip: { + type: Boolean, + default: uni.$u.props.keyboard.tooltip + }, + // 是否显示工具条中间的提示 + showTips: { + type: Boolean, + default: uni.$u.props.keyboard.showTips + }, + // 工具条中间的提示文字 + tips: { + type: String, + default: uni.$u.props.keyboard.tips + }, + // 是否显示工具条左边的"取消"按钮 + showCancel: { + type: Boolean, + default: uni.$u.props.keyboard.showCancel + }, + // 是否显示工具条右边的"完成"按钮 + showConfirm: { + type: Boolean, + default: uni.$u.props.keyboard.showConfirm + }, + // 是否打乱键盘按键的顺序 + random: { + type: Boolean, + default: uni.$u.props.keyboard.random + }, + // 是否开启底部安全区适配,开启的话,会在iPhoneX机型底部添加一定的内边距 + safeAreaInsetBottom: { + type: Boolean, + default: uni.$u.props.keyboard.safeAreaInsetBottom + }, + // 是否允许通过点击遮罩关闭键盘 + closeOnClickOverlay: { + type: Boolean, + default: uni.$u.props.keyboard.closeOnClickOverlay + }, + // 控制键盘的弹出与收起 + show: { + type: Boolean, + default: uni.$u.props.keyboard.show + }, + // 是否显示遮罩,某些时候数字键盘时,用户希望看到自己的数值,所以可能不想要遮罩 + overlay: { + type: Boolean, + default: uni.$u.props.keyboard.overlay + }, + // z-index值 + zIndex: { + type: [String, Number], + default: uni.$u.props.keyboard.zIndex + }, + // 取消按钮的文字 + cancelText: { + type: String, + default: uni.$u.props.keyboard.cancelText + }, + // 确认按钮的文字 + confirmText: { + type: String, + default: uni.$u.props.keyboard.confirmText + }, + // 输入一个中文后,是否自动切换到英文 + autoChange: { + type: Boolean, + default: uni.$u.props.keyboard.autoChange + } + } +} diff --git a/uni_modules/uview-ui/components/u-keyboard/u-keyboard.vue b/uni_modules/uview-ui/components/u-keyboard/u-keyboard.vue new file mode 100644 index 0000000..14228cb --- /dev/null +++ b/uni_modules/uview-ui/components/u-keyboard/u-keyboard.vue @@ -0,0 +1,164 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-line-progress/props.js b/uni_modules/uview-ui/components/u-line-progress/props.js new file mode 100644 index 0000000..a4210bd --- /dev/null +++ b/uni_modules/uview-ui/components/u-line-progress/props.js @@ -0,0 +1,28 @@ +export default { + props: { + // 激活部分的颜色 + activeColor: { + type: String, + default: uni.$u.props.lineProgress.activeColor + }, + inactiveColor: { + type: String, + default: uni.$u.props.lineProgress.color + }, + // 进度百分比,数值 + percentage: { + type: [String, Number], + default: uni.$u.props.lineProgress.inactiveColor + }, + // 是否在进度条内部显示百分比的值 + showText: { + type: Boolean, + default: uni.$u.props.lineProgress.showText + }, + // 进度条的高度,单位px + height: { + type: [String, Number], + default: uni.$u.props.lineProgress.height + } + } +} diff --git a/uni_modules/uview-ui/components/u-line-progress/u-line-progress.vue b/uni_modules/uview-ui/components/u-line-progress/u-line-progress.vue new file mode 100644 index 0000000..4e27931 --- /dev/null +++ b/uni_modules/uview-ui/components/u-line-progress/u-line-progress.vue @@ -0,0 +1,144 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-line/props.js b/uni_modules/uview-ui/components/u-line/props.js new file mode 100644 index 0000000..2308cc3 --- /dev/null +++ b/uni_modules/uview-ui/components/u-line/props.js @@ -0,0 +1,33 @@ +export default { + props: { + color: { + type: String, + default: uni.$u.props.line.color + }, + // 长度,竖向时表现为高度,横向时表现为长度,可以为百分比,带px单位的值等 + length: { + type: [String, Number], + default: uni.$u.props.line.length + }, + // 线条方向,col-竖向,row-横向 + direction: { + type: String, + default: uni.$u.props.line.direction + }, + // 是否显示细边框 + hairline: { + type: Boolean, + default: uni.$u.props.line.hairline + }, + // 线条与上下左右元素的间距,字符串形式,如"30px"、"20px 30px" + margin: { + type: [String, Number], + default: uni.$u.props.line.margin + }, + // 是否虚线,true-虚线,false-实线 + dashed: { + type: Boolean, + default: uni.$u.props.line.dashed + } + } +} diff --git a/uni_modules/uview-ui/components/u-line/u-line.vue b/uni_modules/uview-ui/components/u-line/u-line.vue new file mode 100644 index 0000000..e0a6d92 --- /dev/null +++ b/uni_modules/uview-ui/components/u-line/u-line.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-link/props.js b/uni_modules/uview-ui/components/u-link/props.js new file mode 100644 index 0000000..d39353f --- /dev/null +++ b/uni_modules/uview-ui/components/u-link/props.js @@ -0,0 +1,39 @@ +export default { + props: { + // 文字颜色 + color: { + type: String, + default: uni.$u.props.link.color + }, + // 字体大小,单位px + fontSize: { + type: [String, Number], + default: uni.$u.props.link.fontSize + }, + // 是否显示下划线 + underLine: { + type: Boolean, + default: uni.$u.props.link.underLine + }, + // 要跳转的链接 + href: { + type: String, + default: uni.$u.props.link.href + }, + // 小程序中复制到粘贴板的提示语 + mpTips: { + type: String, + default: uni.$u.props.link.mpTips + }, + // 下划线颜色 + lineColor: { + type: String, + default: uni.$u.props.link.lineColor + }, + // 超链接的问题,不使用slot形式传入,是因为nvue下无法修改颜色 + text: { + type: String, + default: uni.$u.props.link.text + } + } +} diff --git a/uni_modules/uview-ui/components/u-link/u-link.vue b/uni_modules/uview-ui/components/u-link/u-link.vue new file mode 100644 index 0000000..c6802a5 --- /dev/null +++ b/uni_modules/uview-ui/components/u-link/u-link.vue @@ -0,0 +1,83 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-list-item/props.js b/uni_modules/uview-ui/components/u-list-item/props.js new file mode 100644 index 0000000..58ddc49 --- /dev/null +++ b/uni_modules/uview-ui/components/u-list-item/props.js @@ -0,0 +1,9 @@ +export default { + props: { + // 用于滚动到指定item + anchor: { + type: [String, Number], + default: uni.$u.props.listItem.anchor + } + } +} diff --git a/uni_modules/uview-ui/components/u-list-item/u-list-item.vue b/uni_modules/uview-ui/components/u-list-item/u-list-item.vue new file mode 100644 index 0000000..1a25db6 --- /dev/null +++ b/uni_modules/uview-ui/components/u-list-item/u-list-item.vue @@ -0,0 +1,116 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-list/props.js b/uni_modules/uview-ui/components/u-list/props.js new file mode 100644 index 0000000..25406f4 --- /dev/null +++ b/uni_modules/uview-ui/components/u-list/props.js @@ -0,0 +1,76 @@ +export default { + props: { + // 控制是否出现滚动条,仅nvue有效 + showScrollbar: { + type: Boolean, + default: uni.$u.props.list.showScrollbar + }, + // 距底部多少时触发scrolltolower事件 + lowerThreshold: { + type: [String, Number], + default: uni.$u.props.list.lowerThreshold + }, + // 距顶部多少时触发scrolltoupper事件,非nvue有效 + upperThreshold: { + type: [String, Number], + default: uni.$u.props.list.upperThreshold + }, + // 设置竖向滚动条位置 + scrollTop: { + type: [String, Number], + default: uni.$u.props.list.scrollTop + }, + // 控制 onscroll 事件触发的频率,仅nvue有效 + offsetAccuracy: { + type: [String, Number], + default: uni.$u.props.list.offsetAccuracy + }, + // 启用 flexbox 布局。开启后,当前节点声明了display: flex就会成为flex container,并作用于其孩子节点,仅微信小程序有效 + enableFlex: { + type: Boolean, + default: uni.$u.props.list.enableFlex + }, + // 是否按分页模式显示List,默认值false + pagingEnabled: { + type: Boolean, + default: uni.$u.props.list.pagingEnabled + }, + // 是否允许List滚动 + scrollable: { + type: Boolean, + default: uni.$u.props.list.scrollable + }, + // 值应为某子元素id(id不能以数字开头) + scrollIntoView: { + type: String, + default: uni.$u.props.list.scrollIntoView + }, + // 在设置滚动条位置时使用动画过渡 + scrollWithAnimation: { + type: Boolean, + default: uni.$u.props.list.scrollWithAnimation + }, + // iOS点击顶部状态栏、安卓双击标题栏时,滚动条返回顶部,只对微信小程序有效 + enableBackToTop: { + type: Boolean, + default: uni.$u.props.list.enableBackToTop + }, + // 列表的高度 + height: { + type: [String, Number], + default: uni.$u.props.list.height + }, + // 列表宽度 + width: { + type: [String, Number], + default: uni.$u.props.list.width + }, + // 列表前后预渲染的屏数,1代表一个屏幕的高度,1.5代表1个半屏幕高度 + preLoadScreen: { + type: [String, Number], + default: uni.$u.props.list.preLoadScreen + } + // vue下,是否开启虚拟列表 + + } +} diff --git a/uni_modules/uview-ui/components/u-list/u-list.vue b/uni_modules/uview-ui/components/u-list/u-list.vue new file mode 100644 index 0000000..4447cab --- /dev/null +++ b/uni_modules/uview-ui/components/u-list/u-list.vue @@ -0,0 +1,157 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-loading-icon/props.js b/uni_modules/uview-ui/components/u-loading-icon/props.js new file mode 100644 index 0000000..c35524e --- /dev/null +++ b/uni_modules/uview-ui/components/u-loading-icon/props.js @@ -0,0 +1,59 @@ +export default { + props: { + // 是否显示组件 + show: { + type: Boolean, + default: uni.$u.props.loadingIcon.show + }, + // 颜色 + color: { + type: String, + default: uni.$u.props.loadingIcon.color + }, + // 提示文字颜色 + textColor: { + type: String, + default: uni.$u.props.loadingIcon.textColor + }, + // 文字和图标是否垂直排列 + vertical: { + type: Boolean, + default: uni.$u.props.loadingIcon.vertical + }, + // 模式选择,circle-圆形,spinner-花朵形,semicircle-半圆形 + mode: { + type: String, + default: uni.$u.props.loadingIcon.mode + }, + // 图标大小,单位默认px + size: { + type: [String, Number], + default: uni.$u.props.loadingIcon.size + }, + // 文字大小 + textSize: { + type: [String, Number], + default: uni.$u.props.loadingIcon.textSize + }, + // 文字内容 + text: { + type: [String, Number], + default: uni.$u.props.loadingIcon.text + }, + // 动画模式 + timingFunction: { + type: String, + default: uni.$u.props.loadingIcon.timingFunction + }, + // 动画执行周期时间 + duration: { + type: [String, Number], + default: uni.$u.props.loadingIcon.duration + }, + // mode=circle时的暗边颜色 + inactiveColor: { + type: String, + default: uni.$u.props.loadingIcon.inactiveColor + } + } +} diff --git a/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon.vue b/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon.vue new file mode 100644 index 0000000..2ede5c3 --- /dev/null +++ b/uni_modules/uview-ui/components/u-loading-icon/u-loading-icon.vue @@ -0,0 +1,343 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-loading-page/props.js b/uni_modules/uview-ui/components/u-loading-page/props.js new file mode 100644 index 0000000..e239b61 --- /dev/null +++ b/uni_modules/uview-ui/components/u-loading-page/props.js @@ -0,0 +1,49 @@ +export default { + props: { + // 提示内容 + loadingText: { + type: [String, Number], + default: uni.$u.props.loadingPage.loadingText + }, + // 文字上方用于替换loading动画的图片 + image: { + type: String, + default: uni.$u.props.loadingPage.image + }, + // 加载动画的模式,circle-圆形,spinner-花朵形,semicircle-半圆形 + loadingMode: { + type: String, + default: uni.$u.props.loadingPage.loadingMode + }, + // 是否加载中 + loading: { + type: Boolean, + default: uni.$u.props.loadingPage.loading + }, + // 背景色 + bgColor: { + type: String, + default: uni.$u.props.loadingPage.bgColor + }, + // 文字颜色 + color: { + type: String, + default: uni.$u.props.loadingPage.color + }, + // 文字大小 + fontSize: { + type: [String, Number], + default: uni.$u.props.loadingPage.fontSize + }, + // 图标大小 + iconSize: { + type: [String, Number], + default: uni.$u.props.loadingPage.fontSize + }, + // 加载中图标的颜色,只能rgb或者十六进制颜色值 + loadingColor: { + type: String, + default: uni.$u.props.loadingPage.loadingColor + } + } +} diff --git a/uni_modules/uview-ui/components/u-loading-page/u-loading-page.vue b/uni_modules/uview-ui/components/u-loading-page/u-loading-page.vue new file mode 100644 index 0000000..03a78ad --- /dev/null +++ b/uni_modules/uview-ui/components/u-loading-page/u-loading-page.vue @@ -0,0 +1,115 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-loadmore/props.js b/uni_modules/uview-ui/components/u-loadmore/props.js new file mode 100644 index 0000000..1e67d89 --- /dev/null +++ b/uni_modules/uview-ui/components/u-loadmore/props.js @@ -0,0 +1,94 @@ +export default { + props: { + // 组件状态,loadmore-加载前的状态,loading-加载中的状态,nomore-没有更多的状态 + status: { + type: String, + default: uni.$u.props.loadmore.status + }, + // 组件背景色 + bgColor: { + type: String, + default: uni.$u.props.loadmore.bgColor + }, + // 是否显示加载中的图标 + icon: { + type: Boolean, + default: uni.$u.props.loadmore.icon + }, + // 字体大小 + fontSize: { + type: [String, Number], + default: uni.$u.props.loadmore.fontSize + }, + // 图标大小 + iconSize: { + type: [String, Number], + default: uni.$u.props.loadmore.iconSize + }, + // 字体颜色 + color: { + type: String, + default: uni.$u.props.loadmore.color + }, + // 加载中状态的图标,spinner-花朵状图标,circle-圆圈状,semicircle-半圆 + loadingIcon: { + type: String, + default: uni.$u.props.loadmore.loadingIcon + }, + // 加载前的提示语 + loadmoreText: { + type: String, + default: uni.$u.props.loadmore.loadmoreText + }, + // 加载中提示语 + loadingText: { + type: String, + default: uni.$u.props.loadmore.loadingText + }, + // 没有更多的提示语 + nomoreText: { + type: String, + default: uni.$u.props.loadmore.nomoreText + }, + // 在“没有更多”状态下,是否显示粗点 + isDot: { + type: Boolean, + default: uni.$u.props.loadmore.isDot + }, + // 加载中图标的颜色 + iconColor: { + type: String, + default: uni.$u.props.loadmore.iconColor + }, + // 上边距 + marginTop: { + type: [String, Number], + default: uni.$u.props.loadmore.marginTop + }, + // 下边距 + marginBottom: { + type: [String, Number], + default: uni.$u.props.loadmore.marginBottom + }, + // 高度,单位px + height: { + type: [String, Number], + default: uni.$u.props.loadmore.height + }, + // 是否显示左边分割线 + line: { + type: Boolean, + default: uni.$u.props.loadmore.line + }, + // 线条颜色 + lineColor: { + type: String, + default: uni.$u.props.loadmore.lineColor + }, + // 是否虚线,true-虚线,false-实线 + dashed: { + type: Boolean, + default: uni.$u.props.loadmore.dashed + } + } +} diff --git a/uni_modules/uview-ui/components/u-loadmore/u-loadmore.vue b/uni_modules/uview-ui/components/u-loadmore/u-loadmore.vue new file mode 100644 index 0000000..73c79fe --- /dev/null +++ b/uni_modules/uview-ui/components/u-loadmore/u-loadmore.vue @@ -0,0 +1,150 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-modal/props.js b/uni_modules/uview-ui/components/u-modal/props.js new file mode 100644 index 0000000..f76672c --- /dev/null +++ b/uni_modules/uview-ui/components/u-modal/props.js @@ -0,0 +1,84 @@ +export default { + props: { + // 是否展示modal + show: { + type: Boolean, + default: uni.$u.props.modal.show + }, + // 标题 + title: { + type: [String], + default: uni.$u.props.modal.title + }, + // 弹窗内容 + content: { + type: String, + default: uni.$u.props.modal.content + }, + // 确认文案 + confirmText: { + type: String, + default: uni.$u.props.modal.confirmText + }, + // 取消文案 + cancelText: { + type: String, + default: uni.$u.props.modal.cancelText + }, + // 是否显示确认按钮 + showConfirmButton: { + type: Boolean, + default: uni.$u.props.modal.showConfirmButton + }, + // 是否显示取消按钮 + showCancelButton: { + type: Boolean, + default: uni.$u.props.modal.showCancelButton + }, + // 确认按钮颜色 + confirmColor: { + type: String, + default: uni.$u.props.modal.confirmColor + }, + // 取消文字颜色 + cancelColor: { + type: String, + default: uni.$u.props.modal.cancelColor + }, + // 对调确认和取消的位置 + buttonReverse: { + type: Boolean, + default: uni.$u.props.modal.buttonReverse + }, + // 是否开启缩放效果 + zoom: { + type: Boolean, + default: uni.$u.props.modal.zoom + }, + // 是否异步关闭,只对确定按钮有效 + asyncClose: { + type: Boolean, + default: uni.$u.props.modal.asyncClose + }, + // 是否允许点击遮罩关闭modal + closeOnClickOverlay: { + type: Boolean, + default: uni.$u.props.modal.closeOnClickOverlay + }, + // 给一个负的margin-top,往上偏移,避免和键盘重合的情况 + negativeTop: { + type: [String, Number], + default: uni.$u.props.modal.negativeTop + }, + // modal宽度,不支持百分比,可以数值,px,rpx单位 + width: { + type: [String, Number], + default: uni.$u.props.modal.width + }, + // 确认按钮的样式,circle-圆形,square-方形,如设置,将不会显示取消按钮 + confirmButtonShape: { + type: String, + default: uni.$u.props.modal.confirmButtonShape + } + } +} diff --git a/uni_modules/uview-ui/components/u-modal/u-modal.vue b/uni_modules/uview-ui/components/u-modal/u-modal.vue new file mode 100644 index 0000000..4c37ae2 --- /dev/null +++ b/uni_modules/uview-ui/components/u-modal/u-modal.vue @@ -0,0 +1,227 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-navbar/props.js b/uni_modules/uview-ui/components/u-navbar/props.js new file mode 100644 index 0000000..5398de2 --- /dev/null +++ b/uni_modules/uview-ui/components/u-navbar/props.js @@ -0,0 +1,84 @@ +export default { + props: { + // 是否开启顶部安全区适配 + safeAreaInsetTop: { + type: Boolean, + default: uni.$u.props.navbar.safeAreaInsetTop + }, + // 固定在顶部时,是否生成一个等高元素,以防止塌陷 + placeholder: { + type: Boolean, + default: uni.$u.props.navbar.placeholder + }, + // 是否固定在顶部 + fixed: { + type: Boolean, + default: uni.$u.props.navbar.fixed + }, + // 是否显示下边框 + border: { + type: Boolean, + default: uni.$u.props.navbar.border + }, + // 左边的图标 + leftIcon: { + type: String, + default: uni.$u.props.navbar.leftIcon + }, + // 左边的提示文字 + leftText: { + type: String, + default: uni.$u.props.navbar.leftText + }, + // 左右的提示文字 + rightText: { + type: String, + default: uni.$u.props.navbar.rightText + }, + // 右边的图标 + rightIcon: { + type: String, + default: uni.$u.props.navbar.rightIcon + }, + // 标题 + title: { + type: [String, Number], + default: uni.$u.props.navbar.title + }, + // 背景颜色 + bgColor: { + type: String, + default: uni.$u.props.navbar.bgColor + }, + // 标题的宽度 + titleWidth: { + type: [String, Number], + default: uni.$u.props.navbar.titleWidth + }, + // 导航栏高度 + height: { + type: [String, Number], + default: uni.$u.props.navbar.height + }, + // 左侧返回图标的大小 + leftIconSize: { + type: [String, Number], + default: uni.$u.props.navbar.leftIconSize + }, + // 左侧返回图标的颜色 + leftIconColor: { + type: String, + default: uni.$u.props.navbar.leftIconColor + }, + // 点击左侧区域(返回图标),是否自动返回上一页 + autoBack: { + type: Boolean, + default: uni.$u.props.navbar.autoBack + }, + // 标题的样式,对象或字符串 + titleStyle: { + type: [String, Object], + default: uni.$u.props.navbar.titleStyle + } + } +} diff --git a/uni_modules/uview-ui/components/u-navbar/u-navbar.vue b/uni_modules/uview-ui/components/u-navbar/u-navbar.vue new file mode 100644 index 0000000..2b206b7 --- /dev/null +++ b/uni_modules/uview-ui/components/u-navbar/u-navbar.vue @@ -0,0 +1,186 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-no-network/props.js b/uni_modules/uview-ui/components/u-no-network/props.js new file mode 100644 index 0000000..9f3af62 --- /dev/null +++ b/uni_modules/uview-ui/components/u-no-network/props.js @@ -0,0 +1,19 @@ +export default { + props: { + // 页面文字提示 + tips: { + type: String, + default: uni.$u.props.noNetwork.tips + }, + // 一个z-index值,用于设置没有网络这个组件的层次,因为页面可能会有其他定位的元素层级过高,导致此组件被覆盖 + zIndex: { + type: [String, Number], + default: uni.$u.props.noNetwork.zIndex + }, + // image 没有网络的图片提示 + image: { + type: String, + default: uni.$u.props.noNetwork.image + } + } +} diff --git a/uni_modules/uview-ui/components/u-no-network/u-no-network.vue b/uni_modules/uview-ui/components/u-no-network/u-no-network.vue new file mode 100644 index 0000000..53db905 --- /dev/null +++ b/uni_modules/uview-ui/components/u-no-network/u-no-network.vue @@ -0,0 +1,219 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-notice-bar/props.js b/uni_modules/uview-ui/components/u-notice-bar/props.js new file mode 100644 index 0000000..7040c29 --- /dev/null +++ b/uni_modules/uview-ui/components/u-notice-bar/props.js @@ -0,0 +1,70 @@ +export default { + props: { + // 显示的内容,数组 + text: { + type: [Array, String], + default: uni.$u.props.noticeBar.text + }, + // 通告滚动模式,row-横向滚动,column-竖向滚动 + direction: { + type: String, + default: uni.$u.props.noticeBar.direction + }, + // direction = row时,是否使用步进形式滚动 + step: { + type: Boolean, + default: uni.$u.props.noticeBar.step + }, + // 是否显示左侧的音量图标 + icon: { + type: String, + default: uni.$u.props.noticeBar.icon + }, + // 通告模式,link-显示右箭头,closable-显示右侧关闭图标 + mode: { + type: String, + default: uni.$u.props.noticeBar.mode + }, + // 文字颜色,各图标也会使用文字颜色 + color: { + type: String, + default: uni.$u.props.noticeBar.color + }, + // 背景颜色 + bgColor: { + type: String, + default: uni.$u.props.noticeBar.bgColor + }, + // 水平滚动时的滚动速度,即每秒滚动多少px(px),这有利于控制文字无论多少时,都能有一个恒定的速度 + speed: { + type: [String, Number], + default: uni.$u.props.noticeBar.speed + }, + // 字体大小 + fontSize: { + type: [String, Number], + default: uni.$u.props.noticeBar.fontSize + }, + // 滚动一个周期的时间长,单位ms + duration: { + type: [String, Number], + default: uni.$u.props.noticeBar.duration + }, + // 是否禁止用手滑动切换 + // 目前HX2.6.11,只支持App 2.5.5+、H5 2.5.5+、支付宝小程序、字节跳动小程序 + disableTouch: { + type: Boolean, + default: uni.$u.props.noticeBar.disableTouch + }, + // 跳转的页面路径 + url: { + type: String, + default: uni.$u.props.noticeBar.url + }, + // 页面跳转的类型 + linkType: { + type: String, + default: uni.$u.props.noticeBar.linkType + } + } +} diff --git a/uni_modules/uview-ui/components/u-notice-bar/u-notice-bar.vue b/uni_modules/uview-ui/components/u-notice-bar/u-notice-bar.vue new file mode 100644 index 0000000..a06eb39 --- /dev/null +++ b/uni_modules/uview-ui/components/u-notice-bar/u-notice-bar.vue @@ -0,0 +1,101 @@ + + + + diff --git a/uni_modules/uview-ui/components/u-notify/props.js b/uni_modules/uview-ui/components/u-notify/props.js new file mode 100644 index 0000000..57a9d71 --- /dev/null +++ b/uni_modules/uview-ui/components/u-notify/props.js @@ -0,0 +1,49 @@ +export default { + props: { + // 到顶部的距离 + top: { + type: [String, Number], + default: uni.$u.props.notify.top + }, + // 是否展示组件 + // show: { + // type: Boolean, + // default: uni.$u.props.notify.show + // }, + // type主题,primary,success,warning,error + type: { + type: String, + default: uni.$u.props.notify.type + }, + // 字体颜色 + color: { + type: String, + default: uni.$u.props.notify.color + }, + // 背景颜色 + bgColor: { + type: String, + default: uni.$u.props.notify.bgColor + }, + // 展示的文字内容 + message: { + type: String, + default: uni.$u.props.notify.message + }, + // 展示时长,为0时不消失,单位ms + duration: { + type: [String, Number], + default: uni.$u.props.notify.duration + }, + // 字体大小 + fontSize: { + type: [String, Number], + default: uni.$u.props.notify.fontSize + }, + // 是否留出顶部安全距离(状态栏高度) + safeAreaInsetTop: { + type: Boolean, + default: uni.$u.props.notify.safeAreaInsetTop + } + } +} diff --git a/uni_modules/uview-ui/components/u-notify/u-notify.vue b/uni_modules/uview-ui/components/u-notify/u-notify.vue new file mode 100644 index 0000000..30adb72 --- /dev/null +++ b/uni_modules/uview-ui/components/u-notify/u-notify.vue @@ -0,0 +1,211 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-number-box/props.js b/uni_modules/uview-ui/components/u-number-box/props.js new file mode 100644 index 0000000..fb0fa94 --- /dev/null +++ b/uni_modules/uview-ui/components/u-number-box/props.js @@ -0,0 +1,109 @@ +export default { + props: { + // 步进器标识符,在change回调返回 + name: { + type: [String, Number], + default: uni.$u.props.numberBox.name + }, + // 用于双向绑定的值,初始化时设置设为默认min值(最小值) + value: { + type: [String, Number], + default: uni.$u.props.numberBox.value + }, + // 最小值 + min: { + type: [String, Number], + default: uni.$u.props.numberBox.min + }, + // 最大值 + max: { + type: [String, Number], + default: uni.$u.props.numberBox.max + }, + // 加减的步长,可为小数 + step: { + type: [String, Number], + default: uni.$u.props.numberBox.step + }, + // 是否只允许输入整数 + integer: { + type: Boolean, + default: uni.$u.props.numberBox.integer + }, + // 是否禁用,包括输入框,加减按钮 + disabled: { + type: Boolean, + default: uni.$u.props.numberBox.disabled + }, + // 是否禁用输入框 + disabledInput: { + type: Boolean, + default: uni.$u.props.numberBox.disabledInput + }, + // 是否开启异步变更,开启后需要手动控制输入值 + asyncChange: { + type: Boolean, + default: uni.$u.props.numberBox.asyncChange + }, + // 输入框宽度,单位为px + inputWidth: { + type: [String, Number], + default: uni.$u.props.numberBox.inputWidth + }, + // 是否显示减少按钮 + showMinus: { + type: Boolean, + default: uni.$u.props.numberBox.showMinus + }, + // 是否显示增加按钮 + showPlus: { + type: Boolean, + default: uni.$u.props.numberBox.showPlus + }, + // 显示的小数位数 + decimalLength: { + type: [String, Number, null], + default: uni.$u.props.numberBox.decimalLength + }, + // 是否开启长按加减手势 + longPress: { + type: Boolean, + default: uni.$u.props.numberBox.longPress + }, + // 输入框文字和加减按钮图标的颜色 + color: { + type: String, + default: uni.$u.props.numberBox.color + }, + // 按钮大小,宽高等于此值,单位px,输入框高度和此值保持一致 + buttonSize: { + type: [String, Number], + default: uni.$u.props.numberBox.buttonSize + }, + // 输入框和按钮的背景颜色 + bgColor: { + type: String, + default: uni.$u.props.numberBox.bgColor + }, + // 指定光标于键盘的距离,避免键盘遮挡输入框,单位px + cursorSpacing: { + type: [String, Number], + default: uni.$u.props.numberBox.cursorSpacing + }, + // 是否禁用增加按钮 + disablePlus: { + type: Boolean, + default: uni.$u.props.numberBox.disablePlus + }, + // 是否禁用减少按钮 + disableMinus: { + type: Boolean, + default: uni.$u.props.numberBox.disableMinus + }, + // 加减按钮图标的样式 + iconStyle: { + type: [Object, String], + default: uni.$u.props.numberBox.iconStyle + } + } +} diff --git a/uni_modules/uview-ui/components/u-number-box/u-number-box.vue b/uni_modules/uview-ui/components/u-number-box/u-number-box.vue new file mode 100644 index 0000000..69211c5 --- /dev/null +++ b/uni_modules/uview-ui/components/u-number-box/u-number-box.vue @@ -0,0 +1,416 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-number-keyboard/props.js b/uni_modules/uview-ui/components/u-number-keyboard/props.js new file mode 100644 index 0000000..5e3bf55 --- /dev/null +++ b/uni_modules/uview-ui/components/u-number-keyboard/props.js @@ -0,0 +1,19 @@ +export default { + props: { + // 键盘的类型,number-数字键盘,card-身份证键盘 + mode: { + type: String, + default: uni.$u.props.numberKeyboard.value + }, + // 是否显示键盘的"."符号 + dotDisabled: { + type: Boolean, + default: uni.$u.props.numberKeyboard.dotDisabled + }, + // 是否打乱键盘按键的顺序 + random: { + type: Boolean, + default: uni.$u.props.numberKeyboard.random + } + } +} diff --git a/uni_modules/uview-ui/components/u-number-keyboard/u-number-keyboard.vue b/uni_modules/uview-ui/components/u-number-keyboard/u-number-keyboard.vue new file mode 100644 index 0000000..4f505c6 --- /dev/null +++ b/uni_modules/uview-ui/components/u-number-keyboard/u-number-keyboard.vue @@ -0,0 +1,196 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-overlay/props.js b/uni_modules/uview-ui/components/u-overlay/props.js new file mode 100644 index 0000000..e6974df --- /dev/null +++ b/uni_modules/uview-ui/components/u-overlay/props.js @@ -0,0 +1,24 @@ +export default { + props: { + // 是否显示遮罩 + show: { + type: Boolean, + default: uni.$u.props.overlay.show + }, + // 层级z-index + zIndex: { + type: [String, Number], + default: uni.$u.props.overlay.zIndex + }, + // 遮罩的过渡时间,单位为ms + duration: { + type: [String, Number], + default: uni.$u.props.overlay.duration + }, + // 不透明度值,当做rgba的第四个参数 + opacity: { + type: [String, Number], + default: uni.$u.props.overlay.opacity + } + } +} diff --git a/uni_modules/uview-ui/components/u-overlay/u-overlay.vue b/uni_modules/uview-ui/components/u-overlay/u-overlay.vue new file mode 100644 index 0000000..92de4e9 --- /dev/null +++ b/uni_modules/uview-ui/components/u-overlay/u-overlay.vue @@ -0,0 +1,68 @@ + + + + + diff --git a/uni_modules/uview-ui/components/u-parse/node/node.vue b/uni_modules/uview-ui/components/u-parse/node/node.vue new file mode 100644 index 0000000..73e30fd --- /dev/null +++ b/uni_modules/uview-ui/components/u-parse/node/node.vue @@ -0,0 +1,499 @@ +