user_address.vue 11 KB

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