dbsd_kczx/src/views/site/studentWdkc/studentMenu.vue

116 lines
3.2 KiB
Vue
Raw Normal View History

2024-05-09 22:25:24 +08:00
<template>
<div id="siteMain" style="min-height: calc(100vh - 150px);">
<a-row>
<a-col :span="24">
<a-menu
v-model:selectedKeys="selectedKeys"
style="width: 98%;min-height: calc(100vh - 130px);margin: 10px 0;"
mode="inline"
>
<a-sub-menu key="sub1">
<template #title>课程介绍</template>
2024-05-13 22:48:44 +08:00
<a-menu-item key="1">课程介绍</a-menu-item>
<a-menu-item key="2">通知公告</a-menu-item>
<a-menu-item key="3">教学单元</a-menu-item>
2024-05-09 22:25:24 +08:00
</a-sub-menu>
<a-sub-menu key="sub4">
<template #title>测验/作业</template>
2024-05-13 16:29:57 +08:00
<a-menu-item key="4" @click="getGzt('dqzy')">课程作业</a-menu-item>
<a-menu-item key="5" @click="getGzt('kcjc')">课程测验</a-menu-item>
2024-05-09 22:25:24 +08:00
</a-sub-menu>
<a-menu-item key="sub5">
<span @click="getGzt('dcwj')">问卷调查</span>
2024-05-09 22:25:24 +08:00
</a-menu-item>
<!-- <a-menu-item key="sub6">
2024-05-09 22:25:24 +08:00
<span>讨论区</span>
</a-menu-item>
-->
2024-05-09 22:25:24 +08:00
</a-menu>
</a-col>
</a-row>
</div>
</template>
<script lang="ts" setup>
import { ref, onMounted, unref } from 'vue';
import { getUserSf,getSysConfig } from '/@/views/site/utils/index';
import { defHttp } from '/@/utils/http/axios';
import { useRouter } from 'vue-router';
import headerPage from '/@/views/site/common/header.vue';
import footerPage from '/@/views/site/common/footer.vue';
import dqxqkc from '/@/views/site/renKeJiaoCheng/checkKecheng/dqxqkc.vue';
2024-05-09 22:25:24 +08:00
const maxClassName = ref<any>({});
const selectedKeys = ref<string[]>([]);
//当前路由信息
const { currentRoute } = useRouter();
const { query } = unref(currentRoute);
const { rwbh,xqxn,type } = query;//获取传递参数
let router = useRouter();
2024-05-09 22:25:24 +08:00
function getGzt(zytype){
console.log(`🚀 ~ getGzt ~ type:`, zytype)
2024-05-13 16:29:57 +08:00
var href = "";
2024-05-09 22:25:24 +08:00
if(zytype=='dqzy'){
2024-05-10 20:01:34 +08:00
href = "/stuzy/studentDqzy";
2024-05-09 22:25:24 +08:00
}
2024-05-13 16:29:57 +08:00
// else if(zytype=='lszy'){
// href = "/stuzy/studentLszy";
// }
else if(zytype=='dcwj'){
href = "/stuzy/stuDcwjWenjuan";
}else if(zytype=='kcjc'){
href = "/stuzy/stuCeshiWenjuan";
}
2024-05-09 22:25:24 +08:00
router.push({path:href,query: {rwbh,xqxn,type}});
}
//进入就加载
onMounted(() => {
console.log('rwbh:',rwbh);
});
2024-05-09 22:25:24 +08:00
</script>
<style lang="less" scoped>
#siteMain {
// font-size: ;
// height: 100%;
background: #f3f3f4;
#maxSite {
//最大宽度
max-width: 1070px;
min-height: 750px;
//居中
margin: 0 auto;
.rowGutter{
margin-top: 1rem;
margin-bottom: 1rem;
}
.ant-layout-header {
color: #fff;
background: #1ab394;
}
.ant-layout-footer {
line-height: 1.5;
background: #FFF;
}
.ant-layout-sider {
color: #fff;
line-height: 120px;
background: #3ba0e9;
}
.ant-layout-content {
min-height: 120px;
color: #000;
line-height: 120px;
background: #f3f3f4;
}
}
}
</style>