| | |
| | | <template> |
| | | <PageLayout title="选择城市" class="citySelect-page-wrapper" :need-auth="false"> |
| | | <ContentView class="citySelect-content-wrapper"> |
| | | <div class="current-city">当前城市:{{ locationCity }}</div> |
| | | <!-- <div class="current-city">当前城市:{{ locationCity }}</div> --> |
| | | <div class="home-searchbar-wrapper"> |
| | | <div class="city-btn-wrapper"> |
| | | <div class="city-btn"> |
| | | <img :src="IconLocaltion" class="city-btn-icon" /> |
| | | <div class="city-btn-text">{{ locationCity }}</div> |
| | | </div> |
| | | </div> |
| | | <div class="reset-localtion">重新定位</div> |
| | | </div> |
| | | <Elevator :index-list="elevatorData" :height="'100%'" @click-item="clickItem" /> |
| | | </ContentView> |
| | | </PageLayout> |
| | |
| | | import { groupBy, sortBy } from 'lodash'; |
| | | import { useUserStore } from '@/stores/modules/user'; |
| | | import { Elevator } from '@12333/components'; |
| | | import IconLocaltion from '@/assets/home/icon-localtion.png'; |
| | | |
| | | defineOptions({ |
| | | name: 'citySelect', |