citychange.vue 954 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. //点击列表回调事件
  29. click(e) {
  30. const eventchannel = this.getOpenerEventChannel();
  31. eventchannel.emit('getadd', e)
  32. if(this.searchlist.includes(e)){
  33. }else{
  34. this.searchlist.unshift(e)
  35. uni.setStorageSync('searchlist',this.searchlist.slice(0,6))
  36. }
  37. uni.navigateBack()
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss">
  43. </style>