Compare commits

...

3 Commits

Author SHA1 Message Date
xu
406c9fbf7c SZX-1335在线课考试显示不正常。 2025-12-16 14:20:54 +08:00
陈昱达
b4b090e5c0 chore(header): 注释掉2025年贡献者大会选项
- 在下拉菜单中临时注释掉2025年的选项
- 保留2024年及往年的选项不变
- 为后续重新启用做准备
2025-12-15 21:58:15 +08:00
陈昱达
02aafc8fa9 feat(portal): 添加2025年贡献者大会入口
- 在下拉菜单中新增2025年贡献者大会选项
- 为2024年选项添加分割线以改善视觉层次
- 配置2025年贡献者大会页面路由地址
- 确保点击2025年选项可正确跳转至对应页面
2025-12-15 17:49:41 +08:00
2 changed files with 4 additions and 2 deletions

View File

@@ -1218,7 +1218,7 @@ export default {
});
this.teacherValues = tlist;
this.teacherDownList = tlist;
if (this.courseInfo.tags != '') {
if (this.courseInfo.tags) {
this.showTags = this.courseInfo.tags.split(',');
}
this.$nextTick(function() {

View File

@@ -106,7 +106,8 @@
>贡献者大会</span
>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item command="three">2024</el-dropdown-item>
<!-- <el-dropdown-item command="four">2025</el-dropdown-item>-->
<el-dropdown-item command="three" divided>2024</el-dropdown-item>
<el-dropdown-item command="one" divided>2023</el-dropdown-item>
<el-dropdown-item command="two" divided>2022</el-dropdown-item>
</el-dropdown-menu>
@@ -421,6 +422,7 @@ export default {
one: urlPre + "/web/contributornew/index",
two: urlPre + "/web/contributor/index",
three: urlPre + "/web/contributor_2024/index",
four: urlPre + "/web/contributor_2025/index",
};
window.open(obj[val]);
},