address-list.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="address-item hflex acenter jbetween" v-for="(item,index) in list" :key="index">
  5. <view class="left vflex">
  6. <view class="address">{{item.province}}{{item.city}}{{item.area}}{{item.address}}</view>
  7. <view class="hflex acenter item-bottom">
  8. <text>{{item.name}}</text>
  9. <text class="mobile">{{item.mobile}}</text>
  10. <view class="default" v-if="item.is_default == 1">默认</view>
  11. </view>
  12. </view>
  13. <image src="static/edit.png" mode="aspectFill" @click="edit(item)"></image>
  14. </view>
  15. </view>
  16. <view class="add">
  17. <view class="btn" @click="add">添加收货地址</view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import $api from '@/static/js/api.js'
  23. export default {
  24. data() {
  25. return{
  26. list: [],
  27. }
  28. },
  29. onLoad() {
  30. },
  31. onShow() {
  32. this.getlist()
  33. },
  34. methods: {
  35. add() {
  36. uni.navigateTo({
  37. url: '/pageC/address-add'
  38. })
  39. },
  40. edit(item) {
  41. uni.navigateTo({
  42. url: '/pageC/address-add?id=' + item.id
  43. })
  44. },
  45. getlist() {
  46. var _this = this
  47. $api.req({
  48. url: 'address',
  49. method: 'GET',
  50. data: {
  51. is_page: 0
  52. }
  53. }, function(res) {
  54. _this.list = res.data
  55. })
  56. }
  57. }
  58. }
  59. </script>
  60. <style lang="scss">
  61. .content {
  62. background: #F4F4F4;
  63. padding: 20rpx 28rpx;
  64. .add {
  65. position: fixed;
  66. bottom: 0;
  67. left: 0;
  68. width: 750rpx;
  69. background: #FFFFFF;
  70. padding: 12rpx 30rpx 66rpx;
  71. .btn {
  72. width: 690rpx;
  73. height: 88rpx;
  74. background: #00B0B0;
  75. border-radius: 44rpx;
  76. font-size: 32rpx;
  77. font-family: PingFangSC, PingFang SC;
  78. font-weight: 500;
  79. color: #FFFFFF;
  80. line-height: 88rpx;
  81. text-align: center;
  82. }
  83. }
  84. .box {
  85. background: #FFFFFF;
  86. border-radius: 16rpx;
  87. padding: 0 20rpx 0;
  88. .address-item {
  89. padding: 28rpx 0 ;
  90. border-bottom: 1px solid #F1F7FE;
  91. .left {
  92. max-width: 578rpx;
  93. .address {
  94. font-size: 30rpx;
  95. font-family: PingFangSC, PingFang SC;
  96. font-weight: 600;
  97. color: #222222;
  98. }
  99. .item-bottom {
  100. padding: 14rpx 0 0;
  101. text:first-child {
  102. font-size: 24rpx;
  103. font-family: PingFangSC, PingFang SC;
  104. font-weight: 400;
  105. color: #666666;
  106. }
  107. .mobile {
  108. font-size: 24rpx;
  109. font-family: JDZhengHT, JDZhengHT;
  110. font-weight: 300;
  111. color: #666666;
  112. padding: 0 16rpx 0 28rpx
  113. }
  114. .default {
  115. background: #57C3C2;
  116. border-radius: 4rpx;
  117. font-size: 18rpx;
  118. font-family: PingFangSC, PingFang SC;
  119. font-weight: 400;
  120. color: #FFFFFF;
  121. padding: 2rpx 6rpx;
  122. }
  123. }
  124. }
  125. image {
  126. width: 28rpx;
  127. height: 28rpx;
  128. }
  129. }
  130. .address-item:last-child {
  131. border: none;
  132. }
  133. }
  134. }
  135. </style>