recipientinfo.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <template>
  2. <!-- 填写收件人信息 -->
  3. <view class="back">
  4. <view class="info">
  5. <view class="item u-flex u-row-between">
  6. <text class="title">{{i18n.goods}}</text>
  7. </view>
  8. <view class="item u-flex ">
  9. <text class="left">{{i18n.country}}</text>
  10. <view class="right u-flex u-row-between" style="flex: 1;">
  11. <input type="text" :placeholder="i18n.selection" />
  12. <image src="../static/express/next1.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  13. </view>
  14. </view>
  15. <view class="item u-flex ">
  16. <text class="left">{{i18n.name}}</text>
  17. <view class="right">
  18. <input type="text" placeholder="请输入收件人姓名" />
  19. </view>
  20. </view>
  21. <view class="item u-flex ">
  22. <text class="left">{{i18n.phone}}</text>
  23. <view class="right">
  24. <input type="text" :placeholder="i18n.pleasePhoneNumber" />
  25. </view>
  26. </view>
  27. <view class="item u-flex ">
  28. <text class="left">{{i18n.postalCode}}</text>
  29. <view class="right">
  30. <input type="text" :placeholder="i18n.PleacePostalCode" />
  31. </view>
  32. </view>
  33. <view class="item u-flex ">
  34. <text class="left">{{i18n.city}}</text>
  35. <view class="right u-flex u-row-between " style="flex: 1;">
  36. <input type="text" :placeholder="i18n.selection" disabled="" />
  37. <image src="../static/express/next1.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  38. </view>
  39. </view>
  40. <view class="item u-flex ">
  41. <text class="left">{{i18n.detailed}}</text>
  42. <view class="right">
  43. <input type="area" :placeholder="i18n.sect" />
  44. </view>
  45. </view>
  46. <view class="item u-flex ">
  47. <text class="left">{{i18n.companyName}}</text>
  48. <view class="right">
  49. <input type="area" :placeholder="i18n.company" />
  50. </view>
  51. </view>
  52. <view class="item u-flex ">
  53. <text class="left">{{i18n.email}}</text>
  54. <view class="right">
  55. <input type="area" :placeholder="i18n.pleaseEmail" />
  56. </view>
  57. </view>
  58. <!-- 默认地址 -->
  59. <view class="u-flex u-row-between" style="margin-top: 22rpx;">
  60. <view class="u-flex">
  61. <view class="">
  62. <u-checkbox-group v-model="checkboxValue1" placement="row" @change="checkboxChange">
  63. <u-checkbox shape='circle' :customStyle="{marginRight: '4px'}" :name="name">
  64. </u-checkbox>
  65. </u-checkbox-group>
  66. </view>
  67. <text class="clear">{{i18n.addressBook}}</text>
  68. </view>
  69. <text class="clear">
  70. {{i18n.empty}}
  71. </text>
  72. </view>
  73. </view>
  74. <view class="" style="height: 166rpx;"></view>
  75. <view class="bottom">
  76. <view class="btn">
  77. {{i18n.enter}}
  78. </view>
  79. </view>
  80. </view>
  81. </template>
  82. <script>
  83. export default {
  84. data() {
  85. return {
  86. checkboxValue1: [],
  87. name: 1
  88. };
  89. },
  90. methods: {
  91. checkboxChange(n) {
  92. console.log('change', n);
  93. }
  94. },
  95. computed: {
  96. i18n() {
  97. return this.$t('index')
  98. }
  99. },
  100. onShow() {
  101. uni.setNavigationBarTitle({
  102. title: this.i18n.goods
  103. })
  104. },
  105. }
  106. </script>
  107. <style lang="scss">
  108. .back {
  109. padding: 20rpx 24rpx;
  110. box-sizing: border-box;
  111. .bottom {
  112. width: 750rpx;
  113. height: 166rpx;
  114. background: #FFFFFF;
  115. position: fixed;
  116. bottom: 0;
  117. left: 0;
  118. padding: 18rpx 24rpx;
  119. box-sizing: border-box;
  120. .btn {
  121. width: 702rpx;
  122. height: 88rpx;
  123. background: #F83224;
  124. border-radius: 44rpx;
  125. font-family: PingFangSC, PingFang SC;
  126. font-weight: 500;
  127. font-size: 32rpx;
  128. color: #FFFFFF;
  129. line-height: 88rpx;
  130. text-align: center;
  131. font-style: normal;
  132. }
  133. }
  134. .add {
  135. width: 702rpx;
  136. // height: 160rpx;
  137. background: #FFFFFF;
  138. border-radius: 16rpx;
  139. padding: 24rpx;
  140. box-sizing: border-box;
  141. .addinfo {
  142. font-family: PingFangSC, PingFang SC;
  143. font-weight: 400;
  144. font-size: 24rpx;
  145. color: #222222;
  146. line-height: 34rpx;
  147. text-align: left;
  148. font-style: normal;
  149. }
  150. .name {
  151. font-family: PingFangSC, PingFang SC;
  152. font-weight: 500;
  153. font-size: 28rpx;
  154. color: #333333;
  155. line-height: 40rpx;
  156. text-align: left;
  157. font-style: normal;
  158. }
  159. .phone {
  160. font-family: SFPro, SFPro;
  161. font-weight: 400;
  162. font-size: 24rpx;
  163. color: #333333;
  164. line-height: 28rpx;
  165. text-align: left;
  166. font-style: normal;
  167. margin-left: 16rpx;
  168. }
  169. }
  170. .history {
  171. font-family: PingFangSC, PingFang SC;
  172. font-weight: 500;
  173. font-size: 30rpx;
  174. color: #333333;
  175. line-height: 42rpx;
  176. text-align: left;
  177. font-style: normal;
  178. margin: 28rpx 0 24rpx;
  179. }
  180. .info {
  181. padding: 0 24rpx 28rpx;
  182. box-sizing: border-box;
  183. width: 702rpx;
  184. // height: 742rpx;
  185. background: #FFFFFF;
  186. border-radius: 16rpx;
  187. .clear {
  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. .item {
  197. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  198. min-height: 100rpx;
  199. padding: 20rpx 0;
  200. box-sizing: border-box;
  201. .title {
  202. font-family: PingFangSC, PingFang SC;
  203. font-weight: 600;
  204. font-size: 32rpx;
  205. color: #333333;
  206. line-height: 44rpx;
  207. text-align: left;
  208. font-style: normal;
  209. }
  210. .wx {
  211. font-family: PingFangSC, PingFang SC;
  212. font-weight: 400;
  213. font-size: 24rpx;
  214. color: #333333;
  215. line-height: 34rpx;
  216. text-align: left;
  217. font-style: normal;
  218. }
  219. .left {
  220. font-family: PingFangSC, PingFang SC;
  221. font-weight: 400;
  222. font-size: 28rpx;
  223. color: #222222;
  224. line-height: 40rpx;
  225. text-align: left;
  226. font-style: normal;
  227. width: 115rpx;
  228. }
  229. .right {
  230. font-family: PingFangSC, PingFang SC;
  231. font-weight: 400;
  232. font-size: 28rpx;
  233. color: #222222;
  234. line-height: 40rpx;
  235. text-align: left;
  236. font-style: normal;
  237. margin-left: 60rpx;
  238. }
  239. }
  240. }
  241. }
  242. </style>