address.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <view class="page">
  3. <view class="" v-if="false">
  4. <view class="top">
  5. <view class="item">
  6. <u-input :clearable='false' v-model="value" :type="type" height='110' placeholder='收货人' />
  7. </view>
  8. <view class="item">
  9. <u-input :clearable='false' v-model="value" :type="type" height='110' placeholder='手机号码' />
  10. </view>
  11. <view class="item u-flex u-row-between">
  12. <u-input :clearable='false' v-model="value" :type="type" height='110' placeholder='所在地区' />
  13. <u-icon name="arrow-right" color="#000" size="26"></u-icon>
  14. </view>
  15. <view class="">
  16. <u-input :clearable='false' v-model="value" :type="type1" placeholder='详细地址:道路,门牌号,小区,楼栋号,单元室' />
  17. </view>
  18. </view>
  19. <view class="moren u-flex u-row-between">
  20. <view class="mo">设为默认</view>
  21. <u-switch v-model="checked" inactive-color="#eee"></u-switch>
  22. </view>
  23. <view class="button">
  24. 保存
  25. </view>
  26. </view>
  27. <view class="address">
  28. <view class="">
  29. <text class='font'>收货人:</text>
  30. <text class='font'>铃铃铃</text>
  31. <text class='font' style="margin-left: 26rpx;">189456478914</text>
  32. </view>
  33. <view class="add">
  34. 山东省临沂市兰山区IEC国际企业中心
  35. </view>
  36. <u-radio-group v-model="value" >
  37. <view class="u-flex u-row-between mor">
  38. <view class="u-flex">
  39. <u-radio @change="radioChange">
  40. </u-radio>
  41. <text class="address_font">默认地址</text>
  42. </view>
  43. <view class="u-flex">
  44. <view class="">
  45. <u-icon name="order" color="#BBBBBB" size="28"></u-icon>
  46. <text>编辑</text>
  47. </view>
  48. <view class="" style="margin-left: 32rpx;">
  49. <u-icon name="trash" color="#BBBBBB" size="28"></u-icon>
  50. <text>删除</text>
  51. </view>
  52. </view>
  53. </view>
  54. </u-radio-group>
  55. <view class="button1">
  56. 添加地址
  57. </view>
  58. </view>
  59. </view>
  60. </template>
  61. <script>
  62. export default {
  63. data() {
  64. return {
  65. type: 'text',
  66. type1: 'textarea',
  67. checked: 'true'
  68. };
  69. }
  70. }
  71. </script>
  72. <style lang="scss">
  73. .address_font {
  74. font-size: 26rpx;
  75. font-family: PingFang SC;
  76. font-weight: 400;
  77. line-height: 49rpx;
  78. color: #8FD3F3;
  79. }
  80. .address {
  81. padding: 30rpx 24rpx 26rpx;
  82. width: 750rpx;
  83. height: 268rpx;
  84. background: rgba(255, 255, 255, 1);
  85. .font {
  86. font-size: 28rpx;
  87. font-family: PingFang SC;
  88. font-weight: 400;
  89. line-height: 40rpx;
  90. color: #323332;
  91. }
  92. .add {
  93. font-size: 26rpx;
  94. font-family: PingFang SC;
  95. font-weight: 400;
  96. line-height: 49rpx;
  97. color: #BBBBBB;
  98. margin-top: 20rpx;
  99. }
  100. .mor {
  101. border-top: 1px solid #C7C7C7;
  102. margin-top: 38rpx;
  103. padding-top: 30rpx;
  104. }
  105. }
  106. .mo {
  107. font-size: 28rpx;
  108. font-family: PingFang SC;
  109. font-weight: 400;
  110. line-height: 48rpx;
  111. color: #212121;
  112. }
  113. .button {
  114. width: 702rpx;
  115. height: 90rpx;
  116. background: rgba(228, 228, 228, 1);
  117. border-radius: 46rpx;
  118. position: fixed;
  119. left: 22rpx;
  120. bottom: 34rpx;
  121. font-size: 32rpx;
  122. font-family: PingFang SC;
  123. font-weight: 400;
  124. line-height: 90rpx;
  125. color: #FFFFFF;
  126. text-align: center;
  127. }
  128. .button1 {
  129. width: 702rpx;
  130. height: 90rpx;
  131. background: rgba(143, 211, 243, 1);
  132. border-radius: 46rpx;
  133. position: fixed;
  134. left: 22rpx;
  135. bottom: 34rpx;
  136. font-size: 32rpx;
  137. font-family: PingFang SC;
  138. font-weight: 600;
  139. line-height: 90rpx;
  140. color: #FFFFFF;
  141. text-align: center;
  142. }
  143. .item {
  144. width: 702rpx;
  145. height: 110rpx;
  146. // line-height: 110rpx;
  147. border-bottom: 1px solid #C7C7C7;
  148. }
  149. .page {
  150. width: 750rpx;
  151. height: 1334rpx;
  152. background: rgba(247, 246, 251, 1);
  153. padding: 30rpx 0 34rpx 0;
  154. }
  155. .top {
  156. width: 750rpx;
  157. height: 484rpx;
  158. background: rgba(255, 255, 255, 1);
  159. padding: 0 22rpx;
  160. }
  161. .moren {
  162. width: 748rpx;
  163. height: 112rpx;
  164. background: rgba(255, 255, 255, 1);
  165. margin-top: 30rpx;
  166. padding: 40rpx 64rpx 42rpx 22rpx;
  167. }
  168. </style>