addrs.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. <template>
  2. <view class="pages">
  3. <view class="addrs">
  4. <view class="addrs-item" :class="item.defaultStatus==1?'default':''" v-for="(item,index) in addrsList" :key="index" @click="editAddr(item)">
  5. <view class="addrs-item-content">
  6. <view class="addrs-item-upwrap">
  7. <view class="addrs-item-name">收货人:{{item.name}}</view>
  8. <view class="addrs-item-phoneNumber">{{item.phoneNumber}}</view>
  9. </view>
  10. <view class="addrs-item-addr">收货地址:{{item.province}}{{item.city}}{{item.region}}{{item.detailAddress}}</view>
  11. </view>
  12. <view class="addrs-item-icon-wrap">
  13. <text class="iconfont iconGroup" v-if="item.defaultStatus == 1"></text>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="new-btn-wrap">
  18. <view class="new-btn" @click="newAddr">添加新地址</view>
  19. </view>
  20. <!-- 地址编辑 -->
  21. <view class="newaddr-page fix-content translate" :class="{ 'open': fixPageOpen }">
  22. <view class="fix-content-nav"><text @click="closeFixPage" class="iconfont iconhoutui"></text></view>
  23. <view class="form-item required">
  24. <view class="form-item-til">所在省</view>
  25. <view class="form-item-con">
  26. <input type="text" placeholder="请选择/输入" v-model="params.province" value="" />
  27. </view>
  28. </view>
  29. <view class="form-item required">
  30. <view class="form-item-til">所在市</view>
  31. <view class="form-item-con">
  32. <input type="text" placeholder="请选择/输入" v-model="params.city" value="" />
  33. </view>
  34. </view>
  35. <view class="form-item required">
  36. <view class="form-item-til">所在地区</view>
  37. <view class="form-item-con">
  38. <input type="text" placeholder="请选择/输入" v-model="params.region" value="" />
  39. </view>
  40. </view>
  41. <view class="form-item required">
  42. <view class="form-item-til">详细地址</view>
  43. <view class="form-item-con">
  44. <input type="text" placeholder="请输入详细地址" v-model="params.detailAddress" value="" />
  45. </view>
  46. </view>
  47. <view class="form-item required">
  48. <view class="form-item-til">联系人</view>
  49. <view class="form-item-con">
  50. <input type="text" placeholder="请输入联系人" v-model="params.name" value="" />
  51. </view>
  52. </view>
  53. <view class="form-item required">
  54. <view class="form-item-til">联系电话</view>
  55. <view class="form-item-con">
  56. <input type="text" placeholder="请输入联系电话" v-model="params.phoneNumber" value="" />
  57. </view>
  58. </view>
  59. <view class="form-item">
  60. <view class="form-item-til">邮政编码</view>
  61. <view class="form-item-con">
  62. <input type="text" placeholder="请输入邮政编码" v-model="params.postCode" value="" />
  63. </view>
  64. </view>
  65. <view class="form-item">
  66. <view class="form-item-til">设为收货地址</view>
  67. <view class="form-item-con" style="min-width: auto;">
  68. <switch :checked="params.defaultStatus==1?true:false" @change="switchDefaultStatus" />
  69. </view>
  70. </view>
  71. <view class="form-item" v-if="isedit">
  72. <view class="form-item-til" style="color: red;" @click="delAddr">删除收货地址</view>
  73. </view>
  74. <view class="form-item save-addr">
  75. <view class="form-item-til" @click="saveAddr">保存收货地址</view>
  76. </view>
  77. <baidu-map class="map" :center="center" :zoom="zoom" @ready="handlermap" :scroll-wheel-zoom="true" @click="clickEvent"
  78. ak="BSf4i2bljmxl8R0x28cjOy8KMVrCVzev">
  79. <!-- 地图控件位置 -->
  80. <bm-navigation anchor="BMAP_ANCHOR_TOP_RIGHT"></bm-navigation>
  81. <!-- 获取城市列表 -->
  82. <bm-city-list anchor="BMAP_ANCHOR_TOP_LEFT"></bm-city-list>
  83. <!-- 定位当前位置 -->
  84. <bm-geolocation anchor="BMAP_ANCHOR_BOTTOM_RIGHT" :showAddressBar="true" :autoLocation="true" @locationSuccess="getLoctionSuccess"></bm-geolocation>
  85. <!-- 地图容器 -->
  86. <bm-view :style="{width:'100%',height: '400px'}"></bm-view>
  87. </baidu-map>
  88. </view>
  89. <!-- 地址编辑 -->
  90. <uni-popup ref="popup" type="dialog">
  91. <uni-popup-dialog type="info" content="确认删除此地址吗?" :duration="2000" :before-close="true" @close="closepopup" @confirm="confirmpopup"></uni-popup-dialog>
  92. </uni-popup>
  93. </view>
  94. </template>
  95. <script>
  96. import {
  97. BaiduMap,
  98. BmNavigation,
  99. BmView,
  100. BmGeolocation,
  101. BmCityList
  102. } from 'vue-baidu-map';
  103. import uniPopup from '@/components/uni-popup/uni-popup.vue';
  104. import uniPopupDialog from '@/components/uni-popup/uni-popup-dialog.vue';
  105. const defaultparams= {
  106. token: '',
  107. name: '',
  108. phoneNumber: "",
  109. defaultStatus: "0",
  110. postCode: "",
  111. province: "",
  112. city: "",
  113. region: "",
  114. detailAddress: "",
  115. latitude: '',
  116. longitude: ''
  117. };
  118. export default {
  119. components: {
  120. BaiduMap,
  121. BmNavigation,
  122. BmView,
  123. BmGeolocation,
  124. BmCityList,
  125. uniPopup,
  126. uniPopupDialog,
  127. },
  128. data() {
  129. return {
  130. isedit: false,
  131. addrsList: [],
  132. token:'',
  133. params: Object.assign({},defaultparams),
  134. ruleItems:{
  135. name: '',
  136. phoneNumber: "",
  137. province: "",
  138. city: "",
  139. region: "",
  140. detailAddress: "",
  141. },
  142. rules: {
  143. name: {rule: /^[\u4E00-\u9FA5]{2,4}$/,msg: "姓名2到4位汉字"},
  144. province: {rule: /\S/,msg: "请填写必要内容"},
  145. city: {rule: /\S/,msg: "请填写必要内容"},
  146. region: {rule: /\S/,msg: "请填写必要内容"},
  147. detailAddress: {rule: /\S/,msg: "请填写详细地址"},
  148. phoneNumber: {rule: /(^1[3|4|5|7|8|9]\d{9}$)|(^09\d{8}$)/,msg: "请填写正确手机号"},
  149. },
  150. fixPageOpen: false,
  151. center: {
  152. lng: 106.632713,
  153. lat: 26.653157
  154. },
  155. zoom: 12,
  156. }
  157. },
  158. onShow() {
  159. let serf = this;
  160. this.getAddrList();
  161. },
  162. onLoad() {
  163. let self = this;
  164. uni.getStorage({
  165. key:'token',
  166. success: function (res) {
  167. self.token = res.data;
  168. // console.log(res.data);
  169. }
  170. });
  171. },
  172. methods: {
  173. getAddrList() {
  174. let thetoken = 'Bearer ' + this.token;
  175. this.$api.http.get(this.config.apiBaseurl + '/member/address/list',{header: {Authorization:thetoken}}).then(res => {
  176. console.log('getAddrList', res);
  177. this.addrsList = res.data.data;
  178. if(this.addrsList.length == 1 && this.addrsList[0].defaultStatus!=1){
  179. console.log('getAddrListlength', this.addrsList[0]);
  180. // setTimeout(function(){console.log(this)},5000);
  181. setTimeout(this.setDefault(this.addrsList[0].id),1000);
  182. // this.setDefault(this.addrsList[0].id);
  183. }
  184. }).catch(err => {
  185. // console.log('err', err)
  186. })
  187. },
  188. newAddr() {
  189. this.fixPageOpen = true;
  190. },
  191. closeFixPage(){
  192. this.fixPageOpen = false;
  193. this.params = Object.assign({},defaultparams);
  194. this.isedit = false;
  195. this.getAddrList();
  196. },
  197. //是否默认
  198. switchDefaultStatus(e) {
  199. if (e.target.value) {
  200. this.params.defaultStatus = 1;
  201. } else {
  202. this.params.defaultStatus = 0;
  203. }
  204. // console.log('this.params',this.params);
  205. },
  206. editAddr(item){
  207. this.isedit = true;
  208. this.params = Object.assign(this.params,item);
  209. this.fixPageOpen = true;
  210. },
  211. saveAddr(){
  212. console.log(this.isedit);
  213. for (let x in this.ruleItems) {
  214. // console.log('x',x)
  215. if(!this.validate(x)) return;
  216. }
  217. console.log('this.params',this.params);
  218. // var saveApi;
  219. if(this.isedit){
  220. // saveApi = this.config.apiBaseurl + '/member/address/update';
  221. // console.log(this.params);
  222. this.$api.http.put(this.config.apiBaseurl + '/member/address/update/'+this.params.id,this.params,{
  223. header: {
  224. Accept:'application/json',
  225. Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  226. },
  227. }).then(res => {
  228. this.closeFixPage();
  229. // console.log('res',res)
  230. }).catch(err =>{
  231. console.log('err',err)
  232. });
  233. }else{
  234. // saveApi = this.config.apiBaseurl + '/member/address/add';
  235. if(this.addrsList.length == 0 ){this.params.defaultStatus = 1}
  236. this.$api.http.post(this.config.apiBaseurl + '/member/address/add',this.params,{
  237. header: {
  238. Accept:'application/json',
  239. Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  240. },
  241. }).then(res => {
  242. this.closeFixPage();
  243. // console.log('res',res)
  244. }).catch(err =>{
  245. console.log('err',err)
  246. });
  247. }
  248. },
  249. closepopup(done){
  250. done()
  251. },
  252. confirmpopup(done,value){
  253. this.$api.http.delete(this.config.apiBaseurl + '/member/address/delete/'+this.params.id,{},{
  254. header: {
  255. Accept:'application/json',
  256. Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  257. },
  258. }).then(res => {
  259. this.closeFixPage();
  260. // console.log('res',res)
  261. }).catch(err =>{
  262. console.log('err',err)
  263. });
  264. done()
  265. },
  266. delAddr(item){
  267. this.$refs.popup.open();
  268. },
  269. setDefault(id){
  270. this.$api.http.put(this.config.apiBaseurl + '/member/address/default/'+id,{},{
  271. header: {
  272. Accept:'application/json',
  273. Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  274. },
  275. }).then(res => {
  276. // this.closeFixPage();
  277. console.log('res',res)
  278. }).catch(err =>{
  279. console.log('err',err)
  280. });
  281. },
  282. //判断验证是否符合要求
  283. validate(key) {
  284. let bool = true;
  285. if (!this.rules[key].rule.test(this.params[key])) {
  286. //提示信息
  287. uni.showToast({
  288. icon:"none",
  289. title: this.rules[key].msg,
  290. })
  291. //取反
  292. bool = false;
  293. return false;
  294. }
  295. return bool;
  296. },
  297. handlermap({
  298. BMap,
  299. map
  300. }) {
  301. let _this = this;
  302. var geolocation = new BMap.Geolocation();
  303. geolocation.getCurrentPosition(function(r) {
  304. // console.log(r);
  305. _this.center = {
  306. lng: r.longitude,
  307. lat: r.latitude
  308. }; // 设置center属性值
  309. // console.log('_this.center',_this.params);
  310. if (_this.params.latitude && _this.params.longitude) {
  311. let transqq = qqMapTransBMap(_this.params.longitude, _this.params.latitude);
  312. // console.log('transqq',transqq);
  313. _this.center = {
  314. lng: transqq.lng,
  315. lat: transqq.lat
  316. };
  317. };
  318. let Icon_0 = new BMap.Icon("static/img/zuobiao.gif", new BMap.Size(64, 64), {
  319. anchor: new BMap.Size(18, 32),
  320. imageSize: new BMap.Size(36, 36)
  321. });
  322. let myMarker = new BMap.Marker(new BMap.Point(_this.params.longitude, _this.params.latitude), {
  323. icon: Icon_0
  324. });
  325. // map.addOverlay(myMarker);
  326. _this.autoLocationPoint = {
  327. lng: r.longitude,
  328. lat: r.latitude
  329. }; // 自定义覆盖物
  330. _this.initLocation = true;
  331. }, {
  332. enableHighAccuracy: true
  333. })
  334. window.map = map;
  335. },
  336. //点击地图监听
  337. clickEvent(e) {
  338. map.clearOverlays();
  339. let Icon_0 = new BMap.Icon("static/img/zuobiao.gif", new BMap.Size(64, 64), {
  340. anchor: new BMap.Size(18, 32),
  341. imageSize: new BMap.Size(36, 36)
  342. });
  343. var myMarker = new BMap.Marker(new BMap.Point(e.point.lng, e.point.lat), {
  344. icon: Icon_0
  345. });
  346. map.addOverlay(myMarker);
  347. //用所定位的经纬度查找所在地省市街道等信息
  348. var point = new BMap.Point(e.point.lng, e.point.lat);
  349. var gc = new BMap.Geocoder();
  350. let _this = this;
  351. gc.getLocation(point, function(rs) {
  352. var addComp = rs.addressComponents;
  353. console.log(rs); //地址信息
  354. _this.params.province = rs.addressComponents.province;
  355. _this.params.city = rs.addressComponents.city;
  356. _this.params.region = rs.addressComponents.district;
  357. uni.showToast({
  358. title:"选择成功!",
  359. icon:"none",
  360. duration:800
  361. });
  362. // _this.params.detailAddress = rs.address;
  363. });
  364. //转为高德坐标
  365. // let transGaode = bMapTransQQMap(e.point.lng, e.point.lat);
  366. },
  367. }
  368. }
  369. </script>
  370. <style scoped>
  371. @import url("./addrs.css");
  372. </style>