|
|
@@ -1,59 +1,242 @@
|
|
|
<template>
|
|
|
- <CustomNav title="首页" leftType="scan" @scan="handleScan" />
|
|
|
- <view class="content">
|
|
|
- <!-- 原始页面已移至此文件,保留以备参考 -->
|
|
|
- <swiper class="banner-swiper" :indicator-dots="true" :autoplay="true" :interval="3000" :circular="true">
|
|
|
- <swiper-item v-for="(img, idx) in bannerImages" :key="idx">
|
|
|
- <image :src="img" class="banner-img" mode="aspectFill" />
|
|
|
- </swiper-item>
|
|
|
- </swiper>
|
|
|
- <view class="card-list">
|
|
|
- <view class="card" v-for="(card, idx) in cards" :key="idx">
|
|
|
- <view class="card-title">{{ card.title }}</view>
|
|
|
- <view class="card-desc">{{ card.desc }}</view>
|
|
|
+ <CustomNav title="医生首页" leftType="scan" @scan="handleScan" :opacity="0" />
|
|
|
+ <view class="page-container">
|
|
|
+ <view class="content">
|
|
|
+ <view class="user-info">
|
|
|
+ <view class="avatar-section">
|
|
|
+ <view class="avatar">
|
|
|
+ <view class="avatar-frame">
|
|
|
+ <image class="avatar-img" :src="avatarSrc" mode="aspectFill" />
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="user-details">
|
|
|
+ <text class="username">{{ user.nickname || '未登录' }}</text>
|
|
|
+ <text class="user-title" v-if="user.title">职称: {{ user.title }}</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
+
|
|
|
+ <view class="function-container">
|
|
|
+ <view class="function-row">
|
|
|
+ <view class="function-item blue" @click="onItemClick('病人管理')">
|
|
|
+ <view class="item-content">
|
|
|
+ <view class="title-row">
|
|
|
+ <view class="item-line"></view>
|
|
|
+ <text class="item-title">病人管理</text>
|
|
|
+ </view>
|
|
|
+ <text class="item-desc">管理慢性病患者</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="function-item orange" @click="onItemClick('复诊管理')">
|
|
|
+ <view class="item-content">
|
|
|
+ <view class="title-row">
|
|
|
+ <view class="item-line"></view>
|
|
|
+ <text class="item-title">复诊管理</text>
|
|
|
+ </view>
|
|
|
+ <text class="item-desc">安排复诊随访</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="today-reminder-card">
|
|
|
+ <view class="card-header">
|
|
|
+ <text class="card-title">今日提醒</text>
|
|
|
+ </view>
|
|
|
+ <view class="card-content">
|
|
|
+ <view class="reminder-item" @click="onItemClick('复诊管理')">
|
|
|
+ <view class="reminder-icon">
|
|
|
+ <image src="/static/icons/remixicon/time-line.svg" class="icon" />
|
|
|
+ </view>
|
|
|
+ <view class="reminder-text">
|
|
|
+ <text class="reminder-number">{{ todayReminders.followUpCount }}</text>
|
|
|
+ <text class="reminder-label">待处理复诊</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="reminder-item" @click="onItemClick('病人管理')">
|
|
|
+ <view class="reminder-icon">
|
|
|
+ <image src="/static/icons/remixicon/alert-line.svg" class="icon" />
|
|
|
+ </view>
|
|
|
+ <view class="reminder-text">
|
|
|
+ <text class="reminder-number">{{ todayReminders.abnormalCount }}</text>
|
|
|
+ <text class="reminder-label">异常患者</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="patient-activity-card">
|
|
|
+ <view class="card-header">
|
|
|
+ <text class="card-title">患者动态</text>
|
|
|
+ </view>
|
|
|
+ <view class="activity-card-content">
|
|
|
+ <view class="activity-item" v-for="(activity, index) in patientActivities" :key="index">
|
|
|
+ <view class="activity-avatar">
|
|
|
+ <image :src="activity.patientAvatar" class="avatar-img" mode="aspectFill" />
|
|
|
+ </view>
|
|
|
+ <view class="activity-text">
|
|
|
+ <text class="activity-desc">{{ activity.desc }}</text>
|
|
|
+ <text class="activity-time">{{ activity.time }}</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view v-if="patientActivities.length === 0" class="no-activity">
|
|
|
+ <text>暂无患者动态</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
</view>
|
|
|
</view>
|
|
|
<TabBar />
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
-import { ref } from 'vue'
|
|
|
+import { ref, computed } from 'vue'
|
|
|
import { onShow } from '@dcloudio/uni-app'
|
|
|
import CustomNav from '@/components/custom-nav.vue'
|
|
|
import TabBar from '@/components/tab-bar.vue'
|
|
|
-import { isLoggedIn as checkLogin, getRole } from '@/composables/useAuth'
|
|
|
|
|
|
-const title = ref('Hello')
|
|
|
+const user = ref<{ avatar?: string; nickname?: string; title?: string }>({})
|
|
|
|
|
|
-const bannerImages = [
|
|
|
- '/static/carousel/BHFIIABBCDJII-5kCEkD6zh9.png',
|
|
|
- '/static/carousel/BHFIIABBDGHEA-wtWLrLS75o.png',
|
|
|
- '/static/carousel/BHFIIABBHJBAH-yDeckRiiQP.png'
|
|
|
-]
|
|
|
+const defaultAvatarUrl = 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0'
|
|
|
|
|
|
-const cards = [
|
|
|
- { title: '健康档案', desc: '管理您的健康信息' },
|
|
|
- { title: '慢病管理', desc: '查看慢病相关数据' },
|
|
|
- { title: '健康咨询', desc: '在线咨询医生' },
|
|
|
- { title: '用药提醒', desc: '设置用药提醒' }
|
|
|
-]
|
|
|
+const avatarSrc = computed(() => {
|
|
|
+ const a = user.value?.avatar
|
|
|
+ if (!a) return defaultAvatarUrl
|
|
|
+ try {
|
|
|
+ const s = String(a)
|
|
|
+ if (/^(https?:\/\/|data:|wxfile:\/\/|file:\/\/|\/static\/)/i.test(s)) {
|
|
|
+ return s
|
|
|
+ }
|
|
|
+ if (/^(\.|\/|temp)/i.test(s)) return s
|
|
|
+ } catch (e) {
|
|
|
+ // fallback
|
|
|
+ }
|
|
|
+ return defaultAvatarUrl
|
|
|
+})
|
|
|
|
|
|
-onShow(() => {
|
|
|
+const todayReminders = ref({
|
|
|
+ followUpCount: 0,
|
|
|
+ abnormalCount: 0
|
|
|
+})
|
|
|
+
|
|
|
+const patientActivities = ref([
|
|
|
+ {
|
|
|
+ desc: '患者张三血糖数据异常,请关注',
|
|
|
+ time: '10分钟前',
|
|
|
+ patientAvatar: 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ desc: '患者李四完成了今日复诊',
|
|
|
+ time: '1小时前',
|
|
|
+ patientAvatar: 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ desc: '患者王五上传了血压数据',
|
|
|
+ time: '2小时前',
|
|
|
+ patientAvatar: 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0'
|
|
|
+ }
|
|
|
+])
|
|
|
+
|
|
|
+const loadUser = () => {
|
|
|
try {
|
|
|
- const logged = checkLogin()
|
|
|
- if (!logged) {
|
|
|
- return
|
|
|
+ const u = uni.getStorageSync('user_info')
|
|
|
+ if (u) {
|
|
|
+ user.value = u
|
|
|
}
|
|
|
+ } catch (e) {
|
|
|
+ // ignore
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
- const r = getRole()
|
|
|
- if (r === 3) {
|
|
|
- console.log('[index] redirecting to patient index, role=', r)
|
|
|
- uni.reLaunch({ url: '/pages/patient/index/index' })
|
|
|
+const fetchUserInfo = async () => {
|
|
|
+ try {
|
|
|
+ const token = uni.getStorageSync('token')
|
|
|
+ if (!token) return
|
|
|
+ uni.showLoading({ title: '加载中...' })
|
|
|
+ const response = await uni.request({
|
|
|
+ url: 'https://wx.baiyun.work/user_info',
|
|
|
+ method: 'POST',
|
|
|
+ header: {
|
|
|
+ 'Content-Type': 'application/json',
|
|
|
+ 'Authorization': `Bearer ${token}`
|
|
|
+ },
|
|
|
+ data: {}
|
|
|
+ })
|
|
|
+ uni.hideLoading()
|
|
|
+ console.log('User info response:', response)
|
|
|
+ const resp = response.data as any
|
|
|
+ if (response.statusCode === 401) {
|
|
|
+ // Token 无效,清除并跳转登录
|
|
|
+ uni.removeStorageSync('token')
|
|
|
+ uni.removeStorageSync('role')
|
|
|
+ user.value = {}
|
|
|
+ uni.reLaunch({ url: '/pages/public/login/index' })
|
|
|
return
|
|
|
}
|
|
|
+ if (resp && resp.code === 200 && resp.data) {
|
|
|
+ user.value = resp.data
|
|
|
+ uni.setStorageSync('user_info', resp.data)
|
|
|
+ if (!resp.data.nickname || !resp.data.avatar) {
|
|
|
+ uni.navigateTo({ url: '/pages/doctor/profile/index' })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } catch (err) {
|
|
|
+ uni.hideLoading()
|
|
|
+ console.error('Fetch user info error:', err)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+const fetchTodayReminders = async () => {
|
|
|
+ try {
|
|
|
+ const token = uni.getStorageSync('token')
|
|
|
+ if (!token) return
|
|
|
+ const response = await uni.request({
|
|
|
+ url: 'https://wx.baiyun.work/doctor/today_reminders',
|
|
|
+ method: 'GET',
|
|
|
+ header: {
|
|
|
+ 'Authorization': `Bearer ${token}`
|
|
|
+ }
|
|
|
+ })
|
|
|
+ const resp = response.data as any
|
|
|
+ if (resp && resp.code === 200 && resp.data) {
|
|
|
+ todayReminders.value = resp.data
|
|
|
+ }
|
|
|
} catch (err) {
|
|
|
- console.error('检查登录态时出错:', err)
|
|
|
+ console.error('Fetch today reminders error:', err)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+const fetchPatientActivities = async () => {
|
|
|
+ try {
|
|
|
+ const token = uni.getStorageSync('token')
|
|
|
+ if (!token) return
|
|
|
+ const response = await uni.request({
|
|
|
+ url: 'https://wx.baiyun.work/doctor/patient_activities',
|
|
|
+ method: 'GET',
|
|
|
+ header: {
|
|
|
+ 'Authorization': `Bearer ${token}`
|
|
|
+ }
|
|
|
+ })
|
|
|
+ const resp = response.data as any
|
|
|
+ if (resp && resp.code === 200 && resp.data) {
|
|
|
+ patientActivities.value = resp.data
|
|
|
+ }
|
|
|
+ } catch (err) {
|
|
|
+ console.error('Fetch patient activities error:', err)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 如果在微信小程序端且未登录,自动跳转到登录页
|
|
|
+onShow(() => {
|
|
|
+ const token = uni.getStorageSync('token')
|
|
|
+ if (!token) {
|
|
|
+ // 使用 uni.reLaunch 替代 navigateTo,确保页面栈被清空
|
|
|
+ uni.reLaunch({ url: '/pages/public/login/index' })
|
|
|
+ } else {
|
|
|
+ fetchUserInfo()
|
|
|
+ fetchTodayReminders()
|
|
|
+ fetchPatientActivities()
|
|
|
}
|
|
|
})
|
|
|
|
|
|
@@ -66,74 +249,269 @@ function handleScan(res: any) {
|
|
|
uni.showToast({ title: '未识别到有效内容', icon: 'none' })
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+function onItemClick(type: string) {
|
|
|
+ if (type === '病人管理') {
|
|
|
+ uni.navigateTo({ url: '/pages/doctor/manage/index' })
|
|
|
+ } else if (type === '复诊管理') {
|
|
|
+ uni.navigateTo({ url: '/pages/doctor/manage/followup' })
|
|
|
+ } else {
|
|
|
+ uni.showToast({ title: '功能正在开发中', icon: 'none' })
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style>
|
|
|
+.page-container {
|
|
|
+ min-height: 100vh;
|
|
|
+ padding-top: calc(var(--status-bar-height) + 44px);
|
|
|
+ padding-bottom: 100rpx;
|
|
|
+ box-sizing: border-box;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
|
+}
|
|
|
+
|
|
|
.content {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.user-info {
|
|
|
+ /* background-color: #fff; */
|
|
|
+ padding: 40rpx;
|
|
|
+ margin-top: 0rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.avatar-section {
|
|
|
display: flex;
|
|
|
- flex-direction: column;
|
|
|
align-items: center;
|
|
|
- justify-content: flex-start;
|
|
|
- padding-top: calc(var(--status-bar-height) + 44px);
|
|
|
- height: calc(100vh - var(--status-bar-height) - 44px);
|
|
|
- background: #f7f8fa;
|
|
|
}
|
|
|
|
|
|
-.banner-swiper {
|
|
|
- width: 670rpx;
|
|
|
- max-width: 100vw;
|
|
|
- height: 400rpx;
|
|
|
- margin: 20rpx auto 30rpx auto;
|
|
|
- border-radius: 16rpx;
|
|
|
+.avatar {
|
|
|
+ width: 120rpx;
|
|
|
+ height: 120rpx;
|
|
|
+ border-radius: 50%;
|
|
|
+ border: 1px solid rgba(128, 128, 128, 0.5);
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ margin-right: 30rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.avatar-frame {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ border-radius: 50%;
|
|
|
overflow: hidden;
|
|
|
- box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.08);
|
|
|
- background: #fff;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
}
|
|
|
|
|
|
-.banner-img {
|
|
|
+.avatar-img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
+ object-fit: cover;
|
|
|
+}
|
|
|
+
|
|
|
+.user-details {
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+
|
|
|
+.username {
|
|
|
+ font-size: 36rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #333;
|
|
|
+ display: block;
|
|
|
+ margin-bottom: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.user-title {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #666;
|
|
|
display: block;
|
|
|
+ margin-bottom: 10rpx;
|
|
|
}
|
|
|
|
|
|
-.card-list {
|
|
|
- width: 90%;
|
|
|
+.function-container {
|
|
|
+ padding-inline: 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.function-row {
|
|
|
display: flex;
|
|
|
- flex-direction: column;
|
|
|
- gap: 32rpx;
|
|
|
- padding: 0 40rpx;
|
|
|
- margin: 0 auto;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
}
|
|
|
|
|
|
-.card {
|
|
|
- background: #fff;
|
|
|
- border-radius: 16rpx;
|
|
|
- box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.06);
|
|
|
- padding: 40rpx 32rpx;
|
|
|
- box-sizing: border-box;
|
|
|
+.function-row:last-child {
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.function-item {
|
|
|
+ flex: 1;
|
|
|
+ height: 160rpx;
|
|
|
+ background-color: #fff;
|
|
|
+ border-radius: 20rpx;
|
|
|
+ margin: 0 10rpx;
|
|
|
+ position: relative;
|
|
|
+ box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1);
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.item-content {
|
|
|
+ position: absolute;
|
|
|
+ top: 20rpx;
|
|
|
+ left: 20rpx;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
}
|
|
|
|
|
|
-.card-title {
|
|
|
+.title-row {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin-bottom: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.item-line {
|
|
|
+ width: 8rpx;
|
|
|
+ height: 48rpx;
|
|
|
+ margin-right: 15rpx;
|
|
|
+ border-radius: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.blue .item-line {
|
|
|
+ background-color: #3742fa;
|
|
|
+}
|
|
|
+
|
|
|
+.orange .item-line {
|
|
|
+ background-color: #ffa502;
|
|
|
+}
|
|
|
+
|
|
|
+.item-title {
|
|
|
font-size: 36rpx;
|
|
|
font-weight: bold;
|
|
|
color: #333;
|
|
|
- margin-bottom: 16rpx;
|
|
|
}
|
|
|
|
|
|
-.card-desc {
|
|
|
+.item-desc {
|
|
|
font-size: 28rpx;
|
|
|
- color: #888;
|
|
|
+ color: #666;
|
|
|
+}
|
|
|
+
|
|
|
+.today-reminder-card {
|
|
|
+ background-color: #fff;
|
|
|
+ border-radius: 20rpx;
|
|
|
+ margin: 20rpx;
|
|
|
+ box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1);
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.card-header {
|
|
|
+ padding: 20rpx;
|
|
|
+ border-bottom: 1rpx solid #eee;
|
|
|
+}
|
|
|
+
|
|
|
+.card-title {
|
|
|
+ font-size: 36rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+.card-content {
|
|
|
+ padding: 20rpx;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-around;
|
|
|
+}
|
|
|
+
|
|
|
+.reminder-item {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex: 1;
|
|
|
+ padding: 20rpx;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ background-color: #f9f9f9;
|
|
|
+ margin: 0 10rpx;
|
|
|
}
|
|
|
|
|
|
-.text-area {
|
|
|
+.reminder-icon {
|
|
|
+ width: 60rpx;
|
|
|
+ height: 60rpx;
|
|
|
+ margin-right: 20rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.icon {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.reminder-text {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+}
|
|
|
+
|
|
|
+.reminder-number {
|
|
|
+ font-size: 48rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #333;
|
|
|
+}
|
|
|
+
|
|
|
+.activity-card-content {
|
|
|
+ padding: 20rpx;
|
|
|
+ display: block;
|
|
|
+}
|
|
|
+
|
|
|
+.patient-activity-card {
|
|
|
+ background-color: #fff;
|
|
|
+ border-radius: 20rpx;
|
|
|
+ margin: 20rpx;
|
|
|
+ box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.1);
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.activity-item {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
+ padding: 20rpx;
|
|
|
+ border-bottom: 1rpx solid #eee;
|
|
|
+}
|
|
|
+
|
|
|
+.activity-item:last-child {
|
|
|
+ margin-bottom: 0;
|
|
|
+ border-bottom: none;
|
|
|
+}
|
|
|
+
|
|
|
+.activity-avatar {
|
|
|
+ width: 60rpx;
|
|
|
+ height: 60rpx;
|
|
|
+ border-radius: 50%;
|
|
|
+ border: 1px solid rgba(128, 128, 128, 0.5);
|
|
|
+ margin-right: 20rpx;
|
|
|
+ overflow: hidden;
|
|
|
display: flex;
|
|
|
+ align-items: center;
|
|
|
justify-content: center;
|
|
|
}
|
|
|
|
|
|
-.title {
|
|
|
- font-size: 36rpx;
|
|
|
- color: #8f8f94;
|
|
|
+.activity-text {
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+
|
|
|
+.activity-desc {
|
|
|
+ font-size: 32rpx;
|
|
|
+ color: #333;
|
|
|
+ display: block;
|
|
|
+ margin-bottom: 10rpx;
|
|
|
+}
|
|
|
+
|
|
|
+.activity-time {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #666;
|
|
|
+}
|
|
|
+
|
|
|
+.no-activity {
|
|
|
+ padding: 40rpx;
|
|
|
+ text-align: center;
|
|
|
+ color: #999;
|
|
|
}
|
|
|
</style>
|