recipientinfo.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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 activeColor="red" 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" @click="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: [1],
  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. onLoad(options) {
  107. if (options.id) {
  108. this.addressId = options.id;
  109. this.getAddressDetail(options.id);
  110. }
  111. },
  112. methods: {
  113. //回显数据
  114. getAddressDetail(id) {
  115. uni.$u.http.get(`/api/address/${id}`).then((res) => {
  116. console.log(res);
  117. this.cityname = res.province_name;
  118. this.name = res.name;
  119. this.phone = res.mobile;
  120. this.detailed = res.address;
  121. this.companyName = res.company_name;
  122. this.is_default = res.is_default;
  123. this.addname = res.country_name;
  124. this.email = res.email;
  125. this.addid = res.country_id;
  126. this.cityid = res.province_id;
  127. this.postalCode = res.zip_code;
  128. });
  129. },
  130. clear() {
  131. this.phone = ''
  132. this.name = ''
  133. this.addid = ''
  134. this.cityid = ''
  135. this.detailed = ''
  136. this.companyName = ''
  137. this.email = ''
  138. this.postalCodee = ''
  139. this.is_default = ''
  140. this.checkboxValue1 = []
  141. this.cityname = ''
  142. this.addname = ''
  143. },
  144. //确定
  145. enter(){
  146. if(this.is_default==1){
  147. this.submit()
  148. }else{
  149. }
  150. },
  151. submit() {
  152. const obj = {
  153. mobile: this.phone,
  154. name: this.name,
  155. country_id: this.addid,
  156. province_id: this.cityid,
  157. address: this.detailed,
  158. company_name: this.companyName,
  159. email: this.email,
  160. zip_code: this.postalCodee,
  161. // is_default: this.is_default
  162. };
  163. if (this.addressId) {
  164. uni.$u.http.put(`/api/address/${this.addressId}`, obj).then((res) => {
  165. const eventchannel = this.getOpenerEventChannel();
  166. eventchannel.emit('bottomadd', res)
  167. uni.navigateBack()
  168. });
  169. } else {
  170. uni.$u.http.post(`/api/address`, obj).then((res) => {
  171. const eventchannel = this.getOpenerEventChannel();
  172. eventchannel.emit('bottomadd', res)
  173. uni.navigateBack()
  174. // console.log(res);
  175. // this.$router.back();
  176. });
  177. }
  178. uni.$u.http.post(`/api/address`, obj).then((res) => {
  179. const eventchannel = this.getOpenerEventChannel();
  180. eventchannel.emit('bottomadd', res)
  181. uni.navigateBack()
  182. // console.log(res);
  183. // this.$router.back();
  184. });
  185. },
  186. //选择省市区
  187. countrycConfirm(e) {
  188. console.log(e);
  189. this.cityid = e.value[0].id
  190. this.cityname = e.value[0].name
  191. this.show = false;
  192. },
  193. //打开选择城市的弹窗
  194. openCity() {
  195. //判断是否选择国家
  196. if (this.addid) {
  197. this.show = true
  198. //判断选中的国家有没有城市数据
  199. // if (this.cityList[0].length > 0) {
  200. // this.show = true;
  201. // } else {
  202. // uni.$u.toast("该国家没有城市数据,请直接填写详细地址");
  203. // }
  204. } else {
  205. uni.$u.toast(this.i18n.Pleasecountry);
  206. }
  207. },
  208. checkboxChange(n) {
  209. console.log('change', n);
  210. this.checkboxValue1 = n
  211. if (n.length > 0) {
  212. this.is_default = 1
  213. } else {
  214. this.is_default = 0
  215. }
  216. },
  217. //获取国家
  218. tocitychange() {
  219. var that = this
  220. uni.navigateTo({
  221. url: '/pageB/citychange',
  222. events: {
  223. getadd(res) {
  224. console.log(res.id);
  225. that.addid = res.id
  226. that.addname = res.name
  227. that.getCityList()
  228. }
  229. }
  230. })
  231. },
  232. //根据国家获取城市
  233. getCityList() {
  234. uni.$u.http.get(`/api/area/tree?pid=` + this.addid).then((res) => {
  235. this.cityList = [res];
  236. console.log(this.cityList);
  237. });
  238. },
  239. },
  240. computed: {
  241. i18n() {
  242. return this.$t('index')
  243. }
  244. },
  245. onShow() {
  246. uni.setNavigationBarTitle({
  247. title: this.i18n.goods
  248. })
  249. },
  250. }
  251. </script>
  252. <style lang="scss">
  253. .back {
  254. padding: 20rpx 24rpx;
  255. box-sizing: border-box;
  256. .bottom {
  257. width: 750rpx;
  258. height: 166rpx;
  259. background: #FFFFFF;
  260. position: fixed;
  261. bottom: 0;
  262. left: 0;
  263. padding: 18rpx 24rpx;
  264. box-sizing: border-box;
  265. .btn {
  266. width: 702rpx;
  267. height: 88rpx;
  268. background: #F83224;
  269. border-radius: 44rpx;
  270. font-family: PingFangSC, PingFang SC;
  271. font-weight: 500;
  272. font-size: 32rpx;
  273. color: #FFFFFF;
  274. line-height: 88rpx;
  275. text-align: center;
  276. font-style: normal;
  277. }
  278. }
  279. .add {
  280. width: 702rpx;
  281. // height: 160rpx;
  282. background: #FFFFFF;
  283. border-radius: 16rpx;
  284. padding: 24rpx;
  285. box-sizing: border-box;
  286. .addinfo {
  287. font-family: PingFangSC, PingFang SC;
  288. font-weight: 400;
  289. font-size: 24rpx;
  290. color: #222222;
  291. line-height: 34rpx;
  292. text-align: left;
  293. font-style: normal;
  294. }
  295. .name {
  296. font-family: PingFangSC, PingFang SC;
  297. font-weight: 500;
  298. font-size: 28rpx;
  299. color: #333333;
  300. line-height: 40rpx;
  301. text-align: left;
  302. font-style: normal;
  303. }
  304. .phone {
  305. font-family: SFPro, SFPro;
  306. font-weight: 400;
  307. font-size: 24rpx;
  308. color: #333333;
  309. line-height: 28rpx;
  310. text-align: left;
  311. font-style: normal;
  312. margin-left: 16rpx;
  313. }
  314. }
  315. .history {
  316. font-family: PingFangSC, PingFang SC;
  317. font-weight: 500;
  318. font-size: 30rpx;
  319. color: #333333;
  320. line-height: 42rpx;
  321. text-align: left;
  322. font-style: normal;
  323. margin: 28rpx 0 24rpx;
  324. }
  325. .info {
  326. padding: 0 24rpx 28rpx;
  327. box-sizing: border-box;
  328. width: 702rpx;
  329. // height: 742rpx;
  330. background: #FFFFFF;
  331. border-radius: 16rpx;
  332. .clear {
  333. font-family: PingFangSC, PingFang SC;
  334. font-weight: 400;
  335. font-size: 24rpx;
  336. color: #333333;
  337. line-height: 34rpx;
  338. text-align: left;
  339. font-style: normal;
  340. }
  341. .item {
  342. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  343. min-height: 100rpx;
  344. padding: 20rpx 0;
  345. box-sizing: border-box;
  346. .title {
  347. font-family: PingFangSC, PingFang SC;
  348. font-weight: 600;
  349. font-size: 32rpx;
  350. color: #333333;
  351. line-height: 44rpx;
  352. text-align: left;
  353. font-style: normal;
  354. }
  355. .wx {
  356. font-family: PingFangSC, PingFang SC;
  357. font-weight: 400;
  358. font-size: 24rpx;
  359. color: #333333;
  360. line-height: 34rpx;
  361. text-align: left;
  362. font-style: normal;
  363. }
  364. .left {
  365. font-family: PingFangSC, PingFang SC;
  366. font-weight: 400;
  367. font-size: 28rpx;
  368. color: #222222;
  369. line-height: 40rpx;
  370. text-align: left;
  371. font-style: normal;
  372. width: 115rpx;
  373. }
  374. .right {
  375. font-family: PingFangSC, PingFang SC;
  376. font-weight: 400;
  377. font-size: 28rpx;
  378. color: #222222;
  379. line-height: 40rpx;
  380. text-align: left;
  381. font-style: normal;
  382. margin-left: 60rpx;
  383. }
  384. }
  385. }
  386. }
  387. </style>