3.25提交

This commit is contained in:
zoujiandong
2026-03-25 17:33:54 +08:00
parent 18c7f7386d
commit 8a879df4b4
32 changed files with 571 additions and 64 deletions
+13 -1
View File
@@ -305,6 +305,15 @@ onUnload (() => {
from.value=options.from;
}
// #ifdef APP-PLUS
uni.sendNativeEvent("portraitReport",{
msg:{
event_nickname: "list_page",
page_type: "会议直播",
},
},
(ret) => {
console.log(ret);
});
permissionListener.value=uni.createRequestPermissionListener();
console.log('放在onLoad执行');
console.log(permissionListener.value);
@@ -379,6 +388,7 @@ const generateMonthList = () => {
console.log("生成的月份列表:", monthList.value);
};
const goDetail = (item) => {
console.log(item);
// uni.sendNativeEvent('noticeBack', {
// msg: 'go'
// }, ret => {
@@ -388,7 +398,7 @@ const goDetail = (item) => {
const encoded = encodeURIComponent(item.path);
let imgPath=encodeURIComponent('https://doc.igandan.com/app/html/img/2016/20160714132557.png');
uni.navigateTo({
url: `/pages_app/webview/webview?url=${encoded}&sharetitle=${item.title}&bg=1&type=live_yugao&imgPath=${imgPath}&share=1&title=会议详情`,
url: `/pages_app/webview/webview?url=${encoded}&sharetitle=${item.title}&bg=1&type=live_yugao&imgPath=${imgPath}&share=1&title=会议详情&tags=${item.tags}`,
});
};
const goBack = () => {
@@ -631,6 +641,7 @@ const meetingListBySearch = async (isRefresh = false) => {
poster: item.liveimg, // 使用 liveimg 作为海报
time: timeStr,
location: item.location || "线上",
tags: item.tags || '',
status: getStatusText(item.status),
// 保留原始数据用于其他功能
originalData: item,
@@ -744,6 +755,7 @@ const getMeetingList = async (isRefresh = false) => {
liveurl: item.liveurl,
spareurl: item.spareurl,
path: item.path,
tags: item.tags || '',
status_code: item.status,
};
});