2025-11-07 09:56:20 +08:00
|
|
|
<template>
|
2025-11-25 05:36:02 +08:00
|
|
|
<view class="content">
|
2025-11-27 07:40:32 +08:00
|
|
|
<uni-nav-bar title="发现" background-color="transparent"></uni-nav-bar>
|
|
|
|
|
<uni-list>
|
|
|
|
|
<uni-list-item title="朋友圈"
|
|
|
|
|
thumb="/static/images/workbench/01.png"
|
|
|
|
|
:thumbSize="thumbSize"
|
|
|
|
|
showArrow
|
|
|
|
|
to="/pages/workbench/friend-circle/friend-circle">
|
2025-12-02 03:05:52 +08:00
|
|
|
<view slot="footer" v-if="last_unread_item&&last_unread_item.avatar.length>0">
|
|
|
|
|
<u-avatar :src="last_unread_item.avatar" mode="square" :size="70"></u-avatar>
|
2025-11-27 07:40:32 +08:00
|
|
|
<u-badge :is-dot="true" type="error" :offset="[20,60]"></u-badge>
|
|
|
|
|
</view>
|
|
|
|
|
</uni-list-item>
|
|
|
|
|
</uni-list>
|
|
|
|
|
<u-gap :height="10"></u-gap>
|
|
|
|
|
<uni-list>
|
2025-12-08 02:29:46 +08:00
|
|
|
<uni-list-item title="扫一扫" thumb="/static/images/workbench/03.png" :thumbSize="thumbSize" to="/pages/common/scan" showArrow></uni-list-item>
|
2025-11-27 07:40:32 +08:00
|
|
|
<uni-list-item title="摇一摇" thumb="/static/images/workbench/05.png" :thumbSize="thumbSize" to="/pages/workbench/friend-circle/friend-circle" showArrow></uni-list-item>
|
|
|
|
|
<uni-list-item title="看一看" thumb="/static/images/workbench/06.png" :thumbSize="thumbSize" to="/pages/workbench/friend-circle/friend-circle" showArrow></uni-list-item>
|
|
|
|
|
<uni-list-item title="听一听" thumb="/static/images/workbench/06.png" :thumbSize="thumbSize" to="/pages/workbench/friend-circle/friend-circle" showArrow></uni-list-item>
|
|
|
|
|
<uni-list-item title="附近" thumb="/static/images/workbench/08.png" :thumbSize="thumbSize" to="/pages/workbench/friend-circle/friend-circle" showArrow></uni-list-item>
|
|
|
|
|
<uni-list-item title="购物" thumb="/static/images/workbench/09.png" :thumbSize="thumbSize" to="/pages/workbench/friend-circle/friend-circle" showArrow></uni-list-item>
|
|
|
|
|
</uni-list>
|
2025-11-25 05:36:02 +08:00
|
|
|
</view>
|
2025-11-07 09:56:20 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2025-11-25 05:36:02 +08:00
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2025-12-02 03:05:52 +08:00
|
|
|
thumbSize:"base"
|
2025-11-25 05:36:02 +08:00
|
|
|
};
|
|
|
|
|
},
|
2025-12-02 03:05:52 +08:00
|
|
|
computed:{
|
|
|
|
|
circleUnreadCount() {
|
|
|
|
|
return this.$store.getters.storeCircleUnreadCount;
|
|
|
|
|
},
|
|
|
|
|
last_unread_item() {
|
|
|
|
|
return this.$store.getters.storeCircleLastUnreadItem;
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-11-25 05:36:02 +08:00
|
|
|
onShow: function() {
|
2025-11-27 07:40:32 +08:00
|
|
|
let unreadCount= 1;
|
2025-12-02 03:05:52 +08:00
|
|
|
this.$store.dispatch('circle/getFriendCircleInfo');
|
2025-11-25 05:36:02 +08:00
|
|
|
},
|
2025-12-02 03:05:52 +08:00
|
|
|
methods: {
|
2025-11-25 05:36:02 +08:00
|
|
|
}
|
|
|
|
|
};
|
2025-11-07 09:56:20 +08:00
|
|
|
</script>
|
|
|
|
|
|
2025-11-25 05:36:02 +08:00
|
|
|
<style lang="scss" scoped>
|
2025-11-27 07:40:32 +08:00
|
|
|
.content {padding-top: 36rpx;}
|
2025-11-25 05:36:02 +08:00
|
|
|
</style>
|
|
|
|
|
<style>
|
|
|
|
|
page {
|
2025-11-27 07:40:32 +08:00
|
|
|
background-color: #ececec !important;
|
2025-11-25 05:36:02 +08:00
|
|
|
}
|
|
|
|
|
</style>
|