123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- <template>
- <div class="page">
- <van-list
- v-model="isLoadingMore"
- :finished="finished"
- :immediate-check="false"
- :finished-text="total ? '没有更多了' : ''"
- @load="onLoadMore"
- >
- <div class="page-top flex flex-col justify-center items-center">
- <!-- <img class="logo" :src="supplierInfo.logo" /> -->
- <div class="mt-2 name">
- <span v-text="supplierInfo.shopName"></span>
- <span>官方授权机构</span>
- </div>
- </div>
- <div class="page-content">
- <!-- 搜索区域 -->
- <div class="search">
- <simple-search
- v-model="listQuery.clubName"
- @search="onSearch"
- placeholder="搜索机构"
- />
- </div>
- <!-- 地区选择 -->
- <div class="city">
- <SimpleCity
- ref="citySelect"
- @change="onCityChange"
- :options="cityList"
- labelName="name"
- valueName="id"
- ></SimpleCity>
- </div>
- <template v-if="starList.length > 0">
- <!-- 明星机构 -->
- <div class="title flex justify-between px-4 pt-8 pb-8 md:px-0">
- <div>明星机构</div>
- <nuxt-link :to="routePrefix + '/approve/club/star-list'"
- >更多<i class="el-icon-arrow-right"></i
- ></nuxt-link>
- </div>
- <div class="list">
- <template v-for="item in starList">
- <div
- class="section flex justify-between mb-4"
- :key="item.authId"
- @click="toDetail(item)"
- >
- <img
- class="cover"
- :src="item.logo || drawLogo(item.clubName)"
- />
- <div class="info">
- <div class="name" v-text="item.clubName"></div>
- <div class="mobile">{{ item.mobile || '暂无' }}</div>
- <div class="address">
- {{ formatAddress(item.area, item.address) }}
- </div>
- </div>
- </div>
- </template>
- </div>
- </template>
- <!-- 标题 -->
- <div class="title flex justify-between px-4 pt-8 pb-8 md:px-0">
- <div>距您最近...</div>
- <div>共<span v-text="total"></span>家机构</div>
- </div>
- <!-- 列表 -->
- <div class="list">
- <template v-for="item in list">
- <div
- class="section flex justify-between mb-4"
- :key="item.authId"
- @click="toDetail(item)"
- >
- <img class="cover" :src="item.logo || drawLogo(item.clubName)" />
- <div class="info">
- <div class="name" v-text="item.clubName"></div>
- <div class="mobile">{{ item.mobile || '暂无' }}</div>
- <div class="address">
- {{ formatAddress(item.area, item.address) }}
- </div>
- <div
- class="distance"
- v-text="generateDistance(item.distance)"
- v-if="item.distance && item.distance !== 99999"
- ></div>
- </div>
- </div>
- </template>
- <div class="empty" v-for="i in emptyList" :key="'empty-' + i"></div>
- </div>
- <!-- 列表为空 -->
- <SimpleEmpty
- v-if="!total && !isRequest"
- name="icon-empty-club.png"
- description="敬请期待~"
- ></SimpleEmpty>
- </div>
- </van-list>
- </div>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import { geolocation } from '@/utils/map-utils'
- import { drawLogo, debounce } from '@/utils'
- export default {
- layout: 'app',
- data() {
- return {
- isLoadingMore: true,
- finished: false,
- isRequest: true,
- list: [],
- listQuery: {
- authUserId: '',
- lngAndLat: '',
- clubName: '',
- provinceId: '',
- cityId: '',
- townId: '',
- pageNum: 1,
- pageSize: 9,
- },
- total: 0,
- cityList: [],
- selectValue: [],
- // starList: []
- }
- },
- computed: {
- ...mapGetters(['supplierInfo', 'authUserId', 'routePrefix']),
- emptyList() {
- return 3 - (this.list.length % 3)
- },
- starList() {
- return this.list.slice(0, 3)
- },
- },
- mounted() {
- const cacheData = this.$getStorage(this.routePrefix, 'club_list_data')
- if (cacheData) {
- this.initFromCache(cacheData)
- this.$removeStorage(this.routePrefix, 'club_list_data')
- } else {
- this.initData()
- this.fetchCityList()
- }
- },
- beforeDestroy() {
- this.$toast.clear()
- },
- methods: {
- // 绘制logo的方法
- drawLogo,
- // 查看详情
- toDetail(item) {
- this.$setStorage(this.routePrefix, 'club_list_data', this.$data, {
- expiredTime: 5 * 60 * 1000,
- })
- this.$setStorage(this.routePrefix, 'clubInfo', item)
- const url = `${this.routePrefix}/approve/club/detail?id=${item.authId}`
- this.$router.push(url)
- },
- // 从缓存中获取数据
- initFromCache(cacheData) {
- this.isLoadingMore = cacheData.isLoadingMore
- this.finished = cacheData.finished
- this.isRequest = cacheData.isRequest
- this.list = cacheData.list
- this.listQuery = cacheData.listQuery
- this.total = cacheData.total
- this.cityList = cacheData.cityList
- this.selectValue = cacheData.selectValue
- this.$refs.citySelect.setSelectValue(this.selectValue)
- },
- generateDistance(value) {
- return value > 1 ? value + 'km' : value * 1000 + 'm'
- },
- // 初始化页面数据
- async initData() {
- this.listQuery.authUserId = this.authUserId
- // 自定义加载图标
- this.$toast.loading({
- message: '正在获取您附近的机构...',
- duration: 0,
- })
- // 获取定位信息 这里使用的是高德地图获取用户具体位置信息
- try {
- const resLocation = await geolocation()
- this.listQuery.lngAndLat = `${resLocation.position.lng},${resLocation.position.lat}`
- } catch (error) {
- this.$toast('获取定位信息失败,请确保您开启的定位权限并保存网络畅通')
- this.isRequest = false
- }
- // 获取机构列表
- this.fetchList()
- },
- fetchList: debounce(async function () {
- try {
- this.isLoadingMore = true
- const res = await this.$http.api.getAuthClubList(this.listQuery)
- this.total = res.data.total
- this.list = [...this.list, ...res.data.list]
- this.finished = !res.data.hasNextPage
- this.isLoadingMore = false
- this.listQuery.pageNum += 1
- } catch (error) {
- console.log(error)
- } finally {
- this.$toast.clear()
- this.isRequest = false
- }
- }, 400),
- // 获取地址列表
- fetchCityList() {
- this.$http.api.fetchAllCityList().then((res) => {
- this.cityList = res.data
- })
- },
- // 城市变化
- onCityChange(selectValue) {
- this.listQuery.provinceId = ''
- this.listQuery.cityId = ''
- this.listQuery.townId = ''
- this.selectValue = selectValue
- selectValue.map((item, index) => {
- if (index === 0) {
- this.listQuery.provinceId = item.id
- } else if (index === 1) {
- this.listQuery.cityId = item.id
- } else {
- this.listQuery.townId = item.id
- }
- })
- this.listQuery.pageNum = 1
- this.list = []
- this.fetchList()
- },
- // 搜索
- onSearch() {
- this.listQuery.pageNum = 1
- this.list = []
- this.fetchList()
- },
- // 格式化地址
- formatAddress(a1, a2) {
- let resutl = ''
- if (typeof a1 === 'string') {
- resutl += a1
- }
- if (typeof a2 === 'string') {
- resutl += a2
- }
- return resutl || '暂无'
- },
- // 加载更多
- onLoadMore() {
- this.fetchList()
- },
- },
- }
- </script>
- <style scoped lang="scss">
- // pc 端
- @media screen and (min-width: 768px) {
- .page {
- position: relative;
- min-height: calc(100vh - 80px - 80px);
- background-color: #fff;
- }
- .page-top {
- height: 420px;
- @include themify($themes) {
- background: themed('pc-banner-club');
- }
- background-size: auto 420px;
- .logo {
- display: block;
- width: 120px;
- height: 120px;
- border-radius: 50%;
- background: #fff;
- }
- .name {
- font-size: 30px;
- color: #fff;
- }
- .logo,
- .name {
- transform: translateY(-60px);
- }
- }
- .page-content {
- width: 1200px;
- margin: 0 auto;
- .search {
- position: absolute;
- left: 50%;
- top: 260px;
- transform: translateX(-50%);
- }
- .city {
- position: absolute;
- left: 50%;
- top: 320px;
- transform: translateX(-50%);
- z-index: 9;
- }
- .title {
- font-size: 16px;
- color: #404040;
- span {
- @include themify($themes) {
- color: themed('color');
- }
- }
- }
- .list {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- .empty {
- width: 390px;
- }
- .section {
- width: 390px;
- height: 108px;
- background-color: #f3f5f6;
- border-radius: 4px;
- box-sizing: border-box;
- padding: 12px;
- cursor: pointer;
- transition: all 0.4s;
- &:hover {
- box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
- }
- .cover {
- display: block;
- width: 84px;
- height: 84px;
- }
- .info {
- position: relative;
- margin-left: 12px;
- .name {
- width: 200px;
- font-size: 16px;
- color: #101010;
- font-weight: bold;
- margin-bottom: 16px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .mobile,
- .address {
- width: 268px;
- position: relative;
- font-size: 14px;
- color: #404040;
- padding-left: 24px;
- line-height: 24px;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- &::after {
- content: '';
- display: block;
- width: 16px;
- height: 16px;
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- background-size: 16px;
- background-repeat: no-repeat;
- }
- }
- .mobile {
- &::after {
- background-image: url(~assets/theme-images/common/pc-icon-mobile.png);
- }
- }
- .address {
- &::after {
- background-image: url(~assets/theme-images/common/pc-icon-address.png);
- }
- }
- .distance {
- position: absolute;
- font-size: 12px;
- color: #404040;
- top: 2px;
- right: 0;
- }
- }
- }
- }
- }
- }
- // 移动 端
- @media screen and (max-width: 768px) {
- .page-top {
- height: 46vw;
- @include themify($themes) {
- background: themed('h5-banner-club');
- }
- background-size: auto 46vw;
- .logo {
- display: block;
- width: 14.8vw;
- height: 14.8vw;
- border-radius: 50%;
- background: #fff;
- }
- .name {
- font-size: 4vw;
- color: #fff;
- }
- }
- .page-content {
- position: relative;
- .search {
- position: absolute;
- left: 50%;
- top: 0;
- transform: translate(-50%, -50%);
- }
- .city {
- position: relative;
- z-index: 9;
- padding-top: 12vw;
- }
- .title {
- font-size: 3.4vw;
- color: #404040;
- span {
- @include themify($themes) {
- color: themed('color');
- }
- }
- }
- .list {
- display: flex;
- align-items: center;
- flex-direction: column;
- .section {
- width: 93.6vw;
- height: 26vw;
- background-color: #f3f5f6;
- border-radius: 4px;
- box-sizing: border-box;
- padding: 3.2vw;
- .cover {
- display: block;
- width: 19.6vw;
- height: 19.6vw;
- }
- .info {
- position: relative;
- margin-left: 3.2vw;
- .name {
- width: 48vw;
- font-size: 4vw;
- color: #101010;
- font-weight: bold;
- margin-bottom: 4vw;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .mobile,
- .address {
- width: 66vw;
- position: relative;
- font-size: 3vw;
- color: #404040;
- padding-left: 5vw;
- line-height: 5vw;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- &::after {
- content: '';
- display: block;
- width: 4vw;
- height: 4vw;
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- background-size: 4vw 4vw;
- background-repeat: no-repeat;
- }
- }
- .mobile {
- &::after {
- background-image: url(~assets/theme-images/common/h5-icon-mobile.png);
- }
- }
- .address {
- &::after {
- background-image: url(~assets/theme-images/common/h5-icon-address.png);
- }
- }
- .distance {
- position: absolute;
- font-size: 3vw;
- color: #404040;
- top: 0.8vw;
- right: 0;
- }
- }
- }
- }
- }
- }
- </style>
|