recipientinfo.vue 9.3 KB

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