edit.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. <!-- 添加修改地址 -->
  2. <template>
  3. <view class="address-wrap">
  4. <u-form :model="model" :rules="rules" ref="uForm" :errorType="errorType">
  5. <!-- 地址定位 -->
  6. <view class="location-item u-flex u-row-between u-p-20 u-m-b-20" @tap="getLocation">
  7. <view class="u-flex">
  8. <text class="u-iconfont uicon-map-fill" style="#a76f0d;"></text>
  9. <text>{{ chooseAddress }}</text>
  10. </view>
  11. <text class="u-iconfont uicon-arrow-right" style="color: #666"></text>
  12. </view>
  13. <view class="address-box">
  14. <!-- 地址表单 -->
  15. <u-form-item :labelStyle="labelStyle"   label-width="150" label-position="left" label="收货人:" prop="consignee">
  16. <u-input placeholder="请填写收货人姓名" v-model="model.consignee" type="text"></u-input>
  17. </u-form-item>
  18. <u-form-item :labelStyle="labelStyle"   label-width="150" label-position="left" label="手机号:" prop="phone">
  19. <u-input placeholder="请输入收货人手机号" v-model="model.phone" type="number"></u-input>
  20. </u-form-item>
  21. <u-form-item :labelStyle="labelStyle" label-width="150" label-position="left" label="所在地区:" prop="area_text">
  22. <u-input type="select" v-model="model.area_text" :select-open="showSelect" placeholder="请选择地区" @click="showSelect = true"></u-input>
  23. </u-form-item>
  24. <u-form-item :labelStyle="labelStyle" label-position="left" label-width="150" label="详细地址:" prop="address">
  25. <u-input border type="textarea" v-model="model.address" placeholder="如道路、门牌号、小区、楼栋号、单元室等" />
  26. </u-form-item>
  27. </view>
  28. <!-- 设置默认 -->
  29. <view class="default-box u-flex u-row-between">
  30. <text class="title">设为默认地址</text>
  31. <u-switch v-model="model.is_default" activeColor="#e9b461" size="40"></u-switch>
  32. </view>
  33. <!-- 功能按钮 -->
  34. <view class="foot_box u-p-30 u-m-t-50 u-flex u-row-around">
  35. <button v-show="addressId" class=" u-m-20 u-reset-button delete-btn u-flex-1" @tap="deleteAddress">删除收货地址</button>
  36. <button class=" u-m-20 u-reset-button save-btn u-flex-1" @tap="submit">保存收货地址</button>
  37. </view>
  38. </u-form>
  39. <!-- 省市区选择器 -->
  40. <u-select mode="mutil-column-auto" safe-area-inset-bottom :list="addressAreaList" v-model="showSelect" @confirm="regionConfirm"></u-select>
  41. </view>
  42. </template>
  43. <script>
  44. import { MAP_KEY } from '@/env.js';
  45. import Auth from '@/shopro/permission/index.js';
  46. export default {
  47. components: {},
  48. data() {
  49. return {
  50. showSelect: false, //省市区
  51. addressAreaList: [],
  52. addressId: 0, //收货地址ID
  53. labelStyle: {
  54. 'font-size': '28rpx',
  55. 'font-weight': '600',
  56. color: '#595959'
  57. },
  58. model: {
  59. id: 0,
  60. consignee: '',
  61. phone: '',
  62. area_text: '',
  63. address: '',
  64. is_default: false,
  65. latitude: '',
  66. longitude: ''
  67. },
  68. rules: {
  69. phone: [
  70. {
  71. required: true,
  72. message: '请输入收货人手机号',
  73. trigger: ['change', 'blur']
  74. },
  75. {
  76. validator: (rule, value, callback) => {
  77. return this.$u.test.mobile(value);
  78. },
  79. message: '手机号码不正确',
  80. trigger: ['change', 'blur']
  81. }
  82. ],
  83. consignee: [
  84. {
  85. required: true,
  86. message: '请填写收货人姓名',
  87. trigger: ['change', 'blur']
  88. }
  89. ],
  90. area_text: [
  91. {
  92. required: true,
  93. message: '请选择地区',
  94. trigger: ['change', 'blur']
  95. }
  96. ],
  97. address: [
  98. {
  99. required: true,
  100. message: '请输入详细地址',
  101. trigger: ['change', 'blur']
  102. }
  103. ]
  104. },
  105. errorType: ['message'],
  106. chooseAddress: '点击选择地理位置' //定位地址
  107. };
  108. },
  109. computed: {},
  110. onReady() {
  111. this.$refs.uForm.setRules(this.rules);
  112. },
  113. onLoad() {
  114. this.getArea();
  115. this.addressId = this.$Route.query.id ? this.$Route.query.id : 0;
  116. uni.setNavigationBarTitle({
  117. title: this.addressId ? '编辑收货地址' : '添加收货地址'
  118. });
  119. this.addressId && this.getAddressInfo();
  120. // 微信导入
  121. this.$Route.query.addressData && this.wxAddressInit();
  122. },
  123. methods: {
  124. // 获取省市区
  125. getArea() {
  126. this.$http('address.area').then(res => {
  127. if (res.code === 1) {
  128. let { provinceData, cityData, areaData } = res.data;
  129. provinceData.forEach((item, index) => {
  130. this.addressAreaList.push({ ...item, children: [] });
  131. this.addressAreaList[index].children.push(...cityData[index]);
  132. this.addressAreaList[index].children.forEach((item1, index1) => {
  133. item1['children'] = [];
  134. item1.children.push(...areaData[index][index1]);
  135. });
  136. });
  137. }
  138. });
  139. },
  140. // 微信导入数据格式
  141. wxAddressInit() {
  142. let wxAddress = this.$Route.query.addressData; //微信导入
  143. this.model.id = 0;
  144. this.model.consignee = wxAddress.userName;
  145. this.model.phone = wxAddress.telNumber;
  146. // #ifdef MP-WEIXIN
  147. this.model.area_text = `${wxAddress.provinceName}-${wxAddress.cityName}-${wxAddress.countyName}`;
  148. // #endif
  149. // #ifdef H5
  150. this.model.area_text = `${wxAddress.provinceName}-${wxAddress.cityName}-${wxAddress.countryName}`;
  151. // #endif
  152. this.model.address = wxAddress.detailInfo.replace(/%20/g, '');
  153. this.model.is_default = false;
  154. },
  155. // 确认省市区
  156. regionConfirm(e) {
  157. this.model.area_text = `${e[0].label}-${e[1].label}-${e[2].label}`;
  158. },
  159. // 获取定位
  160. async getLocation() {
  161. let authState = await new Auth('userLocation').check();
  162. authState &&
  163. uni.chooseLocation({
  164. success: res => {
  165. this.model.latitude = res.latitude;
  166. this.model.longitude = res.longitude;
  167. this.getLocationInfo();
  168. },
  169. fail: err => {
  170. console.log(err);
  171. }
  172. });
  173. },
  174. //逆坐标解析
  175. async getLocationInfo() {
  176. this.chooseAddress = '定位中...';
  177. const [error, res] = await uni.request({
  178. url: `https://restapi.amap.com/v3/geocode/regeo?location=${this.model.longitude},${this.model.latitude}&key=${MAP_KEY}`
  179. });
  180. if (res.data.status === '1') {
  181. const addressComponent = res.data.regeocode.addressComponent;
  182. this.chooseAddress = res.data.regeocode.formatted_address;
  183. this.model.area_text = `${addressComponent.province}-${addressComponent.city.length ? addressComponent.city : addressComponent.province}-${
  184. addressComponent.district
  185. }`;
  186. this.model.address = res.data.regeocode.formatted_address.replace(`${addressComponent.province}${addressComponent.city}${addressComponent.district}`, '');
  187. } else {
  188. console.log('%c逆地址解析失败,请检查是否在env中配置地图key', 'color:green;background:yellow');
  189. }
  190. },
  191. // 提交
  192. submit() {
  193. this.$refs.uForm.validate(valid => {
  194. valid ? this.editAddress() : console.log('验证失败');
  195. });
  196. },
  197. // 编辑添加地址
  198. editAddress() {
  199. let that = this;
  200. that.$http(
  201. 'address.edit',
  202. {
  203. ...that.model,
  204. id: that.addressId
  205. },
  206. '保存中...'
  207. ).then(res => {
  208. if (res.code === 1) {
  209. that.$Router.back();
  210. }
  211. });
  212. },
  213. // 地址信息
  214. getAddressInfo() {
  215. const that = this;
  216. this.$http('address.info', {
  217. id: that.$Route.query.id
  218. }).then(res => {
  219. if (res.code === 1) {
  220. let addressData = res.data;
  221. that.addressId = addressData.id;
  222. that.model.area_text = `${addressData.province_name}-${addressData.city_name}-${addressData.area_name}`;
  223. that.model.is_default = addressData.is_default === '1' ? true : false;
  224. that.model.address = addressData.address;
  225. that.model.phone = addressData.phone;
  226. that.model.consignee = addressData.consignee;
  227. }
  228. });
  229. },
  230. // 删除收货地址
  231. deleteAddress() {
  232. const that = this;
  233. that.$http(
  234. 'address.del',
  235. {
  236. id: that.addressId
  237. },
  238. '删除中...'
  239. ).then(res => {
  240. if (res.code === 1) {
  241. that.$Router.back();
  242. }
  243. });
  244. }
  245. }
  246. };
  247. </script>
  248. <style lang="scss">
  249. // 点击定位
  250. .location-item {
  251. font-size: 28rpx;
  252. font-weight: 500;
  253. background-color: #fff;
  254. color: rgba(167, 111, 13, 1);
  255. }
  256. // 表单
  257. .address-box {
  258. background-color: #fff;
  259. padding: 0 30rpx;
  260. }
  261. .address-item {
  262. height: 96rpx;
  263. background: #fff;
  264. border-bottom: 1rpx solid rgba(#dfdfdf, 0.5);
  265. padding: 0 25rpx;
  266. .item-title {
  267. color: #333;
  268. font-size: 28rpx;
  269. white-space: nowrap;
  270. }
  271. .inp {
  272. color: #333;
  273. font-size: 28rpx;
  274. }
  275. }
  276. .area-box {
  277. min-height: 120rpx;
  278. padding-bottom: 60rpx;
  279. background: #fff;
  280. padding: 30rpx 25rpx;
  281. .item-title {
  282. font-size: 28rpx;
  283. line-height: 28rpx;
  284. vertical-align: middle;
  285. white-space: nowrap;
  286. }
  287. .area-inp {
  288. color: #333;
  289. font-size: 28rpx;
  290. vertical-align: middle;
  291. margin-top: 8rpx;
  292. width: 550rpx;
  293. }
  294. }
  295. .default-box {
  296. height: 100rpx;
  297. padding: 0 25rpx;
  298. background: #fff;
  299. margin-top: 20rpx;
  300. .title {
  301. font-size: 28rpx;
  302. }
  303. .switch {
  304. transform: scale(0.8);
  305. }
  306. }
  307. // 底部按钮
  308. .foot_box {
  309. .delete-btn {
  310. line-height: 70rpx;
  311. background: linear-gradient(93deg, rgba(208, 19, 37, 1), rgba(237, 60, 48, 1));
  312. box-shadow: 0px 7rpx 6rpx 0px rgba(#ed3c30, 0.22);
  313. font-size: 28rpx;
  314. font-weight: 500;
  315. color: rgba(255, 255, 255, 1);
  316. border-radius: 35rpx;
  317. padding: 0;
  318. margin-right: 20rpx;
  319. }
  320. .save-btn {
  321. line-height: 70rpx;
  322. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  323. border: 1rpx solid rgba(238, 238, 238, 1);
  324. border-radius: 40rpx;
  325. color: rgba(#fff, 0.9);
  326. }
  327. }
  328. </style>