Senderinfor.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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.senderinfo}}</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">{{i18n.wxAddress}}</text>
  10. </view>
  11. </view>
  12. <view class="item u-flex ">
  13. <text class="left">{{i18n.name}}</text>
  14. <view class="right">
  15. <input type="text" :placeholder="i18n.Fill" />
  16. </view>
  17. </view>
  18. <view class="item u-flex ">
  19. <text class="left">{{i18n.phone}}</text>
  20. <view class="right">
  21. <input type="text" :placeholder="i18n.Fill" />
  22. </view>
  23. </view>
  24. <view class="item u-flex ">
  25. <text class="left">{{i18n.city}}</text>
  26. <view class="right">
  27. <input type="text" :placeholder="i18n.selection" disabled="" />
  28. </view>
  29. </view>
  30. <view class="item u-flex ">
  31. <text class="left">{{i18n.detailed}}</text>
  32. <view class="right">
  33. <input type="area" :placeholder="i18n.Fill" disabled="" />
  34. </view>
  35. </view>
  36. <view class="item u-flex ">
  37. <input type="area" :placeholder="i18n.company" />
  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">{{i18n.initial}}</text>
  49. </view>
  50. <text class="clear">
  51. {{i18n.empty}}
  52. </text>
  53. </view>
  54. </view>
  55. <view class="history">{{i18n.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. {{i18n.enter}}
  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. computed: {
  79. i18n() {
  80. return this.$t('index')
  81. }
  82. },
  83. onShow() {
  84. uni.setNavigationBarTitle({
  85. title: this.i18n.goods
  86. })
  87. },
  88. methods: {
  89. addadress() {
  90. const obj = {
  91. mobile: this.model1.userInfo.phone,
  92. name: this.model1.userInfo.name,
  93. is_default: this.model1.userInfo.is_default ? 1 : 0,
  94. company_name: this.model1.userInfo.company,
  95. address: this.model1.userInfo.detailed,
  96. country_id: this.model1.userInfo.country_id,
  97. };
  98. uni.$u.http
  99. .post(`/api/address`, {
  100. ...obj,
  101. ...this.cityPid
  102. })
  103. .then((res) => {
  104. console.log(res);
  105. uni.navigateBack({
  106. delta: 1,
  107. });
  108. })
  109. .catch(() => {});
  110. },
  111. checkboxChange(n) {
  112. console.log('change', n);
  113. }
  114. }
  115. }
  116. </script>
  117. <style lang="scss">
  118. .back {
  119. padding: 20rpx 24rpx;
  120. box-sizing: border-box;
  121. .bottom {
  122. width: 750rpx;
  123. height: 166rpx;
  124. background: #FFFFFF;
  125. position: fixed;
  126. bottom: 0;
  127. left: 0;
  128. padding: 18rpx 24rpx;
  129. box-sizing: border-box;
  130. .btn {
  131. width: 702rpx;
  132. height: 88rpx;
  133. background: #F83224;
  134. border-radius: 44rpx;
  135. font-family: PingFangSC, PingFang SC;
  136. font-weight: 500;
  137. font-size: 32rpx;
  138. color: #FFFFFF;
  139. line-height: 88rpx;
  140. text-align: center;
  141. font-style: normal;
  142. }
  143. }
  144. .add {
  145. width: 702rpx;
  146. // height: 160rpx;
  147. background: #FFFFFF;
  148. border-radius: 16rpx;
  149. padding: 24rpx;
  150. box-sizing: border-box;
  151. .addinfo {
  152. font-family: PingFangSC, PingFang SC;
  153. font-weight: 400;
  154. font-size: 24rpx;
  155. color: #222222;
  156. line-height: 34rpx;
  157. text-align: left;
  158. font-style: normal;
  159. }
  160. .name {
  161. font-family: PingFangSC, PingFang SC;
  162. font-weight: 500;
  163. font-size: 28rpx;
  164. color: #333333;
  165. line-height: 40rpx;
  166. text-align: left;
  167. font-style: normal;
  168. }
  169. .phone {
  170. font-family: SFPro, SFPro;
  171. font-weight: 400;
  172. font-size: 24rpx;
  173. color: #333333;
  174. line-height: 28rpx;
  175. text-align: left;
  176. font-style: normal;
  177. margin-left: 16rpx;
  178. }
  179. }
  180. .history {
  181. font-family: PingFangSC, PingFang SC;
  182. font-weight: 500;
  183. font-size: 30rpx;
  184. color: #333333;
  185. line-height: 42rpx;
  186. text-align: left;
  187. font-style: normal;
  188. margin: 28rpx 0 24rpx;
  189. }
  190. .info {
  191. padding: 28rpx 24rpx;
  192. box-sizing: border-box;
  193. width: 702rpx;
  194. // height: 742rpx;
  195. background: #FFFFFF;
  196. border-radius: 16rpx;
  197. .clear {
  198. font-family: PingFangSC, PingFang SC;
  199. font-weight: 400;
  200. font-size: 24rpx;
  201. color: #333333;
  202. line-height: 34rpx;
  203. text-align: left;
  204. font-style: normal;
  205. }
  206. .item {
  207. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  208. // height: 100rpx;
  209. min-height: 100rpx;
  210. padding: 20rpx 0;
  211. box-sizing: border-box;
  212. .title {
  213. font-family: PingFangSC, PingFang SC;
  214. font-weight: 600;
  215. font-size: 32rpx;
  216. color: #333333;
  217. line-height: 44rpx;
  218. text-align: left;
  219. font-style: normal;
  220. }
  221. .wx {
  222. font-family: PingFangSC, PingFang SC;
  223. font-weight: 400;
  224. font-size: 24rpx;
  225. color: #333333;
  226. line-height: 34rpx;
  227. text-align: left;
  228. font-style: normal;
  229. }
  230. .left {
  231. font-family: PingFangSC, PingFang SC;
  232. font-weight: 400;
  233. font-size: 28rpx;
  234. color: #222222;
  235. line-height: 40rpx;
  236. text-align: left;
  237. font-style: normal;
  238. width: 160rpx;
  239. }
  240. .right {
  241. font-family: PingFangSC, PingFang SC;
  242. font-weight: 400;
  243. font-size: 28rpx;
  244. color: #222222;
  245. line-height: 40rpx;
  246. text-align: left;
  247. font-style: normal;
  248. margin-left: 60rpx;
  249. }
  250. }
  251. }
  252. }
  253. </style>