修复留言板bug,添加GPA计算器

This commit is contained in:
Guarp 2025-02-18 20:04:02 +08:00
parent 8a4a705254
commit 0c139cb395
3 changed files with 31 additions and 13 deletions

View File

@ -113,7 +113,7 @@ watch(sendCD, (newValue) => {
}); });
onMounted(async () => { onMounted(async () => {
sendCD.value = store.state.demos.board?.sendCD; sendCD.value = store.state.demos.board?.sendCD || 0;
await refreshBoard(); await refreshBoard();
}) })
@ -142,7 +142,15 @@ onMounted(async () => {
<img :src="store.getters.profileImage" alt="Avatar"> <img :src="store.getters.profileImage" alt="Avatar">
<div class="text"> <div class="text">
<div>{{ store.state.userInfo.username }}</div> <div>{{ store.state.userInfo.username }}</div>
<div><{{ store.state.userInfo.role_id === 1 ? '管理员' : '普通用户' }}></div> <div><{{ (function (){
if (store.state.userInfo.role_id === 1) {
return '管理员';
}
if (store.state.userInfo.role_id === 0) {
return '普通用户';
}
return '游客'
})() }}></div>
</div> </div>
<div class="refresh-btn"> <div class="refresh-btn">
<button @click="clickRefresh">刷新</button> <button @click="clickRefresh">刷新</button>
@ -265,6 +273,7 @@ onMounted(async () => {
.sender-tips img { .sender-tips img {
width: 50px; width: 50px;
height: 50px;
margin: 15px 15px 0; margin: 15px 15px 0;
border-radius: 50%; border-radius: 50%;
} }

View File

@ -139,13 +139,13 @@ async function deleteMessage(id, message) {
} }
//.like { .like {
// display: flex; display: flex;
// align-items: center; align-items: center;
// overflow: hidden; overflow: hidden;
// gap: 3px; gap: 3px;
// color: gray; color: gray;
//} }
.like button { .like button {
color: gray; color: gray;

View File

@ -73,7 +73,7 @@ onMounted(() => {
</label> </label>
<button v-if="lessons.length > 1" class="btn" @click="removeGroup(index)">-</button> <button class="btn" @click="removeGroup(index)">-</button>
</div> </div>
<button class="generate" @click="saveResultToLocalStorage">计算</button> <button class="generate" @click="saveResultToLocalStorage">计算</button>
@ -87,10 +87,11 @@ onMounted(() => {
<style scoped> <style scoped>
.container { .container {
width: 100%; width: 100%;
height: 100%; height: calc(100vh - 100px);
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.calculator-container { .calculator-container {
@ -99,14 +100,23 @@ onMounted(() => {
align-items: center; align-items: center;
width: 80%; width: 80%;
margin-top: 20px; margin-top: 20px;
gap: 10px;
padding-bottom: 100px;
} }
.group { .group {
background: rgba(128, 128, 128, 0.26);
border-radius: 20px;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
margin-bottom: 10px; padding: 20px;
gap:10px
}
.group select {
height: 100%;
} }
.title { .title {
@ -160,7 +170,6 @@ onMounted(() => {
border-radius: 5px; border-radius: 5px;
font-size: 16px; font-size: 16px;
cursor: pointer; cursor: pointer;
margin-left: 10px;
} }
.theme-light .btn { .theme-light .btn {
background-color: #ffffff; background-color: #ffffff;