Senderinfor.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. <template>
  2. <!-- 填写寄件人信息 -->
  3. <view class="back">
  4. <view class="info">
  5. <view class="item u-flex u-row-between">
  6. <text class="title">填写寄件人信息</text>
  7. <view class="u-flex">
  8. <u-icon name="order" color="rgba(0, 0, 0, 0.6)" size="23"></u-icon>
  9. <text class="wx">微信地址薄</text>
  10. </view>
  11. </view>
  12. <view class="item u-flex ">
  13. <text class="left">姓名</text>
  14. <view class="right">
  15. <input type="text" placeholder="请填写" />
  16. </view>
  17. </view>
  18. <view class="item u-flex ">
  19. <text class="left">手机号</text>
  20. <view class="right">
  21. <input type="text" placeholder="请填写" />
  22. </view>
  23. </view>
  24. <view class="item u-flex ">
  25. <text class="left">省市区</text>
  26. <view class="right">
  27. <input type="text" placeholder="请选择" disabled="" />
  28. </view>
  29. </view>
  30. <view class="item u-flex ">
  31. <text class="left">详细地址</text>
  32. <view class="right">
  33. <input type="area" placeholder="请填写" disabled="" />
  34. </view>
  35. </view>
  36. <view class="item u-flex ">
  37. <input type="area" placeholder="公司名称(选填)" />
  38. </view>
  39. <!-- 默认地址 -->
  40. <view class="u-flex u-row-between" style="margin-top: 22rpx;">
  41. <view class="u-flex">
  42. <view class="">
  43. <u-checkbox-group v-model="checkboxValue1" placement="row" @change="checkboxChange">
  44. <u-checkbox shape='circle' :customStyle="{marginRight: '4px'}" :name="name">
  45. </u-checkbox>
  46. </u-checkbox-group>
  47. </view>
  48. <text class="clear">默认寄件地址</text>
  49. </view>
  50. <text class="clear">
  51. 清空
  52. </text>
  53. </view>
  54. </view>
  55. <view class="history">历史地址</view>
  56. <view class="add">
  57. <view class="">
  58. <text class="name">陈盼盼</text>
  59. <text class="phone">176****3298</text>
  60. </view>
  61. <view class="addinfo">江苏省南京市浦口区浦口大道东方万汇城北区</view>
  62. </view>
  63. <view class="bottom">
  64. <view class="btn">
  65. 确定
  66. </view>
  67. </view>
  68. </view>
  69. </template>
  70. <script>
  71. export default {
  72. data() {
  73. return {
  74. checkboxValue1: [],
  75. name: 1
  76. };
  77. },
  78. methods: {
  79. checkboxChange(n) {
  80. console.log('change', n);
  81. }
  82. }
  83. }
  84. </script>
  85. <style lang="scss">
  86. .back {
  87. padding: 20rpx 24rpx;
  88. box-sizing: border-box;
  89. .bottom {
  90. width: 750rpx;
  91. height: 166rpx;
  92. background: #FFFFFF;
  93. position: fixed;
  94. bottom: 0;
  95. left: 0;
  96. padding: 18rpx 24rpx;
  97. box-sizing: border-box;
  98. .btn {
  99. width: 702rpx;
  100. height: 88rpx;
  101. background: #F83224;
  102. border-radius: 44rpx;
  103. font-family: PingFangSC, PingFang SC;
  104. font-weight: 500;
  105. font-size: 32rpx;
  106. color: #FFFFFF;
  107. line-height: 88rpx;
  108. text-align: center;
  109. font-style: normal;
  110. }
  111. }
  112. .add {
  113. width: 702rpx;
  114. // height: 160rpx;
  115. background: #FFFFFF;
  116. border-radius: 16rpx;
  117. padding: 24rpx;
  118. box-sizing: border-box;
  119. .addinfo {
  120. font-family: PingFangSC, PingFang SC;
  121. font-weight: 400;
  122. font-size: 24rpx;
  123. color: #222222;
  124. line-height: 34rpx;
  125. text-align: left;
  126. font-style: normal;
  127. }
  128. .name {
  129. font-family: PingFangSC, PingFang SC;
  130. font-weight: 500;
  131. font-size: 28rpx;
  132. color: #333333;
  133. line-height: 40rpx;
  134. text-align: left;
  135. font-style: normal;
  136. }
  137. .phone {
  138. font-family: SFPro, SFPro;
  139. font-weight: 400;
  140. font-size: 24rpx;
  141. color: #333333;
  142. line-height: 28rpx;
  143. text-align: left;
  144. font-style: normal;
  145. margin-left: 16rpx;
  146. }
  147. }
  148. .history {
  149. font-family: PingFangSC, PingFang SC;
  150. font-weight: 500;
  151. font-size: 30rpx;
  152. color: #333333;
  153. line-height: 42rpx;
  154. text-align: left;
  155. font-style: normal;
  156. margin: 28rpx 0 24rpx;
  157. }
  158. .info {
  159. padding: 28rpx 24rpx;
  160. box-sizing: border-box;
  161. width: 702rpx;
  162. // height: 742rpx;
  163. background: #FFFFFF;
  164. border-radius: 16rpx;
  165. .clear {
  166. font-family: PingFangSC, PingFang SC;
  167. font-weight: 400;
  168. font-size: 24rpx;
  169. color: #333333;
  170. line-height: 34rpx;
  171. text-align: left;
  172. font-style: normal;
  173. }
  174. .item {
  175. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  176. height: 100rpx;
  177. line-height: 100rpx;
  178. .title {
  179. font-family: PingFangSC, PingFang SC;
  180. font-weight: 600;
  181. font-size: 32rpx;
  182. color: #333333;
  183. line-height: 44rpx;
  184. text-align: left;
  185. font-style: normal;
  186. }
  187. .wx {
  188. font-family: PingFangSC, PingFang SC;
  189. font-weight: 400;
  190. font-size: 24rpx;
  191. color: #333333;
  192. line-height: 34rpx;
  193. text-align: left;
  194. font-style: normal;
  195. }
  196. .left {
  197. font-family: PingFangSC, PingFang SC;
  198. font-weight: 400;
  199. font-size: 28rpx;
  200. color: #222222;
  201. line-height: 40rpx;
  202. text-align: left;
  203. font-style: normal;
  204. width: 115rpx;
  205. }
  206. .right {
  207. font-family: PingFangSC, PingFang SC;
  208. font-weight: 400;
  209. font-size: 28rpx;
  210. color: #222222;
  211. line-height: 40rpx;
  212. text-align: left;
  213. font-style: normal;
  214. margin-left: 60rpx;
  215. }
  216. }
  217. }
  218. }
  219. </style>