优化页面

This commit is contained in:
pengxiaolong
2025-06-17 22:04:18 +08:00
parent 8ec7365e7c
commit e464d99af5
86 changed files with 627 additions and 178 deletions

View File

@@ -12,6 +12,21 @@ const _sfc_main = {
},
setup(__props) {
let showMiddleButton = common_vendor.ref(false);
const conversationList = common_vendor.ref([]);
common_vendor.onMounted(() => {
common_vendor.Jt.watch(common_vendor.o.CONV, {
conversationList: onConversationListUpdated
});
});
common_vendor.onUnmounted(() => {
common_vendor.Jt.unwatch(common_vendor.o.CONV, {
conversationList: onConversationListUpdated
});
});
function onConversationListUpdated(list) {
conversationList.value = list;
common_vendor.index.__f__("log", "at components/tabBar/tabBar.vue:51", "conversationList", list);
}
let tabList = common_vendor.reactive([
{
iconPath: "https://vv-1317974657.cos.ap-shanghai.myqcloud.com/util/Pk.png",
@@ -52,9 +67,9 @@ const _sfc_main = {
});
common_vendor.index.getSystemInfo({
success: function(res) {
common_vendor.index.__f__("log", "at components/tabBar/tabBar.vue:83", "机型", res.deviceType);
common_vendor.index.__f__("log", "at components/tabBar/tabBar.vue:99", "机型", res.deviceType);
if (res.safeArea.top > 40) {
common_vendor.index.__f__("log", "at components/tabBar/tabBar.vue:85", "苹果的底部栏大小", res.safeArea.top);
common_vendor.index.__f__("log", "at components/tabBar/tabBar.vue:101", "苹果的底部栏大小", res.safeArea.top);
}
}
});