internationalAddress.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  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">
  81. <view class="" slot="input">
  82. <u--input placeholder="请输入想要搜索的地址" border="surround" v-model="keyword1" @change="changecity"></u--input>
  83. </view>
  84. </u-picker>
  85. <u-picker :show="showDialog" :columns="columns" keyName="name" @cancel="showDialog = false"
  86. :closeOnClickOverlay="true" @confirm="confirm" @close="close">
  87. <view class="" slot="input">
  88. <u--input placeholder="请输入想要搜索的地址" border="surround" v-model="keyword" @change="changeinput"></u--input>
  89. </view>
  90. </u-picker>
  91. </view>
  92. </template>
  93. <script>
  94. import SelectCity from "../addEditAddress/component/selectCity.vue";
  95. export default {
  96. components: {
  97. SelectCity,
  98. },
  99. computed: {
  100. i18n() {
  101. return this.$t("index");
  102. },
  103. },
  104. data() {
  105. return {
  106. show: false, //城市弹窗
  107. showDialog: false, //国家弹窗
  108. //表单数据
  109. model1: {
  110. userInfo: {
  111. name: "",
  112. phone: "",
  113. country: "",
  114. postalCode: "",
  115. city: "",
  116. detailed: "",
  117. email: "",
  118. companyName: "",
  119. zip_code: "",
  120. },
  121. },
  122. selectedCity: {}, //选中的城市
  123. columns: [], //获取到的国家数据
  124. country: {}, //选中的国家数据
  125. cityList: [
  126. []
  127. ], //选中国家之后的城市数据
  128. newlist: [],
  129. newcitylist: [
  130. []
  131. ],
  132. addressId: "", //编辑的地址id
  133. rules: {
  134. "userInfo.name": {
  135. type: "string",
  136. required: true,
  137. message: "请填写姓名",
  138. trigger: ["blur", "change"],
  139. },
  140. "userInfo.sex": {
  141. type: "string",
  142. max: 1,
  143. required: true,
  144. message: "请选择男或女",
  145. trigger: ["blur", "change"],
  146. },
  147. },
  148. keyword:'',
  149. keyword1:''
  150. };
  151. },
  152. onLoad(options) {
  153. if (options.id) {
  154. this.addressId = options.id;
  155. this.getAddressDetail(options.id);
  156. } else {
  157. uni.setNavigationBarTitle({
  158. title: this.i18n.newAddress,
  159. });
  160. }
  161. },
  162. methods: {
  163. changeinput(e) {
  164. console.log(e);
  165. console.log(this.columns);
  166. this.columns = this.newlist
  167. var list = [
  168. []
  169. ]
  170. this.columns[0].forEach(item => {
  171. if (item.name.indexOf(e) != -1) {
  172. list[0].push(item)
  173. }
  174. })
  175. this.columns = list
  176. },
  177. changecity(e) {
  178. this.cityList = this.newcitylist
  179. console.log(this.cityList);
  180. var list = [
  181. []
  182. ]
  183. this.cityList[0].forEach(item => {
  184. if (item.name.indexOf(e) != -1) {
  185. list[0].push(item)
  186. }
  187. })
  188. this.cityList = list
  189. },
  190. //回显数据
  191. getAddressDetail(id) {
  192. uni.setNavigationBarTitle({
  193. title: "编辑地址",
  194. });
  195. uni.$u.http.get(`/api/address/${id}`).then((res) => {
  196. this.model1.userInfo.city = res.province_name;
  197. this.model1.userInfo.name = res.name;
  198. this.model1.userInfo.phone = res.mobile;
  199. this.model1.userInfo.detailed = res.address;
  200. this.model1.userInfo.companyName = res.company_name;
  201. this.model1.userInfo.is_default = res.is_default;
  202. this.model1.userInfo.country = res.country_name;
  203. this.model1.userInfo.email = res.email;
  204. this.country.id = res.country_id;
  205. this.selectedCity.id = res.province_id;
  206. this.model1.userInfo.zip_code = res.zip_code;
  207. this.model1.userInfo.phonecode = res.global_roaming;
  208. });
  209. },
  210. //清空输入
  211. empty() {
  212. this.model1.userInfo = {
  213. name: "",
  214. phone: "",
  215. country: "",
  216. postalCode: "",
  217. city: "",
  218. detailed: "",
  219. email: "",
  220. companyName: "",
  221. zip_code: "",
  222. phonecode: '',
  223. };
  224. },
  225. //选择国家
  226. confirm(e) {
  227. this.country = e.value[0];
  228. this.model1.userInfo.country = this.country.name;
  229. this.getCityList(this.country.id);
  230. this.showDialog = false;
  231. this.keyword = ''
  232. },
  233. //打开选择城市的弹窗
  234. openCity() {
  235. //判断是否选择国家
  236. if (JSON.stringify(this.country) != "{}") {
  237. //判断选中的国家有没有城市数据
  238. if (this.cityList[0].length > 0) {
  239. this.show = true;
  240. } else {
  241. uni.$u.toast("该国家没有城市数据,请直接填写详细地址");
  242. }
  243. } else {
  244. uni.$u.toast("请先选择国家");
  245. }
  246. },
  247. //选择国家
  248. countrycConfirm(e) {
  249. this.selectedCity = e.value[0];
  250. this.model1.userInfo.city = this.selectedCity.name;
  251. this.show = false;
  252. this.keyword1 = ''
  253. },
  254. submit() {
  255. const obj = {
  256. mobile: this.model1.userInfo.phone,
  257. name: this.model1.userInfo.name,
  258. country_id: this.country.id,
  259. province_id: this.selectedCity.id,
  260. address: this.model1.userInfo.detailed,
  261. company_name: this.model1.userInfo.companyName,
  262. email: this.model1.userInfo.email,
  263. zip_code: this.model1.userInfo.zip_code,
  264. global_roaming: this.model1.userInfo.phonecode,
  265. };
  266. if (this.addressId) {
  267. uni.$u.http.put(`/api/address/${this.addressId}`, obj).then((res) => {
  268. uni.navigateBack({
  269. delta: 1,
  270. });
  271. });
  272. } else {
  273. uni.$u.http.post(`/api/address`, obj).then((res) => {
  274. uni.navigateBack({
  275. delta: 1,
  276. });
  277. });
  278. }
  279. },
  280. //关闭弹窗
  281. close() {
  282. this.show = false;
  283. this.showDialog = false;
  284. this.keyword = ''
  285. this.keyword1 = ''
  286. },
  287. // 获取所有国家
  288. getCountryList() {
  289. uni.$u.http.get(`/api/area?is_domestic=0&pid=`).then((res) => {
  290. this.columns = [res];
  291. this.newlist = [res];
  292. });
  293. },
  294. // getCountryList() {
  295. // uni.$u.http.get(`/api/container/country`).then((res) => {
  296. // this.columns = [res];
  297. // });
  298. // },
  299. //根据国家获取城市
  300. getCityList(num) {
  301. uni.$u.http.get(`/api/area/tree?pid=${num}`).then((res) => {
  302. this.cityList = [res];
  303. this.newcitylist = [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>