1223 lines
30 KiB
Vue
1223 lines
30 KiB
Vue
<template>
|
||
<navBar title="肝胆回放" />
|
||
<view class="page">
|
||
<!-- 筛选标签栏 -->
|
||
<view class="filter-bar">
|
||
<view
|
||
class="filter-item"
|
||
@click="showTimePopup"
|
||
:class="{ active: monthName }"
|
||
>
|
||
<text>{{ monthName ? monthName : "会议时间" }}</text>
|
||
<up-image
|
||
:src="monthName ? selectOn : select"
|
||
width="26rpx"
|
||
height="26rpx"
|
||
></up-image>
|
||
</view>
|
||
<view class="filter-divider"></view>
|
||
<view
|
||
class="filter-item"
|
||
@click="showLocationPopup"
|
||
:class="{ active: typeName }"
|
||
>
|
||
<text>{{ typeName ? typeName : "会议类别" }}</text>
|
||
<up-image
|
||
:src="typeName ? selectOn : select"
|
||
width="26rpx"
|
||
height="26rpx"
|
||
></up-image>
|
||
</view>
|
||
<!-- <view class="filter-divider"></view>
|
||
<view class="filter-item">
|
||
<text>会议回放</text>
|
||
</view> -->
|
||
</view>
|
||
|
||
<!-- 可滚动内容区域 -->
|
||
<scroll-view
|
||
ref="scrollView"
|
||
class="scroll-content"
|
||
scroll-y="true"
|
||
refresher-enabled="true"
|
||
:refresher-triggered="isRefreshing"
|
||
:refresher-threshold="100"
|
||
@refresherrefresh="onRefresh"
|
||
@scrolltolower="onLoadMore"
|
||
:lower-threshold="100"
|
||
:scroll-top="scrollTop"
|
||
:enable-back-to-top="true"
|
||
>
|
||
<!-- 时间标题 -->
|
||
|
||
<!-- 会议列表 -->
|
||
<view class="meeting-list" v-if="meetingList.length > 0">
|
||
<template
|
||
v-for="(group, groupIndex) in groupedMeetings"
|
||
:key="groupIndex"
|
||
>
|
||
<view class="time-header">{{ group.monthYear }}</view>
|
||
<view
|
||
class="meetcell"
|
||
v-for="(item, index) in group.items"
|
||
:key="item.id || index"
|
||
>
|
||
<view class="meeting-item">
|
||
<!-- 左侧日期标识 -->
|
||
<view
|
||
class="date-tag"
|
||
:style="{ backgroundColor: formatTagColor(index) }"
|
||
>
|
||
<text class="date-text">{{ formatDay(item.begin_date) }}</text>
|
||
</view>
|
||
|
||
<!-- 会议内容 -->
|
||
<view class="meeting-content">
|
||
<view class="meeting-title">{{ item.title }}</view>
|
||
<view
|
||
class="meeting-poster"
|
||
@click="playVideo(item)"
|
||
v-if="item.liveimg"
|
||
>
|
||
<image
|
||
:src="docUrl + item.liveimg"
|
||
class="poster-image"
|
||
mode="aspectFill"
|
||
@error="onImageError"
|
||
@load="onImageLoad"
|
||
:data-item-id="item.id"
|
||
></image>
|
||
<view class="play-btn">
|
||
<up-image
|
||
:src="playImg"
|
||
width="108rpx"
|
||
height="108rpx"
|
||
></up-image>
|
||
</view>
|
||
</view>
|
||
<view class="meeting-info">
|
||
<view class="info-item">
|
||
<view class="timebox">
|
||
<up-image
|
||
:src="timeImg"
|
||
width="24rpx"
|
||
height="24rpx"
|
||
></up-image>
|
||
</view>
|
||
<text class="info-text">{{
|
||
formatDate(item.begin_date, "YYYY.MM.DD")
|
||
}}</text>
|
||
<text
|
||
class="info-text"
|
||
v-if="
|
||
formatDate(item.end_date, 'YYYY.MM.DD') !=
|
||
formatDate(item.begin_date, 'YYYY.MM.DD')
|
||
"
|
||
>{{ "-" + formatDate(item.end_date, "YYYY.MM.DD") }}</text
|
||
>
|
||
</view>
|
||
<view class="info-item">
|
||
<uni-icons
|
||
type="location"
|
||
size="14"
|
||
color="#999"
|
||
></uni-icons>
|
||
<text class="info-text">{{ item.location }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
</view>
|
||
|
||
<!-- 空状态 -->
|
||
<view class="empty-state" v-else-if="!isRefreshing">
|
||
<empty></empty>
|
||
</view>
|
||
|
||
<!-- 加载更多提示 -->
|
||
<view class="load-more" v-if="showLoadMore">
|
||
<view class="load-more-content" v-if="isLoadingMore">
|
||
<uni-icons type="spinner-cycle" size="20" color="#999"></uni-icons>
|
||
<text class="load-more-text">加载中...</text>
|
||
</view>
|
||
<view
|
||
class="load-more-content"
|
||
v-else-if="hasMoreData && meetingList.length > 0"
|
||
>
|
||
<text class="load-more-text">上拉加载更多</text>
|
||
</view>
|
||
<view
|
||
class="load-more-content"
|
||
v-else-if="meetingList.length > 0 && !isLoadingMore"
|
||
>
|
||
<text class="load-more-text">没有更多数据了</text>
|
||
</view>
|
||
</view>
|
||
</scroll-view>
|
||
|
||
<!-- 时间选择弹窗 -->
|
||
<view class="time-popup" v-if="isTimePopupShow" @click="hideTimePopup">
|
||
<view class="popup-mask"></view>
|
||
<view class="time-popup-content" @click.stop>
|
||
<view class="time-list">
|
||
<view
|
||
class="time-item"
|
||
v-for="(month, index) in monthList"
|
||
:key="index"
|
||
:class="{ active: selectedMonth === month.value }"
|
||
@click="selectMonth(month)"
|
||
>
|
||
<text>{{ month.label }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view
|
||
class="time-popup"
|
||
v-if="isLocationPopupShow"
|
||
@click="hideLocationPopup"
|
||
>
|
||
<view class="popup-mask"></view>
|
||
<view class="time-popup-content" @click.stop>
|
||
<view class="time-list">
|
||
<view
|
||
class="time-item"
|
||
v-for="(location, index) in locationList"
|
||
:key="index"
|
||
:class="{ active: selectedType === location.code }"
|
||
@click="selectLocation(location)"
|
||
>
|
||
<text>{{ location.name }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<!-- 过往会议提示 -->
|
||
<!-- <view class="history-tip" @click="goToMeetHistroy">
|
||
<view class="tip-icon">
|
||
<up-icon name="clock" color="#00cbc0" size="28"></up-icon>
|
||
</view>
|
||
<text class="tip-text">过往会议</text>
|
||
</view> -->
|
||
</view>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref, nextTick, computed } from "vue";
|
||
import { onShow, onHide } from "@dcloudio/uni-app";
|
||
import CustomTabbar from "@/components/tabBar/tabBar.vue";
|
||
import api from "@/api/api.js";
|
||
import select from "@/static/triangle_normal.png";
|
||
import selectOn from "@/static/triangle_green_theme.png";
|
||
import playImg from "@/static/bofang.png";
|
||
import timeImg from "@/static/play_long.png";
|
||
import docUrl from "@/utils/docUrl";
|
||
import dayjs from "dayjs";
|
||
import navTo from "@/utils/navTo";
|
||
import navBar from "@/components/navBar/navBar.vue";
|
||
import empty from "@/components/empty/empty.vue";
|
||
// 弹窗状态
|
||
const isTimePopupShow = ref(false);
|
||
const isLocationPopupShow = ref(false);
|
||
const selectedMonth = ref("");
|
||
const monthName = ref("");
|
||
const selectedType = ref("");
|
||
const typeName = ref("");
|
||
// 下拉刷新和上拉加载状态
|
||
const isRefreshing = ref(false);
|
||
const isLoadingMore = ref(false);
|
||
const hasMoreData = ref(true);
|
||
const showLoadMore = ref(true);
|
||
const currentPage = ref(1);
|
||
const pageSize = ref(10);
|
||
const scrollTop = ref(0);
|
||
|
||
// 月份数据
|
||
// 生成【年份】列表(从2015年到今年)
|
||
const monthList = ref([]);
|
||
const generateMonthList = () => {
|
||
const years = [];
|
||
const currentDate = new Date();
|
||
const currentYear = currentDate.getFullYear();
|
||
// 从2016年到今年
|
||
for (let year = 2016; year <= currentYear; year++) {
|
||
years.push({
|
||
value: year.toString(),
|
||
label: `${year}年`,
|
||
year: year,
|
||
});
|
||
}
|
||
|
||
monthList.value = years.reverse();
|
||
console.log("生成年份列表:", monthList.value);
|
||
};
|
||
const locationList = ref([
|
||
{ code: 1, name: "全国会议" },
|
||
{ code: 2, name: "省级会议" },
|
||
{ code: 3, name: "市级会议" },
|
||
{ code: 4, name: "国际会议" },
|
||
{ code: 5, name: "其他会议" },
|
||
]);
|
||
const getVideoType = async (name) => {
|
||
const response = await api.getTypeUuidByName({
|
||
name: name,
|
||
});
|
||
if (response.code === 200) {
|
||
if (!response.data) {
|
||
uni.showModal({
|
||
title: "温馨提示",
|
||
content: "该会议视频暂不支持回放",
|
||
showCancel: false,
|
||
});
|
||
} else {
|
||
navTo({
|
||
url:
|
||
"/pages_app/replayList/replayList?name=" + encodeURIComponent(name),
|
||
});
|
||
}
|
||
}
|
||
};
|
||
|
||
// 会议列表数据
|
||
const meetingList = ref([]);
|
||
|
||
// 按年月分组的会议列表
|
||
const groupedMeetings = computed(() => {
|
||
if (!meetingList.value || meetingList.value.length === 0) {
|
||
return [];
|
||
}
|
||
|
||
const groups = {};
|
||
|
||
meetingList.value.forEach((item) => {
|
||
const monthYear = formatDate(item.begin_date, "YYYY年MM月");
|
||
|
||
if (!groups[monthYear]) {
|
||
groups[monthYear] = {
|
||
monthYear: monthYear,
|
||
items: [],
|
||
};
|
||
}
|
||
|
||
groups[monthYear].items.push(item);
|
||
console.log(groups);
|
||
});
|
||
|
||
// 转换为数组并按时间排序
|
||
return Object.values(groups).sort((a, b) => {
|
||
// 按年月排序
|
||
const dateA = dayjs(a.items[0].begin_date);
|
||
const dateB = dayjs(b.items[0].begin_date);
|
||
return dateB.isBefore(dateA) ? -1 : 1;
|
||
});
|
||
});
|
||
const formatTagColor = (index) => {
|
||
const colors = ["#f94438", "#ffb93f", "#4ecdc4", "#92d758", "#FF9800"];
|
||
return colors[index % colors.length];
|
||
};
|
||
// 页面显示时获取会议列表数据
|
||
onShow(() => {
|
||
generateMonthList();
|
||
getMeetingList(true);
|
||
});
|
||
|
||
onHide(() => {});
|
||
const meetingListBySearch = async (isRefresh = false) => {
|
||
if (isRefresh) {
|
||
currentPage.value = 1;
|
||
hasMoreData.value = true;
|
||
meetingList.value = [];
|
||
}
|
||
|
||
const params = {
|
||
page: currentPage.value,
|
||
pageSize: pageSize.value,
|
||
month: selectedMonth.value,
|
||
location: selectedProvince.value,
|
||
status: "",
|
||
};
|
||
|
||
try {
|
||
console.log("获取会议列表参数:", params);
|
||
const response = await api.meetingListBySearch(params);
|
||
console.log("会议列表API响应:", response);
|
||
|
||
if (response && response.code == 1 && response.data) {
|
||
const { list, totalPage, pageNumber, totalRow } = response.data;
|
||
|
||
console.log("解析后的数据:", { list, totalPage, pageNumber, totalRow });
|
||
|
||
if (Array.isArray(list) && list.length > 0) {
|
||
// 处理会议数据,根据实际API数据结构映射字段
|
||
const processedItems = list
|
||
.map((item) => {
|
||
// 解析开始日期,提取日期部分用于显示
|
||
const beginDate = dayjs(item.begin_date);
|
||
const day = beginDate.format("DD");
|
||
|
||
// 根据状态确定标签颜色
|
||
const tagColor = getTagColor(item.status);
|
||
|
||
// 格式化时间显示
|
||
const timeStr = formatDate(item.begin_date, "YYYY.MM.DD");
|
||
|
||
return {
|
||
id: item.id,
|
||
begin_date: day, // 用于左侧日期标识显示
|
||
tagColor: tagColor,
|
||
title: item.title,
|
||
liveimg: item.liveimg,
|
||
poster: item.liveimg, // 使用 liveimg 作为海报
|
||
time: timeStr,
|
||
location: item.location || "线上",
|
||
status: getStatusText(item.status),
|
||
// 保留原始数据用于其他功能
|
||
originalData: item,
|
||
begin_date_timestamp: item.begin_date_timestamp,
|
||
end_date_timestamp: item.end_date_timestamp,
|
||
begin_date: item.begin_date,
|
||
end_date: item.end_date,
|
||
liveurl: item.liveurl,
|
||
spareurl: item.spareurl,
|
||
path: item.path,
|
||
status_code: item.status,
|
||
};
|
||
})
|
||
.reverse();
|
||
|
||
if (isRefresh) {
|
||
meetingList.value = processedItems;
|
||
} else {
|
||
meetingList.value.push(...processedItems);
|
||
}
|
||
|
||
// 更新分页状态
|
||
hasMoreData.value = totalPage > pageNumber;
|
||
showLoadMore.value = totalRow > 0;
|
||
|
||
console.log("会议列表更新成功,当前总数:", meetingList.value.length);
|
||
console.log("分页信息:", {
|
||
currentPage: currentPage.value,
|
||
totalPage,
|
||
pageNumber,
|
||
totalRow,
|
||
hasMore: hasMoreData.value,
|
||
});
|
||
} else {
|
||
console.log("API返回的数据为空");
|
||
if (isRefresh) {
|
||
meetingList.value = [];
|
||
}
|
||
}
|
||
} else {
|
||
console.log("API响应格式不正确:", response);
|
||
if (isRefresh) {
|
||
meetingList.value = [];
|
||
}
|
||
}
|
||
} catch (error) {
|
||
console.error("获取会议列表失败:", error);
|
||
if (isRefresh) {
|
||
meetingList.value = [];
|
||
}
|
||
uni.showToast({
|
||
title: "获取会议列表失败",
|
||
icon: "error",
|
||
duration: 2000,
|
||
});
|
||
}
|
||
};
|
||
// 获取会议列表数据的函数
|
||
const getMeetingList = async (isRefresh = false) => {
|
||
if (isRefresh) {
|
||
currentPage.value = 1;
|
||
hasMoreData.value = true;
|
||
meetingList.value = [];
|
||
}
|
||
|
||
const params = {
|
||
page: currentPage.value,
|
||
pageSize: pageSize.value,
|
||
year: selectedMonth.value,
|
||
type: selectedType.value,
|
||
};
|
||
|
||
try {
|
||
console.log("获取会议列表参数:", params);
|
||
const response = await api.meetingV2Video(params);
|
||
console.log("会议列表API响应:", response);
|
||
|
||
if (response && response.code == 200 && response.data) {
|
||
const { list, totalRow, pageNumber, totalPage } = response.data;
|
||
console.log("list", list);
|
||
console.log("解析后的数据:", { list, totalRow, pageNumber, totalPage });
|
||
|
||
if (Array.isArray(list) && list.length >= 0) {
|
||
// 处理会议数据,根据实际API数据结构映射字段
|
||
const processedItems = list.map((item) => {
|
||
// 解析开始日期,提取日期部分用于显示
|
||
const beginDate = dayjs(item.begin_date);
|
||
const day = beginDate.format("DD");
|
||
|
||
// 根据状态确定标签颜色
|
||
const tagColor = getTagColor(item.status);
|
||
|
||
// 格式化时间显示
|
||
const timeStr = formatDate(item.begin_date, "YYYY.MM.DD");
|
||
|
||
return {
|
||
id: item.id,
|
||
begin_date: day, // 用于左侧日期标识显示
|
||
tagColor: tagColor,
|
||
title: item.title,
|
||
liveimg: item.liveimg,
|
||
poster: item.liveimg, // 使用 liveimg 作为海报
|
||
time: timeStr,
|
||
location: item.location || "线上",
|
||
status: getStatusText(item.status),
|
||
// 保留原始数据用于其他功能
|
||
originalData: item,
|
||
begin_date_timestamp: item.begin_date_timestamp,
|
||
end_date_timestamp: item.end_date_timestamp,
|
||
begin_date: item.begin_date,
|
||
end_date: item.end_date,
|
||
liveurl: item.liveurl,
|
||
spareurl: item.spareurl,
|
||
path: item.path,
|
||
status_code: item.status,
|
||
};
|
||
});
|
||
|
||
if (isRefresh) {
|
||
meetingList.value = processedItems;
|
||
} else {
|
||
meetingList.value.push(...processedItems);
|
||
}
|
||
|
||
// 更新分页状态
|
||
hasMoreData.value = totalPage > pageNumber;
|
||
showLoadMore.value = totalRow > 0 || !processedItems.length == 0;
|
||
|
||
console.log("会议列表更新成功,当前总数:", meetingList.value.length);
|
||
//console.log('分页信息:', { currentPage: currentPage.value, total, pages, hasMore: hasMoreData.value });
|
||
} else {
|
||
console.log("API返回的数据为空");
|
||
if (isRefresh) {
|
||
meetingList.value = [];
|
||
}
|
||
}
|
||
} else {
|
||
console.log("API响应格式不正确:", response);
|
||
if (isRefresh) {
|
||
meetingList.value = [];
|
||
}
|
||
}
|
||
} catch (error) {
|
||
console.error("获取会议列表失败:", error);
|
||
if (isRefresh) {
|
||
meetingList.value = [];
|
||
}
|
||
uni.showToast({
|
||
title: "获取会议列表失败",
|
||
icon: "error",
|
||
duration: 2000,
|
||
});
|
||
}
|
||
};
|
||
|
||
// 根据会议状态获取标签颜色
|
||
const getTagColor = (status) => {
|
||
const colorMap = {
|
||
1: "#FF4444", // 预告
|
||
2: "#00BCD4", // 直播中
|
||
3: "#9C27B0", // 已结束/回放
|
||
4: "#4CAF50", // 已完成
|
||
5: "#FF9800", // 已取消
|
||
};
|
||
return colorMap[status] || "#FF4444";
|
||
};
|
||
|
||
// 获取状态文本
|
||
const getStatusText = (status) => {
|
||
const statusMap = {
|
||
1: "预告",
|
||
2: "直播中",
|
||
3: "已结束",
|
||
4: "已完成",
|
||
5: "已取消",
|
||
};
|
||
return statusMap[status] || "已结束";
|
||
};
|
||
|
||
// 获取状态样式类
|
||
const getStatusClass = (status) => {
|
||
const classMap = {
|
||
1: "status-preview",
|
||
2: "status-live",
|
||
3: "status-ended",
|
||
4: "status-completed",
|
||
5: "status-cancelled",
|
||
};
|
||
return classMap[status] || "status-preview";
|
||
};
|
||
|
||
// 使用 dayjs 格式化日期函数,包含年月
|
||
const formatDate = (date, format = "YYYY-MM") => {
|
||
if (!date) return "";
|
||
|
||
try {
|
||
// 使用 dayjs 解析日期
|
||
const dayjsDate = dayjs(date);
|
||
|
||
// 检查日期是否有效
|
||
if (!dayjsDate.isValid()) {
|
||
console.error("无效的日期:", date);
|
||
return "";
|
||
}
|
||
|
||
// 根据格式参数返回不同格式
|
||
switch (format) {
|
||
case "YYYY-MM":
|
||
return dayjsDate.format("YYYY-MM");
|
||
case "YYYY-MM-DD":
|
||
return dayjsDate.format("YYYY-MM-DD");
|
||
case "YYYY-MM-DD HH:mm":
|
||
return dayjsDate.format("YYYY-MM-DD HH:mm");
|
||
case "YYYY-MM-DD HH:mm:ss":
|
||
return dayjsDate.format("YYYY-MM-DD HH:mm:ss");
|
||
case "YYYY年MM月":
|
||
return dayjsDate.format("YYYY年MM月");
|
||
case "YYYY年MM月DD日":
|
||
return dayjsDate.format("YYYY年MM月DD日");
|
||
case "MM月":
|
||
return dayjsDate.format("MM月");
|
||
case "MM月DD日":
|
||
return dayjsDate.format("MM月DD日");
|
||
case "YYYY.MM.DD":
|
||
return dayjsDate.format("YYYY.MM.DD");
|
||
case "MM-DD":
|
||
return dayjsDate.format("MM-DD");
|
||
case "MM/DD":
|
||
return dayjsDate.format("MM/DD");
|
||
case "YYYY/MM/DD":
|
||
return dayjsDate.format("YYYY/MM/DD");
|
||
default:
|
||
return dayjsDate.format(format);
|
||
}
|
||
} catch (error) {
|
||
console.error("日期格式化失败:", error);
|
||
return "";
|
||
}
|
||
};
|
||
|
||
// 格式化会议时间
|
||
const formatMeetingTime = (timeStr) => {
|
||
if (!timeStr) return "";
|
||
|
||
try {
|
||
// 使用 dayjs 格式化时间
|
||
const formattedDate = formatDate(timeStr, "YYYY年MM月");
|
||
return formattedDate || "";
|
||
} catch (error) {
|
||
console.error("时间格式化失败:", error);
|
||
return "";
|
||
}
|
||
};
|
||
const formatDay = (timeStr) => {
|
||
if (!timeStr) return "";
|
||
return formatDate(timeStr, "DD");
|
||
};
|
||
// 显示时间选择弹窗
|
||
const showTimePopup = () => {
|
||
isTimePopupShow.value = !isTimePopupShow.value;
|
||
};
|
||
|
||
// 隐藏时间选择弹窗
|
||
const hideTimePopup = () => {
|
||
isTimePopupShow.value = false;
|
||
};
|
||
|
||
// 选择月份
|
||
const selectMonth = (month) => {
|
||
selectedMonth.value = month.value;
|
||
monthName.value = month.label;
|
||
console.log("选择月份:", month.label);
|
||
// 选择月份后重新加载数据
|
||
getMeetingList(true);
|
||
hideTimePopup();
|
||
};
|
||
|
||
// 显示地区选择弹窗
|
||
const showLocationPopup = () => {
|
||
isLocationPopupShow.value = !isLocationPopupShow.value;
|
||
};
|
||
|
||
// 隐藏地区选择弹窗
|
||
const hideLocationPopup = () => {
|
||
isLocationPopupShow.value = false;
|
||
};
|
||
|
||
// 选择省份
|
||
const selectLocation = (location) => {
|
||
selectedType.value = location.code;
|
||
typeName.value = location.name;
|
||
// 选择省份后重新加载数据
|
||
getMeetingList(true);
|
||
hideLocationPopup();
|
||
};
|
||
|
||
// 播放视频
|
||
const playVideo = (item) => {
|
||
getVideoType(item.title);
|
||
|
||
// 这里可以实现视频播放逻辑
|
||
};
|
||
|
||
// 图片加载失败处理
|
||
const onImageError = (e) => {
|
||
const itemId = e.currentTarget.dataset.itemId;
|
||
console.log("图片加载失败,项目ID:", itemId);
|
||
|
||
// 找到对应的项目并设置默认图片
|
||
const itemIndex = meetingList.value.findIndex((item) => item.id === itemId);
|
||
if (itemIndex !== -1) {
|
||
// 如果liveimg加载失败,尝试使用poster
|
||
if (
|
||
meetingList.value[itemIndex].liveimg &&
|
||
meetingList.value[itemIndex].liveimg !==
|
||
meetingList.value[itemIndex].poster
|
||
) {
|
||
console.log("liveimg加载失败,切换到poster");
|
||
meetingList.value[itemIndex].liveimg =
|
||
meetingList.value[itemIndex].poster;
|
||
} else {
|
||
// 如果poster也失败,使用默认图片
|
||
console.log("设置默认图片");
|
||
meetingList.value[itemIndex].poster = "/static/meeting-poster-1.jpg";
|
||
}
|
||
}
|
||
};
|
||
|
||
// 图片加载成功处理
|
||
const onImageLoad = (e) => {
|
||
const itemId = e.currentTarget.dataset.itemId;
|
||
console.log(
|
||
"图片加载成功,项目ID:",
|
||
itemId,
|
||
"图片地址:",
|
||
e.currentTarget.src
|
||
);
|
||
};
|
||
|
||
// 下拉刷新
|
||
const onRefresh = () => {
|
||
isRefreshing.value = true;
|
||
currentPage.value = 1;
|
||
hasMoreData.value = true;
|
||
|
||
// 调用获取会议列表函数
|
||
getMeetingList(true).finally(() => {
|
||
// 延迟关闭刷新状态,给用户更好的体验
|
||
setTimeout(() => {
|
||
isRefreshing.value = false;
|
||
uni.showToast({
|
||
title: "刷新成功",
|
||
icon: "none",
|
||
duration: 1500,
|
||
});
|
||
}, 500);
|
||
});
|
||
};
|
||
|
||
// 上拉加载更多
|
||
const onLoadMore = () => {
|
||
console.log("上拉加载更多");
|
||
if (isLoadingMore.value || !hasMoreData.value) return;
|
||
|
||
isLoadingMore.value = true;
|
||
currentPage.value++;
|
||
|
||
// 调用API获取更多数据
|
||
getMeetingList(false).finally(() => {
|
||
isLoadingMore.value = false;
|
||
});
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
// 颜色变量
|
||
$primary-color: #d32f2f;
|
||
$secondary-color: #8b2316;
|
||
$background-color: #f5f5f5;
|
||
$white: #ffffff;
|
||
$gray-light: #f0f0f0;
|
||
$gray: #666;
|
||
$gray-dark: #333;
|
||
$gray-text: #999;
|
||
$border-color: #e0e0e0;
|
||
$green-accent: #00d4aa;
|
||
$shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||
|
||
.page {
|
||
background-color: $background-color;
|
||
min-height: 100vh;
|
||
padding-bottom: 120rpx;
|
||
}
|
||
|
||
// 可滚动内容区域
|
||
.scroll-content {
|
||
position: fixed;
|
||
top: 268rpx; // 导航栏140rpx + 筛选栏88rpx
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0rpx; // 底部导航栏高度
|
||
width: 100%;
|
||
}
|
||
|
||
// 筛选标签栏
|
||
.filter-bar {
|
||
position: fixed;
|
||
top: calc(var(--status-bar-height) + 44px);
|
||
width: 100%;
|
||
z-index: 2;
|
||
background-color: $white;
|
||
height: 88rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 0 30rpx;
|
||
border-bottom: 2rpx solid $gray-light;
|
||
|
||
.filter-item {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 0 20rpx;
|
||
font-size: 28rpx;
|
||
color: $gray;
|
||
text {
|
||
margin-right: 10rpx;
|
||
}
|
||
&.active {
|
||
color: #8b2316;
|
||
}
|
||
}
|
||
|
||
.filter-divider {
|
||
width: 2rpx;
|
||
height: 32rpx;
|
||
background-color: $border-color;
|
||
margin: 0 60rpx;
|
||
}
|
||
}
|
||
|
||
// 时间选择弹窗
|
||
.time-popup {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
z-index: 1000;
|
||
display: flex;
|
||
|
||
.popup-mask {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
}
|
||
|
||
.time-popup-content {
|
||
margin-top: calc(var(--status-bar-height) + 44px + 90rpx);
|
||
position: relative;
|
||
background-color: $white;
|
||
width: 100%;
|
||
height: calc(100vh - calc(var(--status-bar-height) - 44px - 88rpx));
|
||
|
||
.time-list {
|
||
padding: 0;
|
||
height: 100%;
|
||
overflow-y: auto;
|
||
|
||
.time-item {
|
||
padding: 25rpx 60rpx;
|
||
font-size: 32rpx;
|
||
color: #666;
|
||
border-bottom: 2rpx solid #f0f0f0;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
display: flex;
|
||
align-items: center;
|
||
|
||
&:hover {
|
||
background-color: #f8f8f8;
|
||
}
|
||
|
||
&.active {
|
||
background-color: #f8f8f8;
|
||
color: $primary-color;
|
||
|
||
text {
|
||
font-weight: 500;
|
||
}
|
||
}
|
||
|
||
&:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
text {
|
||
display: block;
|
||
width: 100%;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// 地区选择弹窗
|
||
.location-popup {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
z-index: 1000;
|
||
display: flex;
|
||
|
||
.popup-mask {
|
||
position: absolute;
|
||
top: 0;
|
||
left: 0;
|
||
right: 0;
|
||
bottom: 0;
|
||
}
|
||
|
||
.popup-content {
|
||
margin-top: calc(var(--status-bar-height) + 44px + 90rpx);
|
||
position: relative;
|
||
background-color: $white;
|
||
box-sizing: border-box;
|
||
width: 100%;
|
||
height: calc(100vh - calc(var(--status-bar-height) - 44px - 88rpx));
|
||
padding: 40rpx;
|
||
|
||
.popup-header {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: center;
|
||
margin-bottom: 20px;
|
||
|
||
.popup-title {
|
||
font-size: 18px;
|
||
font-weight: 500;
|
||
color: $gray-dark;
|
||
}
|
||
|
||
.close-btn {
|
||
width: 30px;
|
||
height: 30px;
|
||
background-color: $gray-light;
|
||
border-radius: 50%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 20px;
|
||
color: $gray;
|
||
cursor: pointer;
|
||
}
|
||
}
|
||
|
||
.location-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(4, 1fr);
|
||
gap: 30rpx;
|
||
height: 100%;
|
||
overflow-y: auto;
|
||
|
||
.location-item {
|
||
padding: 16rpx;
|
||
background-color: $background-color;
|
||
border-radius: 16rpx;
|
||
text-align: center;
|
||
font-size: 28rpx;
|
||
color: #999;
|
||
border: 2rpx solid #999;
|
||
cursor: pointer;
|
||
transition: all 0.3s ease;
|
||
|
||
&:hover {
|
||
background-color: lighten($primary-color, 45%);
|
||
}
|
||
|
||
&.active {
|
||
background-color: lighten($primary-color, 40%);
|
||
border-color: $primary-color;
|
||
color: $primary-color;
|
||
}
|
||
|
||
text {
|
||
display: block;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
width: 106rpx;
|
||
text-overflow: ellipsis;
|
||
word-break: break-all;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// 时间标题
|
||
.time-header {
|
||
text-align: center;
|
||
padding: 30rpx 0;
|
||
font-size: 32rpx;
|
||
color: $gray;
|
||
background-color: $background-color;
|
||
}
|
||
|
||
// 会议列表
|
||
.meeting-list {
|
||
padding: 0 30rpx;
|
||
|
||
.meeting-item {
|
||
display: flex;
|
||
margin-bottom: 30rpx;
|
||
background-color: $white;
|
||
border-radius: 16rpx;
|
||
overflow: hidden;
|
||
box-shadow: $shadow;
|
||
|
||
// 日期标识
|
||
.date-tag {
|
||
width: 50rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
position: relative;
|
||
|
||
.date-text {
|
||
background: $white;
|
||
position: absolute;
|
||
top: 50%;
|
||
color: red;
|
||
transform: translateY(-50%);
|
||
font-size: 32rpx;
|
||
width: 40rpx;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
left: 35rpx;
|
||
height: 40rpx;
|
||
border-radius: 50%;
|
||
}
|
||
}
|
||
|
||
// 会议内容
|
||
.meeting-content {
|
||
flex: 1;
|
||
padding: 30rpx;
|
||
|
||
.meeting-title {
|
||
font-size: 32rpx;
|
||
font-weight: 500;
|
||
color: $gray-dark;
|
||
margin-bottom: 20rpx;
|
||
line-height: 1.4;
|
||
display: -webkit-box;
|
||
-webkit-line-clamp: 2; /* 限制文本为2行 */
|
||
-webkit-box-orient: vertical;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
.meeting-poster {
|
||
position: relative;
|
||
height: 320rpx;
|
||
border-radius: 12rpx;
|
||
overflow: hidden;
|
||
margin-bottom: 20rpx;
|
||
|
||
.poster-image {
|
||
width: 100%;
|
||
height: 100%;
|
||
object-fit: cover;
|
||
}
|
||
|
||
.play-btn {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
width: 210rpx;
|
||
height: 210rpx;
|
||
|
||
border-radius: 50%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.status-tag {
|
||
position: absolute;
|
||
top: 16rpx;
|
||
right: 16rpx;
|
||
font-size: 24rpx;
|
||
padding: 4rpx 16rpx;
|
||
border-radius: 20rpx;
|
||
color: $white;
|
||
font-weight: 500;
|
||
border: 2rpx solid #fff;
|
||
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.2);
|
||
|
||
&.status-preview {
|
||
background-color: transparent;
|
||
color: #fff;
|
||
}
|
||
|
||
&.status-live {
|
||
background-color: #00bcd4;
|
||
}
|
||
|
||
&.status-ended {
|
||
background-color: #9c27b0;
|
||
}
|
||
|
||
&.status-completed {
|
||
background-color: #4caf50;
|
||
}
|
||
|
||
&.status-cancelled {
|
||
background-color: #ff9800;
|
||
}
|
||
}
|
||
}
|
||
|
||
.meeting-info {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
|
||
.info-item {
|
||
display: flex;
|
||
align-items: center;
|
||
.timebox {
|
||
margin-top: -19rpx;
|
||
}
|
||
.info-text {
|
||
font-size: 28rpx;
|
||
color: $gray-text;
|
||
margin-left: 8rpx;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// 空状态
|
||
.empty-state {
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 100rpx 30rpx;
|
||
|
||
.empty-icon {
|
||
margin-bottom: 30rpx;
|
||
}
|
||
|
||
.empty-text {
|
||
font-size: 32rpx;
|
||
color: $gray;
|
||
margin-bottom: 16rpx;
|
||
}
|
||
|
||
.empty-subtext {
|
||
font-size: 26rpx;
|
||
color: $gray-text;
|
||
text-align: center;
|
||
}
|
||
}
|
||
|
||
// 加载更多提示
|
||
.load-more {
|
||
padding: 30rpx;
|
||
|
||
.load-more-content {
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
|
||
.load-more-text {
|
||
font-size: 28rpx;
|
||
color: $gray-text;
|
||
margin-left: 10rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
// 过往会议提示
|
||
.history-tip {
|
||
position: fixed;
|
||
bottom: 200rpx;
|
||
z-index: 9;
|
||
right: 0;
|
||
border-radius: 50rpx 0 0 50rpx;
|
||
background: #00cbc0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 10rpx 10rpx;
|
||
|
||
.tip-icon {
|
||
padding: 10rpx;
|
||
background-color: #fff;
|
||
margin-right: 10rpx;
|
||
border-radius: 50%;
|
||
}
|
||
|
||
.tip-text {
|
||
width: 60rpx;
|
||
font-size: 26rpx;
|
||
color: #fff;
|
||
}
|
||
}
|
||
|
||
// 底部导航栏
|
||
.bottom-nav {
|
||
position: fixed;
|
||
bottom: 0;
|
||
left: 0;
|
||
right: 0;
|
||
height: 60px;
|
||
background-color: $white;
|
||
display: flex;
|
||
border-top: 1px solid $gray-light;
|
||
|
||
.nav-item {
|
||
flex: 1;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
padding: 5px 0;
|
||
|
||
.nav-text {
|
||
font-size: 10px;
|
||
color: $gray-text;
|
||
margin-top: 2px;
|
||
|
||
&.active {
|
||
color: $primary-color;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style>
|