list.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <template>
  2. <view class="content">
  3. <view class="list" v-if="pageList.length > 0">
  4. <block v-for="(item,index) in pageList" :key="index">
  5. <view class="item">
  6. <view class="hflex acenter">
  7. <view class="item_name">{{item.name}}</view>
  8. <view class="item_phone">{{item.phone}}</view>
  9. </view>
  10. <view class="item_addr">{{item.province}} {{item.city}} {{item.area}} {{item.address}}</view>
  11. <view class="hflex acenter jbetween item_bottom">
  12. <view class="hflex acenter" @click="setDefault(item.id)">
  13. <image v-if="item.type == 1" src="/static/images/shop/checked.png" class="item_icon"></image>
  14. <image v-else src="/static/images/shop/check.png" class="item_icon"></image>
  15. <view class="item_phone">设为默认地址</view>
  16. </view>
  17. <view class="hflex acenter">
  18. <view class="hflex acenter" @click="edit(index)" style="padding-right: 28rpx;">
  19. <image src="/static/images/shop/icon_edit.png" class="item_icon"></image>
  20. <view class="icon_text">编辑</view>
  21. </view>
  22. <view class="hflex acenter" @click="detele(item.id)">
  23. <image src="/static/images/shop/icon_detele.png" class="item_icon"></image>
  24. <view class="icon_text">删除</view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </block>
  30. </view>
  31. <view v-else class="vflex acenter jcenter" style="margin-top: 302rpx;">
  32. <image class="no_img" src="/static/images/shop/no_addr.png"></image>
  33. <view class="no_text">暂无地址,请去添加地址</view>
  34. </view>
  35. <view class="bottom">
  36. <view v-if="pageList.length > 0" class="bottom_btn" @click="add">添加收货地址</view>
  37. <view v-else class="bottom_btn" @click="add">+新增收货地址</view>
  38. </view>
  39. <u-modal :show="del_show" title="确定要删除该地址吗?" :showConfirmButton="false">
  40. <view class="model hflex acenter jbetween">
  41. <view class="model_left hflex acenter jcenter" @click="close">取消</view>
  42. <view class="model_right hflex acenter jcenter" @click="sure">确认</view>
  43. </view>
  44. </u-modal>
  45. </view>
  46. </template>
  47. <script>
  48. import $api from '@/static/js/api.js'
  49. var that = ''
  50. export default {
  51. data() {
  52. return {
  53. pageList: [],
  54. del_show: false,
  55. del_id: ''
  56. }
  57. },
  58. onLoad() {
  59. that = this
  60. },
  61. onShow() {
  62. that.getAddress()
  63. },
  64. methods: {
  65. // 获取地址列表
  66. getAddress() {
  67. $api.req({
  68. url: '/data/api.User/address_list'
  69. }, function(res) {
  70. if(res.code == 1) {
  71. that.pageList = res.data.data
  72. }
  73. })
  74. },
  75. // 选择默认地址
  76. setDefault(id) {
  77. for(var i=0;i<that.pageList.length;i++) {
  78. if(id == that.pageList[i].id) {
  79. console.log(i);
  80. that.$set(that.pageList[i],'is_default',1)
  81. } else {
  82. that.$set(that.pageList[i],'is_default',0)
  83. }
  84. }
  85. },
  86. // 添加地址
  87. add() {
  88. $api.jump('/page_shop/pages/address/add')
  89. },
  90. // 删除地址
  91. detele(id) {
  92. that.del_show = true
  93. that.del_id = id
  94. },
  95. edit(index) {
  96. $api.jump('/page_shop/pages/address/add?index=' + index)
  97. },
  98. close() {
  99. that.del_show = false
  100. },
  101. // 确定删除地址
  102. sure() {
  103. $api.req({
  104. url: '/data/api.User/del_address',
  105. data: {
  106. id: that.del_id
  107. }
  108. }, function(res) {
  109. if(res.code == 1) {
  110. $api.info(res.info)
  111. that.getAddress()
  112. that.close()
  113. }
  114. })
  115. }
  116. },
  117. }
  118. </script>
  119. <style lang="scss" scoped>
  120. .content {
  121. background: #F4F4F4;
  122. .list {
  123. width: 100%;
  124. box-sizing: border-box;
  125. padding: 0 30rpx;
  126. .item {
  127. margin-top: 20rpx;
  128. background: #FFFFFF;
  129. border-radius: 12px;
  130. box-sizing: border-box;
  131. padding: 24rpx 20rpx;
  132. .item_name {
  133. font-size: 28rpx;
  134. font-weight: 500;
  135. color: #222222;
  136. line-height: 40rpx;
  137. padding-right: 16rpx;
  138. }
  139. .item_phone {
  140. font-size: 22rpx;
  141. font-weight: 400;
  142. color: #999999;
  143. line-height: 32rpx;
  144. }
  145. .item_addr {
  146. font-size: 24rpx;
  147. font-weight: 400;
  148. color: #444444;
  149. line-height: 34rpx;
  150. padding: 12rpx 0 20rpx;
  151. }
  152. .item_bottom {
  153. padding: 16rpx 0 0;
  154. border-top: 1rpx solid #F1F7FE;
  155. .item_icon {
  156. width: 24rpx;
  157. height: 24rpx;
  158. margin-right: 8rpx;
  159. }
  160. .icon_text {
  161. font-size: 20rpx;
  162. font-weight: 400;
  163. color: #777777;
  164. line-height: 28rpx;
  165. }
  166. }
  167. }
  168. .item:nth-last-child(1) {
  169. margin-bottom: 186rpx;
  170. }
  171. }
  172. .no_img {
  173. width: 200rpx;
  174. height: 200rpx;
  175. }
  176. .no_text {
  177. font-size: 28rpx;
  178. font-weight: 400;
  179. color: #999999;
  180. line-height: 40rpx;
  181. margin-top: 40rpx;
  182. }
  183. .bottom {
  184. width: 100%;
  185. z-index: 9;
  186. position: fixed;
  187. bottom: 0;
  188. height: 166rpx;
  189. background: #FFFFFF;
  190. box-sizing: border-box;
  191. padding: 8rpx 40rpx 74rpx;
  192. .bottom_btn {
  193. width: 100%;
  194. height: 84rpx;
  195. background: #506DFF;
  196. border-radius: 42rpx;
  197. font-size: 36rpx;
  198. font-weight: 500;
  199. color: #FFFFFF;
  200. text-align: center;
  201. line-height: 84rpx;
  202. }
  203. }
  204. .model {
  205. width: 100%;
  206. margin-top: 78rpx;
  207. .model_left {
  208. width: 220rpx;
  209. height: 76rpx;
  210. border-radius: 38rpx;
  211. border: 1px solid #506DFF;
  212. font-size: 32rpx;
  213. font-weight: 400;
  214. color: #506DFF;
  215. line-height: 44rpx;
  216. }
  217. .model_right {
  218. width: 220rpx;
  219. height: 76rpx;
  220. border-radius: 38rpx;
  221. background: #506DFF;
  222. font-size: 32rpx;
  223. font-weight: 400;
  224. color: #fff;
  225. line-height: 44rpx;
  226. }
  227. }
  228. }
  229. </style>