1 line
15 KiB
JavaScript
1 line
15 KiB
JavaScript
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-select_address-select_address"],{"1dd5":function(t,e,n){"use strict";n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return r})),n.d(e,"a",(function(){return i}));var i={uSticky:n("a6d7").default,uSearch:n("c280").default,uTabs:n("cd9e").default},a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",{},[i("u-sticky",{attrs:{customNavHeight:"0"}},[i("v-uni-view",{staticClass:"head_top"},[i("u-search",{attrs:{placeholder:"搜索小区、办公楼等",showAction:!1}}),i("v-uni-view",{staticStyle:{height:"20rpx"}}),i("u-tabs",{attrs:{list:t.tabsList,itemStyle:"font-size: 32rpx;height: 74rpx;",current:t.current,lineColor:"#FF6D20",lineWidth:"105rpx",height:"7rpx"},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.changeCurrent.apply(void 0,arguments)}}})],1)],1),i("v-uni-view",{staticStyle:{"background-color":"#f4f4f4",height:"30rpx"}}),0==t.current?i("v-uni-view",{staticClass:"address-box",staticStyle:{padding:"0"}},[i("v-uni-map",{staticStyle:{width:"750rpx",height:"750rpx"},attrs:{longitude:t.longitude,latitude:t.latitude,"show-location":!0},on:{controltap:function(e){arguments[0]=e=t.$handleEvent(e),t.handleMapTap.apply(void 0,arguments)}}}),i("v-uni-view",{staticClass:"head_item",staticStyle:{padding:"20rpx"}},[i("v-uni-view",{staticClass:"re-location"},[i("v-uni-view",{staticClass:"re-title"},[t._v("当前位置:")]),i("v-uni-view",[t._v(t._s(t.street))])],1),i("v-uni-view",{staticClass:"re-btn",on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.reGetLocation.apply(void 0,arguments)}}},[i("v-uni-image",{staticClass:"re-address-img",attrs:{src:n("96e5")}}),t._v("重新定位")],1)],1)],1):t._e(),1==t.current?i("v-uni-view",{staticClass:"address-box"},[i("v-uni-view",{staticClass:"head_item_tips"},[i("v-uni-view",[t._v("泸州区县")])],1),i("v-uni-view",{staticClass:"area"},t._l(t.areaList,(function(e,n){return i("v-uni-view",{key:n,staticClass:"area-item",class:{"area-item-on":e.code==t.area_change},on:{click:function(n){arguments[0]=n=t.$handleEvent(n),t.changeArea(e)}}},[t._v(t._s(e.name))])})),1),i("v-uni-view",{staticClass:"head_item_tips"},[i("v-uni-view",[t._v("选择街道/镇")])],1),i("v-uni-view",{staticClass:"street"},t._l(t.mapKey,(function(e){return i("v-uni-view",{key:e,staticClass:"letter-item"},[i("v-uni-view",{staticClass:"letter"},[t._v(t._s(e))]),i("v-uni-view",{staticClass:"item-box"},t._l(t.mapList[e],(function(e){return i("v-uni-view",{key:e.code,staticClass:"street-item",on:{click:function(n){arguments[0]=n=t.$handleEvent(n),t.changeStreet(e)}}},[t._v(t._s(e.name))])})),1)],1)})),1)],1):t._e()],1)},r=[]},"32dc":function(t,e,n){"use strict";n("7a82"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0,n("4e82"),n("b64b"),n("d401"),n("d3b7"),n("25f0"),n("159b"),n("14d9");var i=n("a126"),a=n("28e0"),r=n("7a69"),o=n("f89e"),s={data:function(){return{tabsList:[{name:"地图定位"},{name:"泸州区县"}],current:0,latitude:"28.87",longitude:"105.44",town:"",street_id:"",street:"",areaList:[],streetList:[],mapList:{},area_change:"",street_change:""}},onLoad:function(){this.getLoaction(),this.loadArea()},onShow:function(){},computed:{mapKey:function(){return Object.keys(this.mapList).sort()}},methods:{changeCurrent:function(t){this.current=t.index},getLoaction:function(){var t=this;this.street="定位中",uni.getLocation({type:"gcj02",timeout:"10",success:function(e){var n,r;e=(0,a.wgsToGcj)(e),n=e.latitude.toString(),r=e.longitude.toString(),t.latitude=e.latitude.toFixed(6),t.longitude=e.longitude.toFixed(6),t.$store.commit("setLocation",{lat:e.latitude.toFixed(6),long:e.longitude.toFixed(6)}),(0,i.getGeocoder)({lat:n,long:r}).then((function(e){t.town=e.data.address_reference.town.title,t.street_id=e.data.address_reference.town.id,t.street=e.data.address_reference.town.title})).catch((function(e){uni.showToast({title:e,icon:"none"}),t.street="定位失败"}))},fail:function(e){t.isshow=!1,uni.setStorageSync("RejectTarget",!0),(0,o.Toast)("定位失败,请检查定位权限是否开启"),t.street="定位失败"}})},reGetLocation:function(){this.getLoaction()},loadArea:function(){var t=this;(0,r.getArea)({city_code:510500}).then((function(e){t.areaList=e.data,t.changeArea(t.areaList[0])}))},loadStreet:function(t){var e=this;this.street_change="",(0,r.getStreet)({area_code:t}).then((function(t){e.streetList=t.data,e.initPinyin()}))},initPinyin:function(){var t=this;this.mapList={},this.streetList.forEach((function(e){var n,i=null===(n=e.pinyin)||void 0===n?void 0:n.toUpperCase();i=i||"#",t.mapList[i]||(t.mapList[i]=[]),t.mapList[i].push(e)}))},changeArea:function(t){this.area_change=t.code,this.loadStreet(this.area_change)},changeStreet:function(t){var e=this;uni.navigateBack({success:function(){uni.$emit("changeAddress",{area:e.area_change,street:t})}})},handleMapTap:function(t){}},onPullDownRefresh:function(){uni.stopPullDownRefresh()}};e.default=s},"39dc":function(t,e,n){var i=n("a28e");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("4f06").default;a("a89b5832",i,!0,{sourceMap:!1,shadowMode:!1})},"756a":function(t,e,n){"use strict";n.r(e);var i=n("32dc"),a=n.n(i);for(var r in i)["default"].indexOf(r)<0&&function(t){n.d(e,t,(function(){return i[t]}))}(r);e["default"]=a.a},a28e:function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */uni-page-body[data-v-d09db4b2]{background-color:#fff}body.?%PAGE?%[data-v-d09db4b2]{background-color:#fff}.head_top[data-v-d09db4b2]{background-color:#fff;padding:%?28?%}.address-box[data-v-d09db4b2]{border-radius:%?21?% %?21?% %?0?% %?0?%;padding:%?30?% %?28?%}.address-box .head_item[data-v-d09db4b2]{display:flex;justify-content:space-between;align-items:center;padding-bottom:%?28?%;font-size:%?28?%;font-family:PingFang SC-Regular,PingFang SC;font-weight:400;color:#333}.address-box .head_item .re-location[data-v-d09db4b2]{display:flex}.address-box .head_item .re-location .re-title[data-v-d09db4b2]{flex-shrink:0;padding-right:%?14?%}.address-box .head_item .re-address-img[data-v-d09db4b2]{width:%?38.55?%;height:%?38.55?%;margin-right:%?14?%}.address-box .head_item .re-btn[data-v-d09db4b2]{display:flex;align-items:center;flex-shrink:0;padding-left:%?14?%}.address-box .head_item_tips[data-v-d09db4b2]{height:%?44?%;font-size:%?32?%;font-family:PingFang SC-Regular,PingFang SC;font-weight:400;color:#737373}.address-box .address-list[data-v-d09db4b2]{font-size:%?28?%;font-family:PingFang SC-Regular,PingFang SC;font-weight:400;color:#333;height:%?80?%;line-height:%?75?%;border-bottom:%?1?% solid rgba(0,0,0,.1)}.address-box .area[data-v-d09db4b2]{display:flex;flex-wrap:wrap;padding-top:%?30?%}.address-box .area .area-item[data-v-d09db4b2]{height:%?64?%;background-color:#fff;border-radius:%?11?% %?11?% %?11?% %?11?%;border:%?2?% solid #b3b3b3;display:flex;align-items:center;justify-content:center;padding:0 %?20?%;font-size:%?28?%;font-family:PingFang SC-Medium,PingFang SC;font-weight:500;color:#737373;margin-bottom:%?22?%;margin-right:%?22?%}.address-box .area .area-item-on[data-v-d09db4b2]{color:#ff6d20;border:%?2?% solid #ff6d20}.address-box .street[data-v-d09db4b2]{padding-top:%?28?%}.address-box .street .letter-item[data-v-d09db4b2]{display:flex}.address-box .street .letter-item .letter[data-v-d09db4b2]{flex-shrink:0;margin-right:%?28?%;font-size:%?25?%;font-family:PingFang SC;font-weight:400;width:%?40?%;text-align:center;color:#737373}.address-box .street .letter-item .item-box[data-v-d09db4b2]{flex:1}.address-box .street .letter-item .item-box .street-item[data-v-d09db4b2]{width:100%;padding-bottom:%?28?%;font-size:%?28?%;font-family:PingFang SC;font-weight:400;color:#333}',""]),t.exports=e},b8b2:function(t,e,n){"use strict";var i=n("39dc"),a=n.n(i);a.a},ddcde:function(t,e,n){"use strict";n.r(e);var i=n("1dd5"),a=n("756a");for(var r in a)["default"].indexOf(r)<0&&function(t){n.d(e,t,(function(){return a[t]}))}(r);n("b8b2");var o=n("f0c5"),s=Object(o["a"])(a["default"],i["b"],i["c"],!1,null,"d09db4b2",null,!1,i["a"],void 0);e["default"]=s.exports},f89e:function(t,e,n){"use strict";n("7a82");var i=n("4ea4").default;Object.defineProperty(e,"__esModule",{value:!0}),e.ActionSheet=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"#000000";return new Promise((function(n,i){uni.showActionSheet({itemList:t,itemColor:e,success:function(t){n(t.tapIndex)},fail:function(t){i(t.errMsg)}})}))},e.Authorize=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"scope.userInfo";return new Promise((function(e,n){uni.authorize({scope:t,success:function(t){e(t)},fail:function(t){n(t)}})}))},e.GetUserInfo=function(){return new Promise((function(t,e){uni.getUserInfo({success:function(e){t(e)},fail:function(t){e(t)}})}))},e.Loading=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"正在加载...",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};uni.showLoading((0,r.default)({title:t,mask:!0},e))},e.Modal=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"提示",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"这是一个模态弹窗!",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{showCancel:!0,cancelText:"取消",confirmText:"确定"};return new Promise((function(i,a){uni.showModal((0,r.default)((0,r.default)({},n),{},{title:t,content:e,success:function(t){t.confirm&&i(),t.cancel&&a()}}))}))},e.ScrollTo=function(t){uni.pageScrollTo({scrollTop:t,duration:300})},e.Toast=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"none",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:800,a=(0,r.default)({title:t,duration:i,position:"center",mask:!0,icon:e||"none"},n);uni.showToast(a)},e.chooseImage=function(t){return new Promise((function(e,n){uni.chooseImage({count:t,sizeType:["original","compressed"],sourceType:["album","camera"],success:function(t){e(t)},fail:function(t){n(t)}})}))},e.clearStorage=function(){try{uni.clearStorageSync()}catch(t){throw new Error("处理失败")}},e.convertObj=o,e.formatDate=s,e.getQuarterStartDate=function(){var t=new Date(u,function(){var t=0;c<3&&(t=0);2<c&&c<6&&(t=3);5<c&&c<9&&(t=6);c>8&&(t=9);return t}(),1);return s(t,"yyyy-MM-dd")},e.getStorage=function(t){var e=uni.getStorageSync(t);try{"number"!=typeof JSON.parse(e)&&(e=JSON.parse(e))}catch(n){}return e},e.hideLoading=function(){try{uni.hideLoading()}catch(t){throw new Error("处理失败")}},e.navigateBack=function(t){uni.navigateBack({delta:t})},e.navigateTo=function(t,e,n){var i=e,a="navigateTo";switch(i=n?i+"?"+o(n):i,t){case 1:a="navigateTo";break;case 2:a="redirectTo";break;case 3:a="reLaunch";break;case 4:a="switchTab";break;default:a="navigateTo";break}uni[a]({url:i,animationType:"slide-in-right",animationDuration:200})},e.pathToBase64=function(t){return new Promise((function(e,n){if("object"===("undefined"===typeof window?"undefined":(0,a.default)(window))&&"document"in window){if("function"===typeof FileReader){var i=new XMLHttpRequest;return i.open("GET",t,!0),i.responseType="blob",i.onload=function(){if(200===this.status){var t=new FileReader;t.onload=function(t){e(t.target.result)},t.onerror=n,t.readAsDataURL(this.response)}},i.onerror=n,void i.send()}var r=document.createElement("canvas"),o=r.getContext("2d"),s=new Image;return s.onload=function(){r.width=s.width,r.height=s.height,o.drawImage(s,0,0),e(r.toDataURL()),r.height=r.width=0},s.onerror=n,void(s.src=t)}"object"!==("undefined"===typeof plus?"undefined":(0,a.default)(plus))?"object"===("undefined"===typeof wx?"undefined":(0,a.default)(wx))&&wx.canIUse("getFileSystemManager")?wx.getFileSystemManager().readFile({filePath:t,encoding:"base64",success:function(t){e("data:image/png;base64,"+t.data)},fail:function(t){n(t)}}):n(new Error("not support")):plus.io.resolveLocalFileSystemURL(getLocalFilePath(t),(function(t){t.file((function(t){var i=new plus.io.FileReader;i.onload=function(t){e(t.target.result)},i.onerror=function(t){n(t)},i.readAsDataURL(t)}),(function(t){n(t)}))}),(function(t){n(t)}))}))},e.removeStorage=function(t){t&&uni.removeStorageSync(t)},e.serialize=function(t){if(null!=t&&""!=t)try{return JSON.parse(JSON.stringify(t))}catch(e){return t instanceof Array?[]:{}}return t},e.setStorage=function(t,e){if("string"==typeof e)return uni.setStorageSync(t,e),e;uni.setStorageSync(t,JSON.stringify(e))},e.showMonthFirstDay=function(){var t=(new Date).setDate(1);return s(new Date(t).getTime(),"yyyy-MM-dd")},e.showWeekFirstDay=function(){var t=new Date,e=t.getDay()||7;return t.setDate(t.getDate()-e+1),s(t,"yyyy-MM-dd")},e.throttle=function(t,e){var n,i;e=e||200;return function(){for(var a=this,r=arguments.length,o=new Array(r),s=0;s<r;s++)o[s]=arguments[s];n=o,i||(i=setTimeout((function(){i=null,t.apply(a,n)}),e))}},e.unique=function(t){t=t||[];for(var e={},n=0;n<t.length;n++){var i=JSON.stringify(t[n]);"undefined"==typeof i&&(e[i]=1)}for(var n in t.length=0,e)t[t.length]=n;return t};var a=i(n("53ca")),r=i(n("5530"));function o(t){var e,n=[];return Object.keys(t).forEach((function(e){n.push("".concat(e,"=").concat(t[e]))})),e=n.join("&"),e}function s(t,e){return t?(e=e||"yyyy-MM-dd hh:mm:ss",new Date(t).format(e)):""}n("e9c4"),n("d9e2"),n("d401"),n("d3b7"),n("159b"),n("b64b"),n("14d9"),n("99af"),n("ac1f"),n("00b4"),n("5319"),n("4d63"),n("c607"),n("2c3e"),n("25f0"),Date.prototype.format=function(t){var e={"M+":this.getMonth()+1,"d+":this.getDate(),"h+":this.getHours(),"m+":this.getMinutes(),"s+":this.getSeconds(),"q+":Math.floor((this.getMonth()+3)/3),S:this.getMilliseconds()};for(var n in/(y+)/.test(t)&&(t=t.replace(RegExp.$1,String(this.getFullYear()).substr(4-RegExp.$1.length))),e)new RegExp("("+n+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?e[n]:("00"+e[n]).substr(String(e[n]).length)));return t};var d=new Date,c=d.getMonth(),u=d.getYear();u+=u<2e3?1900:0}}]); |