internationalAddress.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. <template>
  2. <view class="page">
  3. <view class="content">
  4. <view class="title">
  5. <text class="title-left">{{ i18n.contacts }}</text>
  6. </view>
  7. <!-- 注意,如果需要兼容微信小程序,最好通过setRules方法设置rules规则 -->
  8. <u--form labelPosition="left" :model="model1" ref="uForm">
  9. <u-form-item
  10. labelWidth="150rpx"
  11. @click="showDialog = true"
  12. :label="i18n.country"
  13. borderBottom
  14. ref="item1"
  15. >
  16. <u--input
  17. v-model="model1.userInfo.country"
  18. disabled
  19. disabledColor="#ffffff"
  20. :placeholder="i18n.selection"
  21. border="none"
  22. ></u--input>
  23. <u-icon slot="right" name="arrow-right"></u-icon>
  24. </u-form-item>
  25. <u-form-item
  26. labelWidth="150rpx"
  27. :label="i18n.name"
  28. borderBottom
  29. ref="item1"
  30. >
  31. <u--input
  32. v-model="model1.userInfo.name"
  33. :placeholder="i18n.goods"
  34. border="none"
  35. ></u--input>
  36. </u-form-item>
  37. <u-form-item
  38. labelWidth="150rpx"
  39. :label="i18n.phone"
  40. borderBottom
  41. ref="item1"
  42. >
  43. <u--input
  44. v-model="model1.userInfo.phone"
  45. :placeholder="i18n.pleasePhoneNumber"
  46. border="none"
  47. ></u--input>
  48. </u-form-item>
  49. <u-form-item
  50. labelWidth="150rpx"
  51. :label="i18n.postalCode"
  52. borderBottom
  53. ref="item1"
  54. >
  55. <u--input
  56. v-model="model1.userInfo.zip_code"
  57. :placeholder="i18n.PleacePostalCode"
  58. border="none"
  59. ></u--input>
  60. </u-form-item>
  61. <u-form-item
  62. labelWidth="150rpx"
  63. :label="i18n.city"
  64. borderBottom
  65. @click="openCity"
  66. ref="item1"
  67. >
  68. <u--input
  69. v-model="model1.userInfo.city"
  70. disabled
  71. disabledColor="#ffffff"
  72. :placeholder="i18n.township"
  73. border="none"
  74. ></u--input>
  75. <u-icon slot="right" name="arrow-right"></u-icon>
  76. </u-form-item>
  77. <u-form-item
  78. labelWidth="150rpx"
  79. :label="i18n.detailed"
  80. borderBottom
  81. ref="item1"
  82. >
  83. <u--input
  84. v-model="model1.userInfo.detailed"
  85. :placeholder="i18n.sect"
  86. border="none"
  87. ></u--input>
  88. </u-form-item>
  89. <u-form-item
  90. labelWidth="150rpx"
  91. :label="i18n.companyName"
  92. borderBottom
  93. ref="item1"
  94. >
  95. <u--input
  96. v-model="model1.userInfo.companyName"
  97. :placeholder="i18n.company"
  98. border="none"
  99. ></u--input>
  100. </u-form-item>
  101. <u-form-item
  102. labelWidth="150rpx"
  103. :label="i18n.email"
  104. borderBottom
  105. ref="item1"
  106. >
  107. <u--input
  108. v-model="model1.userInfo.email"
  109. :placeholder="i18n.pleaseEmail"
  110. border="none"
  111. ></u--input>
  112. </u-form-item>
  113. <view
  114. style="
  115. display: flex;
  116. justify-content: space-between;
  117. align-items: center;
  118. "
  119. >
  120. <view class="item-left">
  121. <image
  122. src="../../static/mine/330.png"
  123. class="address-icon"
  124. mode=""
  125. ></image>
  126. <text>{{ i18n.addressBook }}</text>
  127. </view>
  128. <text style="font-size: 24rpx; color: #333" @click="empty">{{
  129. i18n.empty
  130. }}</text>
  131. </view>
  132. </u--form>
  133. </view>
  134. <!-- <SelectCity :show="show" @close="close" :countryId="country.id" /> -->
  135. <view class="footer">
  136. <button class="save" @click="submit">{{ i18n.preserve }}</button>
  137. </view>
  138. <u-picker
  139. :show="show"
  140. :columns="cityList"
  141. keyName="name"
  142. @confirm="countrycConfirm"
  143. @cancel="show = false"
  144. :closeOnClickOverlay="true"
  145. @close="close"
  146. ></u-picker>
  147. <u-picker
  148. :show="showDialog"
  149. :columns="columns"
  150. keyName="name"
  151. @cancel="showDialog = false"
  152. :closeOnClickOverlay="true"
  153. @confirm="confirm"
  154. @close="close"
  155. ></u-picker>
  156. </view>
  157. </template>
  158. <script>
  159. import SelectCity from "../addEditAddress/component/selectCity.vue";
  160. export default {
  161. components: {
  162. SelectCity,
  163. },
  164. computed: {
  165. i18n() {
  166. return this.$t("index");
  167. },
  168. },
  169. data() {
  170. return {
  171. show: false, //城市弹窗
  172. showDialog: false, //国家弹窗
  173. //表单数据
  174. model1: {
  175. userInfo: {
  176. name: "",
  177. phone: "",
  178. country: "",
  179. postalCode: "",
  180. city: "",
  181. detailed: "",
  182. email: "",
  183. companyName: "",
  184. zip_code: "",
  185. },
  186. },
  187. selectedCity: {}, //选中的城市
  188. columns: [], //获取到的国家数据
  189. country: {}, //选中的国家数据
  190. cityList: [[]], //选中国家之后的城市数据
  191. addressId: "", //编辑的地址id
  192. rules: {
  193. "userInfo.name": {
  194. type: "string",
  195. required: true,
  196. message: "请填写姓名",
  197. trigger: ["blur", "change"],
  198. },
  199. "userInfo.sex": {
  200. type: "string",
  201. max: 1,
  202. required: true,
  203. message: "请选择男或女",
  204. trigger: ["blur", "change"],
  205. },
  206. },
  207. };
  208. },
  209. onLoad(options) {
  210. if (options.id) {
  211. this.addressId = options.id;
  212. this.getAddressDetail(options.id);
  213. } else {
  214. uni.setNavigationBarTitle({
  215. title: this.i18n.newAddress,
  216. });
  217. }
  218. },
  219. methods: {
  220. //回显数据
  221. getAddressDetail(id) {
  222. uni.setNavigationBarTitle({
  223. title: "编辑地址",
  224. });
  225. uni.$u.http.get(`/api/address/${id}`).then((res) => {
  226. this.model1.userInfo.city = res.province_name;
  227. this.model1.userInfo.name = res.name;
  228. this.model1.userInfo.phone = res.mobile;
  229. this.model1.userInfo.detailed = res.address;
  230. this.model1.userInfo.companyName = res.company_name;
  231. this.model1.userInfo.is_default = res.is_default;
  232. this.model1.userInfo.country = res.country_name;
  233. this.model1.userInfo.email = res.email;
  234. this.country.id = res.country_id;
  235. this.selectedCity.id = res.province_id;
  236. this.model1.userInfo.zip_code = res.zip_code;
  237. });
  238. },
  239. //清空输入
  240. empty() {
  241. this.model1.userInfo = {
  242. name: "",
  243. phone: "",
  244. country: "",
  245. postalCode: "",
  246. city: "",
  247. detailed: "",
  248. email: "",
  249. companyName: "",
  250. zip_code: "",
  251. };
  252. },
  253. //选择国家
  254. confirm(e) {
  255. this.country = e.value[0];
  256. this.model1.userInfo.country = this.country.name;
  257. this.getCityList(this.country.id);
  258. this.showDialog = false;
  259. },
  260. //打开选择城市的弹窗
  261. openCity() {
  262. //判断是否选择国家
  263. if (JSON.stringify(this.country) != "{}") {
  264. //判断选中的国家有没有城市数据
  265. if (this.cityList[0].length > 0) {
  266. this.show = true;
  267. } else {
  268. uni.$u.toast("该国家没有城市数据,请直接填写详细地址");
  269. }
  270. } else {
  271. uni.$u.toast("请先选择国家");
  272. }
  273. },
  274. //选择国家
  275. countrycConfirm(e) {
  276. this.selectedCity = e.value[0];
  277. this.model1.userInfo.city = this.selectedCity.name;
  278. this.show = false;
  279. },
  280. submit() {
  281. const obj = {
  282. mobile: this.model1.userInfo.phone,
  283. name: this.model1.userInfo.name,
  284. country_id: this.country.id,
  285. province_id: this.selectedCity.id,
  286. address: this.model1.userInfo.detailed,
  287. company_name: this.model1.userInfo.companyName,
  288. email: this.model1.userInfo.email,
  289. zip_code: this.model1.userInfo.zip_code,
  290. };
  291. if (this.addressId) {
  292. uni.$u.http.put(`/api/address/${this.addressId}`, obj).then((res) => {
  293. uni.navigateBack({
  294. delta: 1,
  295. });
  296. });
  297. } else {
  298. uni.$u.http.post(`/api/address`, obj).then((res) => {
  299. uni.navigateBack({
  300. delta: 1,
  301. });
  302. });
  303. }
  304. },
  305. //关闭弹窗
  306. close() {
  307. this.show = false;
  308. this.showDialog = false;
  309. },
  310. // 获取所有国家
  311. getCountryList() {
  312. uni.$u.http.get(`/api/area?is_domestic=0&pid=`).then((res) => {
  313. this.columns = [res];
  314. });
  315. },
  316. // getCountryList() {
  317. // uni.$u.http.get(`/api/container/country`).then((res) => {
  318. // this.columns = [res];
  319. // });
  320. // },
  321. //根据国家获取城市
  322. getCityList(num) {
  323. uni.$u.http.get(`/api/area/tree?pid=${num}`).then((res) => {
  324. this.cityList = [res];
  325. });
  326. },
  327. },
  328. mounted() {
  329. this.getCountryList();
  330. },
  331. onReady() {
  332. //如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则。
  333. this.$refs.uForm.setRules(this.rules);
  334. },
  335. };
  336. </script>
  337. <style lang="scss" scoped>
  338. .page {
  339. padding: 20rpx 24rpx;
  340. .content {
  341. background-color: #fff;
  342. border-radius: 16rpx;
  343. padding: 0 24rpx;
  344. .title {
  345. display: flex;
  346. justify-content: space-between;
  347. align-items: center;
  348. height: 100rpx;
  349. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  350. .title-left {
  351. font-size: 32rpx;
  352. color: #333;
  353. font-weight: 600;
  354. }
  355. .title-icon {
  356. width: 26rpx;
  357. height: 26rpx;
  358. margin-right: 10rpx;
  359. }
  360. .title-right {
  361. display: flex;
  362. align-items: center;
  363. font-size: 24rpx;
  364. color: rgba(51, 51, 51, 0.6);
  365. }
  366. }
  367. .company {
  368. height: 102rpx;
  369. display: flex;
  370. align-items: center;
  371. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  372. }
  373. }
  374. .item-left {
  375. font-size: 24rpx;
  376. color: #333;
  377. display: flex;
  378. align-items: center;
  379. height: 86rpx;
  380. .address-icon {
  381. width: 26rpx;
  382. height: 26rpx;
  383. margin-right: 10rpx;
  384. }
  385. }
  386. .footer {
  387. background-color: #fff;
  388. position: fixed;
  389. bottom: 0;
  390. height: 146rpx;
  391. width: 750rpx;
  392. left: 0;
  393. padding-top: 20rpx;
  394. .save {
  395. width: 702rpx;
  396. margin: 0 auto;
  397. background-color: #f83224;
  398. color: #fff;
  399. border-radius: 40rpx;
  400. }
  401. }
  402. }
  403. </style>