user_address.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. <template>
  2. <view :style="colorStyle">
  3. <view class='address-management' :class='addressList.length < 1 && page > 1 ? "fff":""'>
  4. <view class='line'>
  5. <image src='@/static/images/line.jpg' v-if="addressList.length"></image>
  6. </view>
  7. <radio-group class="radio-group" @change="radioChange" v-if="addressList.length">
  8. <view class='item' v-for="(item,index) in addressList" :key="index">
  9. <view class='address'>
  10. <view class='consignee'>{{$t(`收货人`)}}:{{item.realName}}<text class='phone'>{{item.phone}}</text></view>
  11. <view>{{$t(`收货地址`)}}:{{item.province}}{{item.city}}{{item.district}}{{item.detail}}</view>
  12. </view>
  13. <view class='operation acea-row row-between-wrapper'>
  14. <!-- #ifndef MP -->
  15. <radio class="radio" :value="index.toString()" :checked="item.defaultState ===2">
  16. <text>{{$t(`设为默认`)}}</text>
  17. </radio>
  18. <!-- #endif -->
  19. <!-- #ifdef MP -->
  20. <radio class="radio" :value="index" :checked="item.defaultState ===2">
  21. <text>{{$t(`设为默认`)}}</text>
  22. </radio>
  23. <!-- #endif -->
  24. <view class='acea-row row-middle'>
  25. <view @click='editAddress(item.id)'><text class='iconfont icon-bianji'></text>{{$t(`编辑`)}}</view>
  26. <view @click='delAddress(index)'><text class='iconfont icon-shanchu'></text>{{$t(`删除`)}}</view>
  27. </view>
  28. </view>
  29. </view>
  30. </radio-group>
  31. <view class='loadingicon acea-row row-center-wrapper' v-if="addressList.length">
  32. <text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
  33. </view>
  34. <view class='noCommodity' v-if="addressList.length < 1 && page > 1">
  35. <view class='pictrue'>
  36. <image :src="imgHost + '/statics/images/noAddress.png'"></image>
  37. </view>
  38. </view>
  39. <view style='height:120rpx;'></view>
  40. <view class='footer acea-row row-between-wrapper'>
  41. <view class='addressBnt bg-color on' @click='addAddress'><text
  42. class='iconfont icon-tianjiadizhi'></text>{{$t(`添加新地址`)}}</view>
  43. <!-- #ifdef APP-PLUS -->
  44. <view class='addressBnt bg-color on' @click='addAddress'><text
  45. class='iconfont icon-tianjiadizhi'></text>{{$t(`添加新地址`)}}</view>
  46. <!-- #endif -->
  47. <!-- #ifdef MP-->
  48. <!-- <view class='addressBnt bg-color' @click='addAddress'><text-->
  49. <!-- class='iconfont icon-tianjiadizhi'></text>{{$t(`添加新地址`)}}</view>-->
  50. <!-- <view class='addressBnt wxbnt' @click='getWxAddress'><text class='iconfont icon-weixin2'></text>{{$t(`导入微信地址`)}}-->
  51. <!-- </view>-->
  52. <!-- #endif -->
  53. <!-- #ifdef H5-->
  54. <view class='addressBnt bg-color' :class="this.$wechat.isWeixin()?'':'on'" @click='addAddress'><text
  55. class='iconfont icon-tianjiadizhi'></text>{{$t(`添加新地址`)}}</view>
  56. <view class='addressBnt wxbnt' @click='getAddress' v-if="this.$wechat.isWeixin()"><text
  57. class='iconfont icon-weixin2'></text>{{$t(`导入微信地址`)}}</view>
  58. <!-- #endif -->
  59. </view>
  60. </view>
  61. <!-- #ifdef MP -->
  62. <!-- <authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize> -->
  63. <!-- #endif -->
  64. <!-- #ifndef MP -->
  65. <home></home>
  66. <!-- #endif -->
  67. </view>
  68. </template>
  69. <script>
  70. import {
  71. getAddressList,
  72. setAddressDefault,
  73. delAddress,
  74. editAddress,
  75. postAddress
  76. } from '@/api/user.js';
  77. import {
  78. toLogin
  79. } from '@/libs/login.js';
  80. import {
  81. mapGetters
  82. } from "vuex";
  83. // #ifdef MP
  84. import authorize from '@/components/Authorize';
  85. // #endif
  86. import home from '@/components/home';
  87. import colors from '@/mixins/color.js';
  88. import {HTTP_REQUEST_URL} from '@/config/app';
  89. export default {
  90. components: {
  91. // #ifdef MP
  92. authorize,
  93. // #endif
  94. home
  95. },
  96. mixins:[colors],
  97. data() {
  98. return {
  99. imgHost:HTTP_REQUEST_URL,
  100. addressList: [],
  101. loading: false,
  102. loadend: false,
  103. loadTitle: this.$t(`加载更多`),
  104. page: 1,
  105. limit: 20,
  106. isAuto: false, //没有授权的不会自动授权
  107. isShowAuth: false, //是否隐藏授权
  108. news: '',
  109. unique: '',
  110. num: ""
  111. };
  112. },
  113. computed: mapGetters(['isLogin']),
  114. onLoad(options) {
  115. this.unique = options.unique
  116. this.num = options.num
  117. if (this.isLogin) {
  118. this.cartId = options.cartId || '';
  119. this.pinkId = options.pinkId || 0;
  120. this.couponId = options.couponId || 0;
  121. this.news = options.news || 0;
  122. this.getAddressList(true);
  123. } else {
  124. toLogin();
  125. }
  126. },
  127. onShow: function() {
  128. let that = this;
  129. that.getAddressList(true);
  130. },
  131. methods: {
  132. onLoadFun: function() {
  133. this.getAddressList();
  134. },
  135. // 授权关闭
  136. authColse: function(e) {
  137. this.isShowAuth = e
  138. },
  139. /*
  140. * 导入微信地址(小程序)
  141. */
  142. getWxAddress: function() {
  143. let that = this;
  144. uni.authorize({
  145. scope: 'scope.address',
  146. success: function(res) {
  147. uni.chooseAddress({
  148. success: function(res) {
  149. let addressP = {};
  150. addressP.province = res.provinceName;
  151. addressP.city = res.cityName;
  152. addressP.district = res.countyName;
  153. editAddress({
  154. address: addressP,
  155. is_default: 1,
  156. real_name: res.userName,
  157. post_code: res.postalCode,
  158. phone: res.telNumber,
  159. detail: res.detailInfo,
  160. id: 0,
  161. type: 1
  162. }).then(res => {
  163. that.$util.Tips({
  164. title: that.$t(`添加成功`),
  165. icon: 'success'
  166. }, function() {
  167. that.getAddressList(true);
  168. });
  169. }).catch(err => {
  170. return that.$util.Tips({
  171. title: err
  172. });
  173. });
  174. },
  175. fail: function(res) {
  176. if (res.errMsg == 'chooseAddress:cancel') return that.$util
  177. .Tips({
  178. title: that.$t(`取消选择`)
  179. });
  180. },
  181. })
  182. },
  183. fail: function(res) {
  184. uni.showModal({
  185. title: this.$t(`您已拒绝导入微信地址权限`),
  186. content: this.$t(`是否进入权限管理,调整授权?`),
  187. success(res) {
  188. if (res.confirm) {
  189. uni.openSetting({
  190. success: function(res) {}
  191. });
  192. } else if (res.cancel) {
  193. return that.$util.Tips({
  194. title: that.$t(`已取消`)
  195. });
  196. }
  197. }
  198. })
  199. }
  200. })
  201. },
  202. /*
  203. * 导入微信地址(公众号)
  204. */
  205. getAddress() {
  206. let that = this;
  207. that.$wechat.openAddress().then(userInfo => {
  208. // open();
  209. editAddress({
  210. real_name: userInfo.userName,
  211. phone: userInfo.telNumber,
  212. address: {
  213. province: userInfo.provinceName,
  214. city: userInfo.cityName,
  215. district: userInfo.countryName
  216. },
  217. detail: userInfo.detailInfo,
  218. post_code: userInfo.postalCode,
  219. is_default: 1,
  220. type: 1
  221. })
  222. .then(() => {
  223. that.$util.Tips({
  224. title: that.$t(`添加成功`),
  225. icon: 'success'
  226. }, function() {
  227. // close();
  228. that.getAddressList(true);
  229. });
  230. })
  231. .catch(err => {
  232. // close();
  233. return that.$util.Tips({
  234. title: err || that.$t(`添加失败`)
  235. });
  236. });
  237. });
  238. },
  239. /**
  240. * 获取地址列表
  241. *
  242. */
  243. getAddressList: function(isPage) {
  244. let that = this;
  245. if (isPage) {
  246. that.loadend = false;
  247. that.page = 1;
  248. that.$set(that, 'addressList', []);
  249. };
  250. if (that.loading) return;
  251. if (that.loadend) return;
  252. that.loading = true;
  253. that.loadTitle = '';
  254. getAddressList({
  255. current: that.page,
  256. size: that.limit
  257. }).then(res => {
  258. let list = res.data;
  259. let loadend = list.length < that.limit;
  260. that.addressList = that.$util.SplitArray(list, that.addressList);
  261. that.$set(that, 'addressList', that.addressList);
  262. that.loadend = loadend;
  263. that.loadTitle = loadend ? that.$t(`我也是有底线的`) : that.$t(`加载更多`);
  264. that.page = that.page + 1;
  265. that.loading = false;
  266. }).catch(err => {
  267. that.loading = false;
  268. that.loadTitle = that.$t(`加载更多`)
  269. });
  270. },
  271. /**
  272. * 设置默认地址
  273. */
  274. radioChange: function(e) {
  275. let index = parseInt(e.detail.value),
  276. that = this;
  277. let address = this.addressList[index];
  278. if (address == undefined) return that.$util.Tips({
  279. title: that.$t(`您设置的默认地址不存在!`)
  280. });
  281. setAddressDefault(address.id).then(res => {
  282. for (let i = 0, len = that.addressList.length; i < len; i++) {
  283. if (i == index) that.addressList[i].is_default = true;
  284. else that.addressList[i].is_default = false;
  285. }
  286. that.$util.Tips({
  287. title: that.$t(`设置成功`),
  288. icon: 'success'
  289. }, function() {
  290. that.$set(that, 'addressList', that.addressList);
  291. });
  292. }).catch(err => {
  293. return that.$util.Tips({
  294. title: err
  295. });
  296. });
  297. },
  298. /**
  299. * 编辑地址
  300. */
  301. editAddress: function(id) {
  302. let cartId = this.cartId,
  303. pinkId = this.pinkId,
  304. couponId = this.couponId;
  305. this.cartId = '';
  306. this.pinkId = '';
  307. this.couponId = '';
  308. uni.navigateTo({
  309. url: '/pages/users/user_address/index?id=' + id + '&pinkId=' +
  310. pinkId + '&couponId=' +
  311. couponId + '&new=' + this.news
  312. })
  313. },
  314. /**
  315. * 删除地址
  316. */
  317. delAddress: function(index) {
  318. let that = this,
  319. address = this.addressList[index];
  320. if (address == undefined) return that.$util.Tips({
  321. title: that.$t(`您删除的地址不存在!`)
  322. });
  323. delAddress(address.id).then(res => {
  324. that.$util.Tips({
  325. title: that.$t(`删除成功`),
  326. icon: 'success'
  327. }, function() {
  328. that.addressList.splice(index, 1);
  329. that.$set(that, 'addressList', that.addressList);
  330. });
  331. }).catch(err => {
  332. return that.$util.Tips({
  333. title: err
  334. });
  335. });
  336. },
  337. /**
  338. * 新增地址
  339. */
  340. addAddress: function() {
  341. uni.navigateTo({
  342. url: '/pages/users/user_address/index?' + '&new=' + this.news
  343. })
  344. }
  345. },
  346. onReachBottom: function() {
  347. this.getAddressList();
  348. }
  349. }
  350. </script>
  351. <style>
  352. .address-management.fff {
  353. background-color: #fff;
  354. height: 1300rpx
  355. }
  356. .address-management .line {
  357. width: 100%;
  358. height: 3rpx;
  359. }
  360. .address-management .line image {
  361. width: 100%;
  362. height: 100%;
  363. display: block;
  364. }
  365. .address-management .item {
  366. background-color: #fff;
  367. padding: 0 30rpx;
  368. margin-bottom: 12rpx;
  369. }
  370. .address-management .item .address {
  371. padding: 30rpx 0;
  372. border-bottom: 1rpx solid #eee;
  373. font-size: 28rpx;
  374. color: #282828;
  375. }
  376. .address-management .item .address .consignee {
  377. font-size: 28rpx;
  378. font-weight: bold;
  379. margin-bottom: 8rpx;
  380. }
  381. .address-management .item .address .consignee .phone {
  382. margin-left: 25rpx;
  383. }
  384. .address-management .item .operation {
  385. height: 83rpx;
  386. font-size: 28rpx;
  387. color: #282828;
  388. }
  389. .address-management .item .operation .radio text {
  390. margin-left: 13rpx;
  391. }
  392. .address-management .item .operation .iconfont {
  393. color: #2c2c2c;
  394. font-size: 35rpx;
  395. vertical-align: -2rpx;
  396. margin-right: 10rpx;
  397. }
  398. .address-management .item .operation .iconfont.icon-shanchu {
  399. margin-left: 40rpx;
  400. font-size: 38rpx;
  401. }
  402. .address-management .footer {
  403. position: fixed;
  404. width: 100%;
  405. background-color: #fff;
  406. bottom: 0;
  407. height: 106rpx;
  408. padding: 0 30rpx;
  409. box-sizing: border-box;
  410. }
  411. .address-management .footer .addressBnt {
  412. width: 330rpx;
  413. height: 76rpx;
  414. border-radius: 50rpx;
  415. text-align: center;
  416. line-height: 76rpx;
  417. font-size: 30rpx;
  418. color: #fff;
  419. }
  420. .address-management .footer .addressBnt.on {
  421. width: 690rpx;
  422. margin: 0 auto;
  423. }
  424. .address-management .footer .addressBnt .iconfont {
  425. font-size: 35rpx;
  426. margin-right: 8rpx;
  427. vertical-align: -1rpx;
  428. }
  429. .address-management .footer .addressBnt.wxbnt {
  430. background-color: #fe960f;
  431. }
  432. </style>