球星卡微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

157 lines
3.6 KiB

  1. <template>
  2. <view class="flex-col page">
  3. <view class="flex-col group_4">
  4. <view class="flex-col section_2">
  5. <view class="top-group flex-row">
  6. <text class="text_2">收货人</text>
  7. <text class="text_3">请填写收货人姓名</text>
  8. </view>
  9. <view class="top-group flex-row">
  10. <text class="text_4">手机号码</text>
  11. <text class="text_5">请填写收货人手机号码</text>
  12. </view>
  13. <view class="flex-col group_5">
  14. <view class="top-group justify-between">
  15. <view class="flex-row">
  16. <text class="text_6">所在地区</text>
  17. <text class="text_7">请选择所在地区</text>
  18. </view>
  19. <image
  20. src="https://project-user-resource-1256085488.cos.ap-guangzhou.myqcloud.com/62677e395a7e3f03107ffc5f/62677e4a35a7e10011e93a80/16509497893779891395.png"
  21. class="image_6"
  22. />
  23. </view>
  24. <view class="flex-row group_7">
  25. <text class="text_8">详细地址</text>
  26. <text class="text_9">请填写详细地址如道路门牌号楼栋号单元室等</text>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="flex-col group_8">
  31. <view class="flex-col items-center button">
  32. <text>保存</text>
  33. </view>
  34. <view class="section_3"> </view>
  35. </view>
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. export default {
  41. data() {
  42. return {};
  43. },
  44. };
  45. </script>
  46. <style scoped lang="css">
  47. .top-group {
  48. padding: 40rpx 0 38rpx;
  49. border-bottom: solid 2rpx rgb(239, 239, 239);
  50. }
  51. .page {
  52. background-color: #f6f6f6;
  53. width: 100%;
  54. overflow-y: auto;
  55. height: 100%;
  56. }
  57. .group_4 {
  58. padding-top: 2rpx;
  59. flex: 1 1 auto;
  60. overflow-y: auto;
  61. }
  62. .section_2 {
  63. padding: 0 32rpx;
  64. background-color: rgb(255, 255, 255);
  65. }
  66. .group_8 {
  67. margin-top: 64rpx;
  68. padding: 16rpx 32rpx;
  69. color: rgb(231, 162, 63);
  70. font-size: 32rpx;
  71. font-weight: 600;
  72. line-height: 44rpx;
  73. white-space: nowrap;
  74. }
  75. .group_5 {
  76. padding-top: 2rpx;
  77. }
  78. .button {
  79. padding: 24rpx 0;
  80. border-radius: 10rpx;
  81. border: solid 2rpx rgb(231, 162, 63);
  82. }
  83. .section_3 {
  84. margin-top: 706rpx;
  85. align-self: center;
  86. background-color: rgb(0, 0, 0);
  87. border-radius: 4rpx;
  88. width: 196rpx;
  89. height: 8rpx;
  90. }
  91. .text_2 {
  92. color: rgb(51, 51, 51);
  93. font-size: 32rpx;
  94. font-weight: 500;
  95. line-height: 44rpx;
  96. white-space: nowrap;
  97. }
  98. .text_3 {
  99. margin-left: 72rpx;
  100. color: rgb(195, 195, 195);
  101. font-size: 32rpx;
  102. line-height: 44rpx;
  103. white-space: nowrap;
  104. }
  105. .text_4 {
  106. color: rgb(51, 51, 51);
  107. font-size: 32rpx;
  108. font-weight: 500;
  109. line-height: 44rpx;
  110. white-space: nowrap;
  111. }
  112. .text_5 {
  113. margin-left: 40rpx;
  114. color: rgb(195, 195, 195);
  115. font-size: 32rpx;
  116. line-height: 44rpx;
  117. white-space: nowrap;
  118. }
  119. .group_7 {
  120. margin-right: 6rpx;
  121. padding: 40rpx 0;
  122. }
  123. .image_6 {
  124. width: 44rpx;
  125. height: 44rpx;
  126. }
  127. .text_8 {
  128. color: rgb(51, 51, 51);
  129. font-size: 32rpx;
  130. font-weight: 500;
  131. line-height: 44rpx;
  132. white-space: nowrap;
  133. }
  134. .text_9 {
  135. margin-left: 40rpx;
  136. flex: 1 1 auto;
  137. color: rgb(195, 195, 195);
  138. font-size: 32rpx;
  139. line-height: 44rpx;
  140. text-align: left;
  141. }
  142. .text_6 {
  143. color: rgb(51, 51, 51);
  144. font-size: 32rpx;
  145. font-weight: 500;
  146. line-height: 44rpx;
  147. white-space: nowrap;
  148. }
  149. .text_7 {
  150. margin-left: 40rpx;
  151. color: rgb(195, 195, 195);
  152. font-size: 32rpx;
  153. line-height: 44rpx;
  154. white-space: nowrap;
  155. }
  156. </style>