174 lines
4.7 KiB
Vue
174 lines
4.7 KiB
Vue
<template>
|
|
<view class="app-custom-root">
|
|
<view class="app-container">
|
|
<!-- 主体内容区域 -->
|
|
<view class="container-main">
|
|
<swiper class="swiper" :current="state.current" @change="changeSwiperType">
|
|
<swiper-item class="swiper-item" v-for="(_, index) in 2" :key="index">
|
|
<!-- #ifndef MP-WEIXIN -->
|
|
<component
|
|
:is="components[index]"
|
|
@onShowTabbar="changeShowTabbar"
|
|
:ref="(el) => handelComponentsRef(el, index)"
|
|
/>
|
|
<!-- #endif -->
|
|
<!-- #ifdef MP-WEIXIN -->
|
|
<IndexOne
|
|
v-show="currentIndex === 0"
|
|
@onShowTabbar="changeShowTabbar"
|
|
:ref="(el) => handelComponentsRef(el, index)"
|
|
/>
|
|
<IndexTwo
|
|
v-show="currentIndex === 1"
|
|
@onShowTabbar="changeShowTabbar"
|
|
:ref="(el) => handelComponentsRef(el, index)"
|
|
/>
|
|
<!-- #endif -->
|
|
</swiper-item>
|
|
</swiper>
|
|
</view>
|
|
<Tabbar v-show="showTabbar" :currentpage="0"></Tabbar>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { reactive, inject, watch, ref, onMounted } from 'vue';
|
|
import Tabbar from '@/components/tabbar/midell-box.vue';
|
|
import { onLoad, onShow } from '@dcloudio/uni-app';
|
|
import IndexOne from './components/index-one.vue';
|
|
import IndexTwo from './components/index-two.vue';
|
|
const loadedMap = reactive([false, false]);
|
|
const swiperRefs = [ref(null), ref(null)];
|
|
const components = [IndexOne, IndexTwo];
|
|
import { storeToRefs } from 'pinia';
|
|
import { useReadMsg } from '@/stores/useReadMsg';
|
|
const { unreadCount } = storeToRefs(useReadMsg());
|
|
const showTabbar = ref(true);
|
|
|
|
onShow(() => {
|
|
// 获取消息列表
|
|
useReadMsg().fetchMessages();
|
|
});
|
|
const state = reactive({
|
|
current: 0,
|
|
all: [{}],
|
|
});
|
|
|
|
onMounted(() => {
|
|
handleTabChange(state.current);
|
|
});
|
|
|
|
const handelComponentsRef = (el, index) => {
|
|
if (el) {
|
|
swiperRefs[index].value = el;
|
|
}
|
|
};
|
|
|
|
function changeShowTabbar(val) {
|
|
showTabbar.value = val;
|
|
}
|
|
|
|
// 查看消息类型
|
|
function changeSwiperType(e) {
|
|
const index = e.detail.current;
|
|
state.current = index;
|
|
handleTabChange(index);
|
|
}
|
|
function changeType(index) {
|
|
state.current = index;
|
|
handleTabChange(index);
|
|
}
|
|
|
|
function handleTabChange(index) {
|
|
if (!loadedMap[index]) {
|
|
swiperRefs[index].value?.loadData();
|
|
loadedMap[index] = true;
|
|
}
|
|
}
|
|
|
|
// 查看消息类型
|
|
function changeSwiperMsgType(e) {
|
|
const currented = e.detail.current;
|
|
state.current = currented;
|
|
}
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.app-custom-root {
|
|
position: fixed;
|
|
z-index: 10;
|
|
width: 100vw;
|
|
height: calc(100% - var(--window-bottom));
|
|
overflow: hidden;
|
|
}
|
|
.app-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 100%;
|
|
.container-header {
|
|
height: calc(88rpx - 14rpx);
|
|
text-align: center;
|
|
line-height: calc(88rpx - 14rpx);
|
|
font-size: 32rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding: 16rpx 44rpx 36rpx 44rpx;
|
|
background: url('@/static/icon/msgTopbg.png') 0 0 no-repeat;
|
|
background-size: 100% 100%;
|
|
.header-title {
|
|
color: #000000;
|
|
font-weight: bold;
|
|
}
|
|
.header-btnLf {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
width: calc(60rpx * 3);
|
|
font-weight: 500;
|
|
font-size: 40rpx;
|
|
color: #696969;
|
|
margin-right: 44rpx;
|
|
position: relative;
|
|
.btns-wd{
|
|
position: absolute
|
|
top: 2rpx;
|
|
right: 2rpx
|
|
width: 16rpx;
|
|
height: 16rpx;
|
|
background: #F73636;
|
|
border-radius: 50%;
|
|
border: 4rpx solid #EEEEFF;
|
|
}
|
|
}
|
|
.active {
|
|
font-weight: 600;
|
|
font-size: 40rpx;
|
|
color: #000000;
|
|
}
|
|
}
|
|
}
|
|
|
|
.container-main {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
background-color: #f4f4f4;
|
|
}
|
|
.main-scroll {
|
|
width: 100%
|
|
height: 100%;
|
|
}
|
|
.scrollmain{
|
|
padding: 28rpx
|
|
}
|
|
.swiper
|
|
height: 100%;
|
|
width: 100%
|
|
.list
|
|
width: 100%
|
|
display: flex;
|
|
flex-direction: column;
|
|
</style>
|