internationalAddress.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  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">{{ i18n.empty }}</text>
  129. </view>
  130. </u--form>
  131. </view>
  132. <!-- <SelectCity :show="show" @close="close" :countryId="country.id" /> -->
  133. <view class="footer">
  134. <button class="save" @click="submit">{{ i18n.preserve }}</button>
  135. </view>
  136. <u-picker
  137. :show="show"
  138. :columns="cityList"
  139. keyName="name"
  140. @confirm="countrycConfirm"
  141. @cancel="show = false"
  142. :closeOnClickOverlay="true"
  143. @close="close"
  144. ></u-picker>
  145. <u-picker
  146. :show="showDialog"
  147. :columns="columns"
  148. keyName="name"
  149. @cancel="showDialog = false"
  150. :closeOnClickOverlay="true"
  151. @confirm="confirm"
  152. @close="close"
  153. ></u-picker>
  154. </view>
  155. </template>
  156. <script>
  157. import SelectCity from "../addEditAddress/component/selectCity.vue";
  158. export default {
  159. components: {
  160. SelectCity,
  161. },
  162. computed: {
  163. i18n() {
  164. return this.$t("index");
  165. },
  166. },
  167. data() {
  168. return {
  169. show: false, //城市弹窗
  170. showDialog: false, //国家弹窗
  171. //表单数据
  172. model1: {
  173. userInfo: {
  174. name: "",
  175. phone: "",
  176. country: "",
  177. postalCode: "",
  178. city: "",
  179. detailed: "",
  180. email: "",
  181. companyName: "",
  182. zip_code: "",
  183. },
  184. },
  185. selectedCity: {}, //选中的城市
  186. columns: [], //获取到的国家数据
  187. country: {}, //选中的国家数据
  188. cityList: [[]], //选中国家之后的城市数据
  189. addressId: "", //编辑的地址id
  190. rules: {
  191. "userInfo.name": {
  192. type: "string",
  193. required: true,
  194. message: "请填写姓名",
  195. trigger: ["blur", "change"],
  196. },
  197. "userInfo.sex": {
  198. type: "string",
  199. max: 1,
  200. required: true,
  201. message: "请选择男或女",
  202. trigger: ["blur", "change"],
  203. },
  204. },
  205. };
  206. },
  207. onLoad(options) {
  208. if (options.id) {
  209. this.addressId = options.id;
  210. this.getAddressDetail(options.id);
  211. } else {
  212. uni.setNavigationBarTitle({
  213. title: this.i18n.newAddress,
  214. });
  215. }
  216. },
  217. methods: {
  218. //回显数据
  219. getAddressDetail(id) {
  220. uni.setNavigationBarTitle({
  221. title: "编辑地址",
  222. });
  223. uni.$u.http.get(`/api/address/${id}`).then((res) => {
  224. this.model1.userInfo.city = res.province_name;
  225. this.model1.userInfo.name = res.name;
  226. this.model1.userInfo.phone = res.mobile;
  227. this.model1.userInfo.detailed = res.address;
  228. this.model1.userInfo.companyName = res.company_name;
  229. this.model1.userInfo.is_default = res.is_default;
  230. this.model1.userInfo.country = res.country_name;
  231. this.model1.userInfo.email = res.email;
  232. this.country.id = res.country_id;
  233. this.selectedCity.id = res.province_id;
  234. this.model1.userInfo.zip_code = res.zip_code;
  235. });
  236. },
  237. //选择国家
  238. confirm(e) {
  239. this.country = e.value[0];
  240. this.model1.userInfo.country = this.country.name;
  241. this.getCityList(this.country.id);
  242. this.showDialog = false;
  243. },
  244. //打开选择城市的弹窗
  245. openCity() {
  246. //判断是否选择国家
  247. if (JSON.stringify(this.country) != "{}") {
  248. //判断选中的国家有没有城市数据
  249. if (this.cityList[0].length > 0) {
  250. this.show = true;
  251. } else {
  252. uni.$u.toast("该国家没有城市数据,请直接填写详细地址");
  253. }
  254. } else {
  255. uni.$u.toast("请先选择国家");
  256. }
  257. },
  258. //选择国家
  259. countrycConfirm(e) {
  260. this.selectedCity = e.value[0];
  261. this.model1.userInfo.city = this.selectedCity.name;
  262. this.show = false;
  263. },
  264. submit() {
  265. const obj = {
  266. mobile: this.model1.userInfo.phone,
  267. name: this.model1.userInfo.name,
  268. country_id: this.country.id,
  269. province_id: this.selectedCity.id,
  270. address: this.model1.userInfo.detailed,
  271. company_name: this.model1.userInfo.companyName,
  272. email: this.model1.userInfo.email,
  273. zip_code: this.model1.userInfo.zip_code,
  274. };
  275. if (this.addressId) {
  276. uni.$u.http.put(`/api/address/${this.addressId}`, obj).then((res) => {
  277. uni.navigateBack({
  278. delta: 1,
  279. });
  280. });
  281. } else {
  282. uni.$u.http.post(`/api/address`, obj).then((res) => {
  283. uni.navigateBack({
  284. delta: 1,
  285. });
  286. });
  287. }
  288. },
  289. //关闭弹窗
  290. close() {
  291. this.show = false;
  292. this.showDialog = false;
  293. },
  294. //获取所有国家
  295. getCountryList() {
  296. uni.$u.http.get(`/api/area?is_domestic=0&pid=`).then((res) => {
  297. this.columns = [res];
  298. });
  299. },
  300. //根据国家获取城市
  301. getCityList(num) {
  302. uni.$u.http.get(`/api/area/tree?pid=${num}`).then((res) => {
  303. this.cityList = [res];
  304. });
  305. },
  306. },
  307. mounted() {
  308. this.getCountryList();
  309. },
  310. onReady() {
  311. //如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则。
  312. this.$refs.uForm.setRules(this.rules);
  313. },
  314. };
  315. </script>
  316. <style lang="scss" scoped>
  317. .page {
  318. padding: 20rpx 24rpx;
  319. .content {
  320. background-color: #fff;
  321. border-radius: 16rpx;
  322. padding: 0 24rpx;
  323. .title {
  324. display: flex;
  325. justify-content: space-between;
  326. align-items: center;
  327. height: 100rpx;
  328. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  329. .title-left {
  330. font-size: 32rpx;
  331. color: #333;
  332. font-weight: 600;
  333. }
  334. .title-icon {
  335. width: 26rpx;
  336. height: 26rpx;
  337. margin-right: 10rpx;
  338. }
  339. .title-right {
  340. display: flex;
  341. align-items: center;
  342. font-size: 24rpx;
  343. color: rgba(51, 51, 51, 0.6);
  344. }
  345. }
  346. .company {
  347. height: 102rpx;
  348. display: flex;
  349. align-items: center;
  350. border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
  351. }
  352. }
  353. .item-left {
  354. font-size: 24rpx;
  355. color: #333;
  356. display: flex;
  357. align-items: center;
  358. height: 86rpx;
  359. .address-icon {
  360. width: 26rpx;
  361. height: 26rpx;
  362. margin-right: 10rpx;
  363. }
  364. }
  365. .footer {
  366. background-color: #fff;
  367. position: fixed;
  368. bottom: 0;
  369. height: 146rpx;
  370. width: 750rpx;
  371. left: 0;
  372. padding-top: 20rpx;
  373. .save {
  374. width: 702rpx;
  375. margin: 0 auto;
  376. background-color: #f83224;
  377. color: #fff;
  378. border-radius: 40rpx;
  379. }
  380. }
  381. }
  382. </style>