2025-05-24 09:12:30 +08:00
|
|
|
<template>
|
|
|
|
<!-- 左边导航栏 -->
|
|
|
|
<div class="bgimg">
|
|
|
|
<div class="pc-nav">
|
2025-05-27 18:33:40 +08:00
|
|
|
<div class="pc-nav-item" @click="gotoList(1)">
|
|
|
|
<img :src="crrent==1?'/img/index/home1.png':'/img/index/home.png'" alt=""></img>
|
|
|
|
<span :class="['span',{'active': crrent==1}]">官网首页</span>
|
|
|
|
<img v-if="crrent==1" src="/img/index/arrow.png" alt="" style="width: 9px;height: 12px;margin-left: 10px;">
|
2025-05-24 09:12:30 +08:00
|
|
|
</div>
|
2025-05-27 18:33:40 +08:00
|
|
|
<div class="pc-nav-item" @click="gotoList(2)">
|
|
|
|
<img :src="crrent==2?'/img/index/aboutus1.png':'/img/index/aboutus.png'" alt=""></img>
|
|
|
|
<span :class="['span',{'active': crrent==2}]">关于我们</span>
|
|
|
|
<img v-if="crrent==2" src="/img/index/arrow.png" alt="" style="width: 9px;height: 12px;margin-left: 10px;">
|
2025-05-24 09:12:30 +08:00
|
|
|
</div>
|
2025-05-27 18:33:40 +08:00
|
|
|
<div class="pc-nav-item" @click="gotoList(3)">
|
|
|
|
<img :src="crrent==3?'/img/index/news1.png':'/img/index/news.png'" alt=""></img>
|
|
|
|
<span :class="['span',{'active': crrent==3}]">新闻动态</span>
|
|
|
|
<img v-if="crrent==3" src="/img/index/arrow.png" alt="" style="width: 9px;height: 12px;margin-left: 10px;">
|
2025-05-24 09:12:30 +08:00
|
|
|
</div>
|
2025-05-27 18:33:40 +08:00
|
|
|
<div class="pc-nav-item" @click="gotoList(4)">
|
|
|
|
<img :src="crrent==4?'/img/index/message1.png':'/img/index/message.png'" alt=""></img>
|
|
|
|
<span :class="['span',{'active': crrent==4}]">信息公开</span>
|
|
|
|
<img v-if="crrent==4" src="/img/index/arrow.png" alt="" style="width: 9px;height: 12px;margin-left: 10px;">
|
2025-05-24 09:12:30 +08:00
|
|
|
</div>
|
2025-05-27 18:33:40 +08:00
|
|
|
<div class="pc-nav-item" @click="gotoList(5)">
|
|
|
|
<img :src="crrent==5?'/img/index/baike1.png':'/img/index/baike.png'" alt=""></img>
|
|
|
|
<span :class="['span',{'active': crrent==5}]">团务百科</span>
|
|
|
|
<img v-if="crrent==5" src="/img/index/arrow.png" alt="" style="width: 9px;height: 12px;margin-left: 10px;">
|
2025-05-24 09:12:30 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="line_h"></div>
|
2025-05-27 09:02:43 +08:00
|
|
|
<div class="goback" @click="goBack">返回首页</div>
|
2025-05-24 09:12:30 +08:00
|
|
|
<div style="margin-top: 50px;margin-left: 40px;">
|
2025-05-30 14:30:11 +08:00
|
|
|
<div class="box_1" id='assist-open'>无障碍阅读</div>
|
|
|
|
<div class="box_2" @click="openOldMode">{{ isOld ? '退出适老模式' : '进入适老模式' }}</div>
|
2025-05-24 09:12:30 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2025-05-27 18:33:40 +08:00
|
|
|
import { ref,defineEmits,defineProps} from 'vue'
|
2025-05-30 14:30:11 +08:00
|
|
|
import '@/assets/assist/assist-entry.js'
|
2025-05-27 18:33:40 +08:00
|
|
|
const props = defineProps({
|
2025-05-30 14:30:11 +08:00
|
|
|
crrentNum:Number,
|
|
|
|
isOld:Boolean
|
2025-05-27 18:33:40 +08:00
|
|
|
});
|
|
|
|
const crrent = ref(1);
|
|
|
|
const emit = defineEmits(['crrentTop'])
|
2025-05-27 09:02:43 +08:00
|
|
|
const goBack = () => {
|
|
|
|
emit('crrentTop',0)
|
|
|
|
}
|
2025-05-24 09:12:30 +08:00
|
|
|
|
2025-05-30 14:30:11 +08:00
|
|
|
const openOldMode = () => {
|
|
|
|
emit('openOldMode')
|
|
|
|
}
|
|
|
|
|
2025-05-27 09:02:43 +08:00
|
|
|
const gotoList = (index:number) => {
|
2025-05-27 18:33:40 +08:00
|
|
|
crrent.value = index
|
2025-05-27 09:02:43 +08:00
|
|
|
emit('crrentTop',index)
|
|
|
|
}
|
2025-05-27 18:33:40 +08:00
|
|
|
//更新当前索引值
|
|
|
|
onUpdated(() => {
|
|
|
|
crrent.value = props.crrentNum;
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2025-05-24 09:12:30 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
@import '@/assets/index.scss';
|
|
|
|
.bgimg{
|
|
|
|
width: 350px;
|
|
|
|
height: 100vh;
|
|
|
|
background-image: url('/img/index/leftHead.png');
|
|
|
|
background-size: 100% 100%;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1000;
|
|
|
|
.pc-nav {
|
2025-05-30 16:36:00 +08:00
|
|
|
margin-left: 60px;
|
2025-05-24 09:12:30 +08:00
|
|
|
margin-top: 250px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.pc-nav-item {
|
|
|
|
width: 100%;
|
|
|
|
// height: 18px;
|
|
|
|
font-family: Microsoft YaHei UI;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-shadow: 0px 1px 0px rgba(0,0,64,0.4);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
&:hover{
|
|
|
|
cursor: pointer;
|
|
|
|
color: #FFA234;
|
|
|
|
}
|
|
|
|
.span{
|
|
|
|
margin-left: 20px;
|
2025-05-27 18:33:40 +08:00
|
|
|
&.active{
|
|
|
|
color: #FFA234;
|
|
|
|
}
|
2025-05-24 09:12:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.line_h{
|
|
|
|
width: 220px;
|
|
|
|
height: 1px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
opacity: 0.2;
|
|
|
|
margin-left: 40px;
|
|
|
|
}
|
|
|
|
.goback{
|
|
|
|
width: 72px;
|
|
|
|
height: 17px;
|
|
|
|
font-family: Microsoft YaHei UI;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #FFFFFF;
|
|
|
|
margin-left:114px ;
|
|
|
|
margin-top: 20px;
|
2025-05-27 09:02:43 +08:00
|
|
|
cursor: pointer;
|
2025-05-24 09:12:30 +08:00
|
|
|
}
|
|
|
|
.box_1{
|
|
|
|
width: 200px;
|
|
|
|
height: 58px;
|
|
|
|
line-height: 58px;
|
|
|
|
background: #FFA234;
|
|
|
|
font-family: Microsoft YaHei UI;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: center;
|
|
|
|
color: #FFFFFF;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.box_2{
|
|
|
|
width: 200px;
|
|
|
|
height: 58px;
|
|
|
|
line-height: 58px;
|
|
|
|
background: #4EB64B;
|
|
|
|
margin-top: 16px;
|
|
|
|
font-family: Microsoft YaHei UI;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 18px;
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|