recipientinfo.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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 " @click="tocitychange">
  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" v-model="addname" />
  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="i18n.name" v-model="name" />
  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" v-model="phone" />
  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" v-model="postalCode" />
  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;" @click="openCity">
  36. <input type="text" :placeholder="i18n.selection" disabled="" v-model="cityname" />
  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" v-model="detailed" />
  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" v-model="companyName" />
  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" v-model="email" />
  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="active">
  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" @click="submit">
  77. {{i18n.enter}}
  78. </view>
  79. </view>
  80. <!-- 选择省市区 -->
  81. <u-picker :show="show" :columns="cityList" keyName="name" @confirm="countrycConfirm" @cancel="show = false"
  82. :closeOnClickOverlay="true" @close="close"></u-picker>
  83. </view>
  84. </template>
  85. <script>
  86. export default {
  87. data() {
  88. return {
  89. checkboxValue1: [],
  90. active: 1,
  91. addname: '',
  92. addid: '',
  93. show: false,
  94. cityList: [],
  95. cityid: '',
  96. cityname: "",
  97. name: "",
  98. phone: "",
  99. postalCode: "",
  100. detailed: "",
  101. email: "",
  102. companyName: "",
  103. is_default:0
  104. };
  105. },
  106. methods: {
  107. //确定
  108. submit() {
  109. const obj = {
  110. mobile: this.phone,
  111. name: this.name,
  112. country_id: this.addid,
  113. province_id: this.cityid,
  114. address: this.detailed,
  115. company_name: this.companyName,
  116. email: this.email,
  117. zip_code: this.postalCodee,
  118. is_default:this.is_default
  119. };
  120. uni.$u.http.post(`/api/address`, obj).then((res) => {
  121. console.log(res);
  122. // this.$router.back();
  123. });
  124. },
  125. //选择省市区
  126. countrycConfirm(e) {
  127. console.log(e);
  128. this.cityid = e.value[0].id
  129. this.cityname = e.value[0].name
  130. this.show = false;
  131. },
  132. //打开选择城市的弹窗
  133. openCity() {
  134. //判断是否选择国家
  135. if (this.addid) {
  136. this.show = true
  137. //判断选中的国家有没有城市数据
  138. // if (this.cityList[0].length > 0) {
  139. // this.show = true;
  140. // } else {
  141. // uni.$u.toast("该国家没有城市数据,请直接填写详细地址");
  142. // }
  143. } else {
  144. uni.$u.toast("请先选择国家");
  145. }
  146. },
  147. checkboxChange(n) {
  148. console.log('change', n);
  149. if(n.length>0){
  150. this.is_default = 1
  151. }else{
  152. this.is_default = 0
  153. }
  154. },
  155. //获取国家
  156. tocitychange() {
  157. var that = this
  158. uni.navigateTo({
  159. url: '/pageB/citychange',
  160. events: {
  161. getadd(res) {
  162. console.log(res.id);
  163. that.addid = res.id
  164. that.addname = res.name
  165. that.getCityList()
  166. }
  167. }
  168. })
  169. },
  170. //根据国家获取城市
  171. getCityList() {
  172. uni.$u.http.get(`/api/area/tree?pid=` + this.addid).then((res) => {
  173. this.cityList = [res];
  174. console.log(this.cityList);
  175. });
  176. },
  177. },
  178. computed: {
  179. i18n() {
  180. return this.$t('index')
  181. }
  182. },
  183. onShow() {
  184. uni.setNavigationBarTitle({
  185. title: this.i18n.goods
  186. })
  187. },
  188. }
  189. </script>
  190. <style lang="scss">
  191. .back {
  192. padding: 20rpx 24rpx;
  193. box-sizing: border-box;
  194. .bottom {
  195. width: 750rpx;
  196. height: 166rpx;
  197. background: #FFFFFF;
  198. position: fixed;
  199. bottom: 0;
  200. left: 0;
  201. padding: 18rpx 24rpx;
  202. box-sizing: border-box;
  203. .btn {
  204. width: 702rpx;
  205. height: 88rpx;
  206. background: #F83224;
  207. border-radius: 44rpx;
  208. font-family: PingFangSC, PingFang SC;
  209. font-weight: 500;
  210. font-size: 32rpx;
  211. color: #FFFFFF;
  212. line-height: 88rpx;
  213. text-align: center;
  214. font-style: normal;
  215. }
  216. }
  217. .add {
  218. width: 702rpx;
  219. // height: 160rpx;
  220. background: #FFFFFF;
  221. border-radius: 16rpx;
  222. padding: 24rpx;
  223. box-sizing: border-box;
  224. .addinfo {
  225. font-family: PingFangSC, PingFang SC;
  226. font-weight: 400;
  227. font-size: 24rpx;
  228. color: #222222;
  229. line-height: 34rpx;
  230. text-align: left;
  231. font-style: normal;
  232. }
  233. .name {
  234. font-family: PingFangSC, PingFang SC;
  235. font-weight: 500;
  236. font-size: 28rpx;
  237. color: #333333;
  238. line-height: 40rpx;
  239. text-align: left;
  240. font-style: normal;
  241. }
  242. .phone {
  243. font-family: SFPro, SFPro;
  244. font-weight: 400;
  245. font-size: 24rpx;
  246. color: #333333;
  247. line-height: 28rpx;
  248. text-align: left;
  249. font-style: normal;
  250. margin-left: 16rpx;
  251. }
  252. }
  253. .history {
  254. font-family: PingFangSC, PingFang SC;
  255. font-weight: 500;
  256. font-size: 30rpx;
  257. color: #333333;
  258. line-height: 42rpx;
  259. text-align: left;
  260. font-style: normal;
  261. margin: 28rpx 0 24rpx;
  262. }
  263. .info {
  264. padding: 0 24rpx 28rpx;
  265. box-sizing: border-box;
  266. width: 702rpx;
  267. // height: 742rpx;
  268. background: #FFFFFF;
  269. border-radius: 16rpx;
  270. .clear {
  271. font-family: PingFangSC, PingFang SC;
  272. font-weight: 400;
  273. font-size: 24rpx;
  274. color: #333333;
  275. line-height: 34rpx;
  276. text-align: left;
  277. font-style: normal;
  278. }
  279. .item {
  280. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  281. min-height: 100rpx;
  282. padding: 20rpx 0;
  283. box-sizing: border-box;
  284. .title {
  285. font-family: PingFangSC, PingFang SC;
  286. font-weight: 600;
  287. font-size: 32rpx;
  288. color: #333333;
  289. line-height: 44rpx;
  290. text-align: left;
  291. font-style: normal;
  292. }
  293. .wx {
  294. font-family: PingFangSC, PingFang SC;
  295. font-weight: 400;
  296. font-size: 24rpx;
  297. color: #333333;
  298. line-height: 34rpx;
  299. text-align: left;
  300. font-style: normal;
  301. }
  302. .left {
  303. font-family: PingFangSC, PingFang SC;
  304. font-weight: 400;
  305. font-size: 28rpx;
  306. color: #222222;
  307. line-height: 40rpx;
  308. text-align: left;
  309. font-style: normal;
  310. width: 115rpx;
  311. }
  312. .right {
  313. font-family: PingFangSC, PingFang SC;
  314. font-weight: 400;
  315. font-size: 28rpx;
  316. color: #222222;
  317. line-height: 40rpx;
  318. text-align: left;
  319. font-style: normal;
  320. margin-left: 60rpx;
  321. }
  322. }
  323. }
  324. }
  325. </style>