recipientinfo.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  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" style="display: flex;">
  24. <input style="width: 100rpx;" type="text" placeholder="(+86)" v-model="phonecode" />
  25. <text style="margin-right: 20rpx;">-</text>
  26. <input type="text" :placeholder="i18n.pleasePhoneNumber" v-model="phone" />
  27. </view>
  28. </view>
  29. <view class="item u-flex ">
  30. <text class="left">{{i18n.postalCode}}</text>
  31. <view class="right">
  32. <input type="text" :placeholder="i18n.PleacePostalCode" v-model="postalCode" />
  33. </view>
  34. </view>
  35. <view class="item u-flex ">
  36. <text class="left">{{i18n.city}}</text>
  37. <view class="right u-flex u-row-between " style="flex: 1;" @click="openCity">
  38. <input type="text" :placeholder="i18n.selection" disabled="" v-model="cityname" />
  39. <image src="../static/express/next1.png" style="width: 36rpx;height: 36rpx;" mode=""></image>
  40. </view>
  41. </view>
  42. <view class="item u-flex ">
  43. <text class="left">{{i18n.detailed}}</text>
  44. <view class="right">
  45. <input type="area" :placeholder="i18n.sect" v-model="detailed" />
  46. </view>
  47. </view>
  48. <view class="item u-flex ">
  49. <text class="left">{{i18n.companyName}}</text>
  50. <view class="right">
  51. <input type="area" :placeholder="i18n.company" v-model="companyName" />
  52. </view>
  53. </view>
  54. <view class="item u-flex ">
  55. <text class="left">{{i18n.email}}</text>
  56. <view class="right">
  57. <input type="area" :placeholder="i18n.pleaseEmail" v-model="email" />
  58. </view>
  59. </view>
  60. <!-- 默认地址 -->
  61. <view class="u-flex u-row-between" style="margin-top: 22rpx;">
  62. <view class="u-flex">
  63. <view class="">
  64. <u-checkbox-group v-model="checkboxValue1" placement="row" @change="checkboxChange">
  65. <u-checkbox activeColor="red" shape='circle' :customStyle="{marginRight: '4px'}"
  66. :name="active">
  67. </u-checkbox>
  68. </u-checkbox-group>
  69. </view>
  70. <text class="clear">{{i18n.defaultaddress}}</text>
  71. </view>
  72. <text class="clear" @click="clear">
  73. {{i18n.empty}}
  74. </text>
  75. </view>
  76. </view>
  77. <view class="" style="height: 166rpx;"></view>
  78. <view class="bottom">
  79. <view class="btn" @click="submit">
  80. {{i18n.enter}}
  81. </view>
  82. </view>
  83. <!-- 选择省市区 -->
  84. <u-picker :show="show" :columns="cityList" keyName="name" @confirm="countrycConfirm" @cancel="show = false"
  85. :closeOnClickOverlay="true" @close="close"></u-picker>
  86. </view>
  87. </template>
  88. <script>
  89. export default {
  90. data() {
  91. return {
  92. checkboxValue1: [],
  93. active: 1,
  94. addname: '',
  95. addid: '',
  96. show: false,
  97. cityList: [],
  98. cityid: '',
  99. cityname: "",
  100. name: "",
  101. phone: "",
  102. postalCode: "",
  103. detailed: "",
  104. email:"",
  105. companyName: "",
  106. is_default: 0,
  107. phonecode:''
  108. };
  109. },
  110. onLoad(options) {
  111. if (options.id) {
  112. this.addressId = options.id;
  113. this.getAddressDetail(options.id);
  114. }
  115. },
  116. methods: {
  117. //回显数据
  118. getAddressDetail(id) {
  119. uni.$u.http.get(`/api/address/${id}`).then((res) => {
  120. console.log(res);
  121. this.cityname = res.province_name;
  122. this.name = res.name;
  123. this.phone = res.mobile;
  124. this.detailed = res.address;
  125. this.companyName = res.company_name;
  126. this.is_default = res.is_default;
  127. this.addname = res.country_name;
  128. this.email = res.email;
  129. this.addid = res.country_id;
  130. this.cityid = res.province_id;
  131. this.postalCode = res.zip_code;
  132. this.phonecode = res.global_roaming;
  133. if(this.is_default==1){
  134. this.checkboxValue1 = [1]
  135. }else{
  136. this.checkboxValue1 = []
  137. }
  138. });
  139. },
  140. clear() {
  141. this.phone = ''
  142. this.name = ''
  143. this.addid = ''
  144. this.cityid = ''
  145. this.detailed = ''
  146. this.companyName = ''
  147. this.email = ''
  148. this.postalCode = ''
  149. this.is_default = ''
  150. this.checkboxValue1 = []
  151. this.cityname = ''
  152. this.addname = ''
  153. },
  154. //确定
  155. submit() {
  156. const obj = {
  157. mobile: this.phone,
  158. name: this.name,
  159. country_id: this.addid,
  160. province_id: this.cityid,
  161. address: this.detailed,
  162. company_name: this.companyName,
  163. email: this.email,
  164. zip_code: this.postalCode,
  165. is_default: this.is_default,
  166. phonecode:this.phonecode?this.phonecode:'86'
  167. };
  168. if (this.addressId) {
  169. uni.$u.http.put(`/api/address/${this.addressId}`, obj).then((res) => {
  170. const eventchannel = this.getOpenerEventChannel();
  171. eventchannel.emit('bottomadd', res)
  172. uni.navigateBack()
  173. });
  174. } else {
  175. uni.$u.http.post(`/api/address`, obj).then((res) => {
  176. const eventchannel = this.getOpenerEventChannel();
  177. eventchannel.emit('bottomadd', res)
  178. uni.navigateBack()
  179. // console.log(res);
  180. // this.$router.back();
  181. });
  182. }
  183. },
  184. //选择省市区
  185. countrycConfirm(e) {
  186. console.log(e);
  187. this.cityid = e.value[0].id
  188. this.cityname = e.value[0].name
  189. this.show = false;
  190. },
  191. //打开选择城市的弹窗
  192. openCity() {
  193. //判断是否选择国家
  194. if (this.addid) {
  195. this.show = true
  196. //判断选中的国家有没有城市数据
  197. // if (this.cityList[0].length > 0) {
  198. // this.show = true;
  199. // } else {
  200. // uni.$u.toast("该国家没有城市数据,请直接填写详细地址");
  201. // }
  202. } else {
  203. uni.$u.toast(this.i18n.Pleasecountry);
  204. }
  205. },
  206. checkboxChange(n) {
  207. console.log('change', n);
  208. this.checkboxValue1 = n
  209. if (n.length > 0) {
  210. this.is_default = 1
  211. } else {
  212. this.is_default = 0
  213. }
  214. },
  215. //获取国家
  216. tocitychange() {
  217. var that = this
  218. uni.navigateTo({
  219. url: '/pageB/citychange',
  220. events: {
  221. getadd(res) {
  222. console.log(res.id);
  223. that.addid = res.id
  224. that.addname = res.name
  225. that.getCityList()
  226. }
  227. }
  228. })
  229. },
  230. //根据国家获取城市
  231. getCityList() {
  232. uni.$u.http.get(`/api/area/tree?pid=` + this.addid).then((res) => {
  233. this.cityList = [res];
  234. console.log(this.cityList);
  235. });
  236. },
  237. },
  238. computed: {
  239. i18n() {
  240. return this.$t('index')
  241. }
  242. },
  243. onShow() {
  244. uni.setNavigationBarTitle({
  245. title: this.i18n.goods
  246. })
  247. },
  248. }
  249. </script>
  250. <style lang="scss">
  251. .back {
  252. padding: 20rpx 24rpx;
  253. box-sizing: border-box;
  254. .bottom {
  255. width: 750rpx;
  256. height: 166rpx;
  257. background: #FFFFFF;
  258. position: fixed;
  259. bottom: 0;
  260. left: 0;
  261. padding: 18rpx 24rpx;
  262. box-sizing: border-box;
  263. .btn {
  264. width: 702rpx;
  265. height: 88rpx;
  266. background: #F83224;
  267. border-radius: 44rpx;
  268. font-family: PingFangSC, PingFang SC;
  269. font-weight: 500;
  270. font-size: 32rpx;
  271. color: #FFFFFF;
  272. line-height: 88rpx;
  273. text-align: center;
  274. font-style: normal;
  275. }
  276. }
  277. .add {
  278. width: 702rpx;
  279. // height: 160rpx;
  280. background: #FFFFFF;
  281. border-radius: 16rpx;
  282. padding: 24rpx;
  283. box-sizing: border-box;
  284. .addinfo {
  285. font-family: PingFangSC, PingFang SC;
  286. font-weight: 400;
  287. font-size: 24rpx;
  288. color: #222222;
  289. line-height: 34rpx;
  290. text-align: left;
  291. font-style: normal;
  292. }
  293. .name {
  294. font-family: PingFangSC, PingFang SC;
  295. font-weight: 500;
  296. font-size: 28rpx;
  297. color: #333333;
  298. line-height: 40rpx;
  299. text-align: left;
  300. font-style: normal;
  301. }
  302. .phone {
  303. font-family: SFPro, SFPro;
  304. font-weight: 400;
  305. font-size: 24rpx;
  306. color: #333333;
  307. line-height: 28rpx;
  308. text-align: left;
  309. font-style: normal;
  310. margin-left: 16rpx;
  311. }
  312. }
  313. .history {
  314. font-family: PingFangSC, PingFang SC;
  315. font-weight: 500;
  316. font-size: 30rpx;
  317. color: #333333;
  318. line-height: 42rpx;
  319. text-align: left;
  320. font-style: normal;
  321. margin: 28rpx 0 24rpx;
  322. }
  323. .info {
  324. padding: 0 24rpx 28rpx;
  325. box-sizing: border-box;
  326. width: 702rpx;
  327. // height: 742rpx;
  328. background: #FFFFFF;
  329. border-radius: 16rpx;
  330. .clear {
  331. font-family: PingFangSC, PingFang SC;
  332. font-weight: 400;
  333. font-size: 24rpx;
  334. color: #333333;
  335. line-height: 34rpx;
  336. text-align: left;
  337. font-style: normal;
  338. }
  339. .item {
  340. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  341. min-height: 100rpx;
  342. padding: 20rpx 0;
  343. box-sizing: border-box;
  344. .title {
  345. font-family: PingFangSC, PingFang SC;
  346. font-weight: 600;
  347. font-size: 32rpx;
  348. color: #333333;
  349. line-height: 44rpx;
  350. text-align: left;
  351. font-style: normal;
  352. }
  353. .wx {
  354. font-family: PingFangSC, PingFang SC;
  355. font-weight: 400;
  356. font-size: 24rpx;
  357. color: #333333;
  358. line-height: 34rpx;
  359. text-align: left;
  360. font-style: normal;
  361. }
  362. .left {
  363. font-family: PingFangSC, PingFang SC;
  364. font-weight: 400;
  365. font-size: 28rpx;
  366. color: #222222;
  367. line-height: 40rpx;
  368. text-align: left;
  369. font-style: normal;
  370. width: 115rpx;
  371. }
  372. .right {
  373. font-family: PingFangSC, PingFang SC;
  374. font-weight: 400;
  375. font-size: 28rpx;
  376. color: #222222;
  377. line-height: 40rpx;
  378. text-align: left;
  379. font-style: normal;
  380. margin-left: 60rpx;
  381. }
  382. }
  383. }
  384. }
  385. </style>