internationalAddress.vue 9.8 KB

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