city.vue 711 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="">
  3. <city-select @back_city="back_city" @selectCity="selectCity"></city-select>
  4. </view>
  5. </template>
  6. <script>
  7. import citySelect from '../../components/linzq-citySelect/linzq-citySelect.vue'
  8. export default {
  9. data() {
  10. return {
  11. }
  12. },
  13. created(){
  14. },
  15. mounted(){
  16. },
  17. methods: {
  18. //选择城市
  19. back_city(data) {
  20. uni.navigateTo({
  21. url: "./selectHouse"
  22. })
  23. uni.setStorageSync("cityId",data.areaId)
  24. },
  25. // 选择当前定位城市
  26. selectCity(data) {
  27. console.log(data)
  28. uni.setStorageSync("cityId",data)
  29. uni.navigateTo({
  30. url: "./selectHouse"
  31. })
  32. }
  33. },
  34. components: {
  35. citySelect
  36. },
  37. }
  38. </script>
  39. <style>
  40. </style>