- 新增酒友圈、圈子详情、发布动态、好友列表、活动创建等页面配置 - 添加酒友圈相关API接口,包括动态、评论、好友、活动等功能 - 实现模拟数据用于前端开发和测试 - 创建评论项、空状态、活动卡片、动态卡片、好友项等组件 - 编写酒友圈模块详细的接口文档,定义数据结构和业务规则
379 lines
8.7 KiB
Vue
379 lines
8.7 KiB
Vue
<template>
|
||
<view :class="themeClass" class="page-container circle-page">
|
||
<!-- 顶部导航 -->
|
||
<view class="circle-header" :style="{ paddingTop: headerPaddingTop }">
|
||
<text class="circle-title">酒友圈</text>
|
||
<!-- Tab 切换 -->
|
||
<view class="circle-tabs">
|
||
<view
|
||
v-for="(tab, i) in tabs"
|
||
:key="i"
|
||
class="circle-tab"
|
||
:class="{ active: currentTab === i }"
|
||
@click="switchTab(i)"
|
||
>
|
||
<text class="circle-tab-text">{{ tab }}</text>
|
||
<view v-if="currentTab === i" class="circle-tab-line"></view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
<!-- 动态 Tab -->
|
||
<scroll-view
|
||
v-if="currentTab === 0"
|
||
class="circle-scroll"
|
||
scroll-y
|
||
:refresher-enabled="true"
|
||
:refresher-triggered="refreshing"
|
||
@refresherrefresh="onRefresh"
|
||
@scrolltolower="loadMore"
|
||
>
|
||
<view class="circle-content">
|
||
<FeedCard
|
||
v-for="feed in feeds"
|
||
:key="feed.id"
|
||
:feed="feed"
|
||
@like="handleLike"
|
||
@comment="goDetail"
|
||
@tap="goDetail"
|
||
/>
|
||
<view v-if="loading" class="circle-loading">
|
||
<text class="circle-loading-text">加载中...</text>
|
||
</view>
|
||
<view v-if="!hasMore && feeds.length" class="circle-nomore">
|
||
<text class="circle-nomore-text">— 没有更多了 —</text>
|
||
</view>
|
||
<EmptyState
|
||
v-if="!feeds.length && !loading"
|
||
icon="🍻"
|
||
title="还没有动态"
|
||
desc="发布你的第一条饮酒动态吧"
|
||
actionText="发动态"
|
||
@action="goPublish"
|
||
/>
|
||
</view>
|
||
</scroll-view>
|
||
|
||
<!-- 酒友 Tab -->
|
||
<scroll-view v-if="currentTab === 1" class="circle-scroll" scroll-y>
|
||
<view class="circle-content">
|
||
<!-- 好友请求提醒 -->
|
||
<view v-if="friendRequests.length" class="request-banner" @click="goFriends">
|
||
<text class="request-icon">🔔</text>
|
||
<text class="request-text">{{ friendRequests.length }} 条新的好友请求</text>
|
||
<text class="request-arrow">›</text>
|
||
</view>
|
||
<FriendItem
|
||
v-for="f in friends"
|
||
:key="f.id"
|
||
:friend="f"
|
||
@tap="goFriends"
|
||
/>
|
||
<EmptyState
|
||
v-if="!friends.length"
|
||
icon="👥"
|
||
title="还没有酒友"
|
||
desc="邀请好友一起记录饮酒生活"
|
||
actionText="邀请好友"
|
||
@action="goFriends"
|
||
/>
|
||
</view>
|
||
</scroll-view>
|
||
|
||
<!-- 酒局 Tab -->
|
||
<scroll-view v-if="currentTab === 2" class="circle-scroll" scroll-y>
|
||
<view class="circle-content">
|
||
<EventCard
|
||
v-for="evt in events"
|
||
:key="evt.id"
|
||
:event="evt"
|
||
@tap="goEventDetail"
|
||
/>
|
||
<EmptyState
|
||
v-if="!events.length"
|
||
icon="🎉"
|
||
title="暂无酒局"
|
||
desc="发起一场酒局,约上酒友一起喝"
|
||
actionText="发起酒局"
|
||
@action="goCreateEvent"
|
||
/>
|
||
</view>
|
||
</scroll-view>
|
||
|
||
<!-- FAB 发布按钮 -->
|
||
<view class="fab" @click="handleFab">
|
||
<text class="fab-icon">{{ currentTab === 2 ? '🎉' : '✏️' }}</text>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import FeedCard from '../../components/FeedCard.vue'
|
||
import FriendItem from '../../components/FriendItem.vue'
|
||
import EventCard from '../../components/EventCard.vue'
|
||
import EmptyState from '../../components/EmptyState.vue'
|
||
import { GetCircleFeeds, LikeFeed, UnlikeFeed, GetFriends, GetFriendRequests, GetEvents } from '../../common/api'
|
||
import themeMixin from '../../common/theme-mixin'
|
||
|
||
export default {
|
||
mixins: [themeMixin],
|
||
components: { FeedCard, FriendItem, EventCard, EmptyState },
|
||
data() {
|
||
const menuBtn = uni.getMenuButtonBoundingClientRect()
|
||
return {
|
||
tabs: ['动态', '酒友', '酒局'],
|
||
currentTab: 0,
|
||
headerPaddingTop: (menuBtn.top + 8) + 'px',
|
||
// 动态
|
||
feeds: [],
|
||
page: 1,
|
||
hasMore: true,
|
||
loading: false,
|
||
refreshing: false,
|
||
// 酒友
|
||
friends: [],
|
||
friendRequests: [],
|
||
// 酒局
|
||
events: []
|
||
}
|
||
},
|
||
onShow() {
|
||
this.loadFeeds(true)
|
||
this.loadFriends()
|
||
this.loadEvents()
|
||
},
|
||
methods: {
|
||
switchTab(i) {
|
||
this.currentTab = i
|
||
},
|
||
// === 动态 ===
|
||
async loadFeeds(reset = false) {
|
||
if (this.loading) return
|
||
if (reset) {
|
||
this.page = 1
|
||
this.hasMore = true
|
||
}
|
||
this.loading = true
|
||
try {
|
||
const res = await GetCircleFeeds({ page: this.page, pageSize: 10 })
|
||
const data = res.data
|
||
if (reset) {
|
||
this.feeds = data.list
|
||
} else {
|
||
this.feeds = [...this.feeds, ...data.list]
|
||
}
|
||
this.hasMore = data.hasMore
|
||
this.page++
|
||
} catch (e) {
|
||
console.warn('加载动态失败', e)
|
||
}
|
||
this.loading = false
|
||
this.refreshing = false
|
||
},
|
||
onRefresh() {
|
||
this.refreshing = true
|
||
this.loadFeeds(true)
|
||
},
|
||
loadMore() {
|
||
if (this.hasMore && !this.loading) {
|
||
this.loadFeeds(false)
|
||
}
|
||
},
|
||
async handleLike(feed) {
|
||
feed.liked = !feed.liked
|
||
feed.likes += feed.liked ? 1 : -1
|
||
try {
|
||
if (feed.liked) {
|
||
await LikeFeed({ feedId: feed.id })
|
||
} else {
|
||
await UnlikeFeed({ feedId: feed.id })
|
||
}
|
||
} catch (e) { /* ignore */ }
|
||
},
|
||
goDetail(feed) {
|
||
uni.navigateTo({ url: `/pages/circle-detail/circle-detail?id=${feed.id}` })
|
||
},
|
||
goPublish() {
|
||
uni.navigateTo({ url: '/pages/circle-publish/circle-publish' })
|
||
},
|
||
// === 酒友 ===
|
||
async loadFriends() {
|
||
try {
|
||
const [friendsRes, reqRes] = await Promise.all([
|
||
GetFriends({}),
|
||
GetFriendRequests()
|
||
])
|
||
this.friends = friendsRes.data.list
|
||
this.friendRequests = reqRes.data.list
|
||
} catch (e) {
|
||
console.warn('加载酒友失败', e)
|
||
}
|
||
},
|
||
goFriends() {
|
||
uni.navigateTo({ url: '/pages/friends/friends' })
|
||
},
|
||
// === 酒局 ===
|
||
async loadEvents() {
|
||
try {
|
||
const res = await GetEvents({})
|
||
this.events = res.data.list
|
||
} catch (e) {
|
||
console.warn('加载酒局失败', e)
|
||
}
|
||
},
|
||
goEventDetail(evt) {
|
||
uni.navigateTo({ url: `/pages/event-detail/event-detail?id=${evt.id}` })
|
||
},
|
||
goCreateEvent() {
|
||
uni.navigateTo({ url: '/pages/event-create/event-create' })
|
||
},
|
||
// === FAB ===
|
||
handleFab() {
|
||
if (this.currentTab === 2) {
|
||
this.goCreateEvent()
|
||
} else {
|
||
this.goPublish()
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.circle-page {
|
||
display: flex;
|
||
flex-direction: column;
|
||
height: 100vh;
|
||
overflow: hidden;
|
||
}
|
||
|
||
.circle-header {
|
||
padding-left: $sp-lg;
|
||
padding-right: $sp-lg;
|
||
padding-bottom: $sp-md;
|
||
background: $bg-base;
|
||
position: relative;
|
||
z-index: 10;
|
||
}
|
||
|
||
.circle-title {
|
||
display: block;
|
||
font-size: $fs-2xl;
|
||
font-weight: $fw-black;
|
||
color: $text-primary;
|
||
margin-bottom: $sp-lg;
|
||
}
|
||
|
||
.circle-tabs {
|
||
display: flex;
|
||
gap: $sp-xl;
|
||
}
|
||
|
||
.circle-tab {
|
||
position: relative;
|
||
padding-bottom: $sp-sm;
|
||
}
|
||
|
||
.circle-tab-text {
|
||
font-size: $fs-base;
|
||
color: $text-tertiary;
|
||
font-weight: $fw-medium;
|
||
transition: color $duration-fast $ease-out;
|
||
|
||
.circle-tab.active & {
|
||
color: $text-primary;
|
||
font-weight: $fw-bold;
|
||
}
|
||
}
|
||
|
||
.circle-tab-line {
|
||
position: absolute;
|
||
bottom: 0;
|
||
left: 50%;
|
||
transform: translateX(-50%);
|
||
width: 40rpx;
|
||
height: 6rpx;
|
||
border-radius: 3rpx;
|
||
background: $amber;
|
||
}
|
||
|
||
.circle-scroll {
|
||
flex: 1;
|
||
height: 0;
|
||
}
|
||
|
||
.circle-content {
|
||
padding: $sp-md $sp-lg;
|
||
padding-bottom: calc(env(safe-area-inset-bottom) + 140rpx);
|
||
}
|
||
|
||
.circle-loading,
|
||
.circle-nomore {
|
||
text-align: center;
|
||
padding: $sp-xl 0;
|
||
}
|
||
|
||
.circle-loading-text,
|
||
.circle-nomore-text {
|
||
font-size: $fs-sm;
|
||
color: $text-tertiary;
|
||
}
|
||
|
||
/* 好友请求横幅 */
|
||
.request-banner {
|
||
display: flex;
|
||
align-items: center;
|
||
gap: $sp-sm;
|
||
padding: $sp-lg;
|
||
background: rgba(232,168,56,0.08);
|
||
border: 1rpx solid rgba(232,168,56,0.2);
|
||
border-radius: $radius-lg;
|
||
margin-bottom: $sp-md;
|
||
|
||
&:active {
|
||
background: rgba(232,168,56,0.12);
|
||
}
|
||
}
|
||
|
||
.request-icon {
|
||
font-size: $fs-base;
|
||
}
|
||
|
||
.request-text {
|
||
flex: 1;
|
||
font-size: $fs-sm;
|
||
color: $amber;
|
||
font-weight: $fw-medium;
|
||
}
|
||
|
||
.request-arrow {
|
||
font-size: $fs-xl;
|
||
color: $amber;
|
||
opacity: 0.6;
|
||
}
|
||
|
||
/* FAB */
|
||
.fab {
|
||
position: fixed;
|
||
right: $sp-xl;
|
||
bottom: calc(env(safe-area-inset-bottom) + 180rpx);
|
||
width: 108rpx;
|
||
height: 108rpx;
|
||
border-radius: 50%;
|
||
background: linear-gradient(135deg, $amber, $amber-deep);
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
box-shadow: $shadow-amber;
|
||
z-index: 50;
|
||
|
||
&:active {
|
||
transform: scale(0.9);
|
||
}
|
||
}
|
||
|
||
.fab-icon {
|
||
font-size: 44rpx;
|
||
}
|
||
</style>
|