addressbox.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <template>
  2. <view class="popu">
  3. <view class="top hflex acenter jbetween">
  4. <view></view>
  5. <view class="title">选择收货地址</view>
  6. <image src="../static/close.png" mode="aspectFill" @click="close"></image>
  7. </view>
  8. <view class="list vflex">
  9. <u-radio-group placement="column" @change="selectaddress">
  10. <view class="list-item hflex acenter jbetween" v-for="(item,index) in list" :key="index" @click="select(index)">
  11. <view class="hflex acenter jcenter">
  12. <u-radio shape="circle" :name="index" activeColor="#00B0B0"></u-radio>
  13. <view class="left vflex">
  14. <view class="address2">{{item.province}}{{item.city}}{{item.area}}{{item.address}}</view>
  15. <view class="hflex acenter item-bottom">
  16. <text>{{item.name}}</text>
  17. <text class="mobile">{{item.mobile}}</text>
  18. <view class="default" v-if="item.is_default == 1">默认</view>
  19. </view>
  20. </view>
  21. </view>
  22. <image src="../static/edit.png" mode="aspectFill" @click="edit(item)"></image>
  23. </view>
  24. </u-radio-group>
  25. </view>
  26. <view class="btns" @click="toadd">
  27. 新增收货地址
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import $api from '@/static/js/api.js'
  33. export default {
  34. props: {
  35. list: {
  36. typeof: Array,
  37. default: []
  38. }
  39. },
  40. data() {
  41. return {
  42. }
  43. },
  44. onLoad() {
  45. // this.getlist()
  46. },
  47. onShow() {
  48. },
  49. onPullDownRefresh() {
  50. },
  51. onReachBottom() {
  52. },
  53. methods: {
  54. selectaddress(e) {
  55. this.$emit('select',e)
  56. },
  57. select(index) {
  58. this.$emit('select',index)
  59. },
  60. toadd() {
  61. uni.navigateTo({
  62. url: '/pageC/address-add',
  63. })
  64. this.close()
  65. },
  66. close() {
  67. this.$emit('close')
  68. }
  69. }
  70. }
  71. </script>
  72. <style lang="scss">
  73. .popu {
  74. max-height: 70vh;
  75. overflow: auto;
  76. background: #FFFFFF;
  77. border-radius: 28rpx 26rpx 0rpx 0rpx;
  78. padding: 36rpx 28rpx;
  79. position: relative;
  80. .btns {
  81. position: fixed;
  82. bottom: 44rpx;
  83. left: 28rpx;
  84. width: 694rpx;
  85. height: 84rpx;
  86. background: #00B0B0;
  87. border-radius: 42rpx;
  88. text-align: center;
  89. font-size: 32rpx;
  90. font-family: PingFangSC, PingFang SC;
  91. font-weight: 500;
  92. color: #FFFFFF;
  93. line-height: 84rpx;
  94. }
  95. .list {
  96. padding: 0 0 144rpx;
  97. .list-item {
  98. padding: 32rpx 0 28rpx;
  99. border-bottom: 1px solid #F1F7FE;
  100. .left {
  101. max-width: 578rpx;
  102. padding: 0 52rpx 0 20rpx;
  103. .address2 {
  104. font-size: 30rpx;
  105. font-family: PingFangSC, PingFang SC;
  106. font-weight: 600;
  107. color: #222222;
  108. }
  109. .item-bottom {
  110. padding: 14rpx 0 0;
  111. text:first-child {
  112. font-size: 24rpx;
  113. font-family: PingFangSC, PingFang SC;
  114. font-weight: 400;
  115. color: #666666;
  116. }
  117. .mobile {
  118. font-size: 24rpx;
  119. font-family: JDZhengHT, JDZhengHT;
  120. font-weight: 300;
  121. color: #666666;
  122. padding: 0 16rpx 0 28rpx
  123. }
  124. .default {
  125. background: #57C3C2;
  126. border-radius: 4rpx;
  127. font-size: 18rpx;
  128. font-family: PingFangSC, PingFang SC;
  129. font-weight: 400;
  130. color: #FFFFFF;
  131. padding: 2rpx 6rpx;
  132. }
  133. }
  134. }
  135. image {
  136. width: 28rpx;
  137. height: 28rpx;
  138. }
  139. }
  140. }
  141. .top {
  142. padding: 0 0 28rpx;
  143. .title {
  144. font-size: 32rpx;
  145. font-family: PingFangSC, PingFang SC;
  146. font-weight: 500;
  147. color: #333333;
  148. }
  149. image {
  150. width: 44rpx;
  151. height: 44rpx;
  152. }
  153. }
  154. }
  155. </style>