citychange.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <!-- 选择城市 -->
  3. <view class="page-main">
  4. <liu-indexed-list :dataList="dataList" @click="click"></liu-indexed-list>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data() {
  10. return {
  11. dataList: [],
  12. searchlist:[],//搜索历史
  13. };
  14. },
  15. onShow() {
  16. this.getCountryList()
  17. if(uni.getStorageSync('searchlist')){
  18. this.searchlist = uni.getStorageSync('searchlist')
  19. }
  20. },
  21. methods: {
  22. //根据国家获取城市
  23. getCountryList() {
  24. uni.$u.http.get(`/api/area?is_domestic=0&pid=`).then((res) => {
  25. this.dataList = res;
  26. });
  27. },
  28. // getCountryList() {
  29. // uni.$u.http.get(`/api/container/country`).then((res) => {
  30. // this.dataList = res;
  31. // });
  32. // },
  33. //点击列表回调事件
  34. click(e) {
  35. var that = this
  36. console.log(e);
  37. const eventchannel = that.getOpenerEventChannel();
  38. console.log(eventchannel);
  39. eventchannel.emit('getadd', e)
  40. if(that.searchlist.includes(e)){
  41. }else{
  42. that.searchlist.unshift(e)
  43. uni.setStorageSync('searchlist',that.searchlist.slice(0,6))
  44. }
  45. uni.navigateBack()
  46. }
  47. }
  48. }
  49. </script>
  50. <style lang="scss">
  51. </style>