修改样式

This commit is contained in:
yangjun 2024-05-06 09:52:50 +08:00
parent 0941d4408f
commit 1bc8f22f37
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<a-card class="rowGutter" id="rkjcDom"> <a-card class="rowGutter" id="rkjcDom">
<template #title> <template #title>
<span style="font-size: 24px;font-weight: bold;">任教课程</span> <span style="font-size: 24px;font-weight: bold;" @click="initData">任教课程</span>
<span style="margin-left: 10px;"><a href="javascript:void(0);" @click="openChangeKcPage">修改课程提醒</a></span> <span style="margin-left: 10px;"><a href="javascript:void(0);" @click="openChangeKcPage">修改课程提醒</a></span>
</template> </template>
<!-- <template #extra></template> --> <!-- <template #extra></template> -->

View File

@ -21,8 +21,10 @@ export const getUserId = () => {
//正常取用户 //正常取用户
return userInfo?.username; return userInfo?.username;
}else{ }else{
const { userInfo } = useUserStore();
return userInfo?.username;
//固定某值 //固定某值
return '2016900057';//教师//2016900057//2002900176//2001900153//1000900273 // return '2016900057';//教师//2016900057//2002900176//2001900153//1000900273
// return '2022010920';//学生 // return '2022010920';//学生
} }
} }