update
Some checks failed
Deploy / deploy (build, debian, 22) (push) Has been cancelled
Deploy / deploy (build:staging, school, 8822) (push) Has been cancelled

This commit is contained in:
2026-04-01 06:18:19 -06:00
parent b4c73411d6
commit 74bdef2236
4 changed files with 101 additions and 14 deletions

View File

@@ -1,5 +1,6 @@
<script setup lang="ts">
import { dateZhCN, zhCN } from "naive-ui"
import type { GlobalThemeOverrides } from "naive-ui"
import Login from "./components/Login.vue"
import { onMounted, watch } from "vue"
import { Account } from "./api"
@@ -7,6 +8,16 @@ import { authed, user } from "./store/user"
import { STORAGE_KEY } from "./utils/const"
import hljs from "highlight.js/lib/core"
const themeOverrides: GlobalThemeOverrides = {
common: {
borderRadius: "6px",
borderRadiusSmall: "4px",
},
Card: {
borderRadius: "8px",
},
}
onMounted(async () => {
try {
const data = await Account.getMyProfile()
@@ -33,6 +44,7 @@ watch(authed, (v) => {
:locale="zhCN"
:date-locale="dateZhCN"
:hljs="hljs"
:theme-overrides="themeOverrides"
>
<n-modal-provider>
<n-message-provider :max="1">

27
src/global.css Normal file
View File

@@ -0,0 +1,27 @@
* {
box-sizing: border-box;
}
body {
margin: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #d0d0d0;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #b0b0b0;
}

View File

@@ -1,6 +1,7 @@
import { createApp } from "vue"
import { create } from "naive-ui"
import App from "./App.vue"
import "./global.css"
import { addAPIProvider } from "@iconify/vue"
//@ts-ignore

View File

@@ -1,21 +1,25 @@
<template>
<n-flex class="container" :wrap="false">
<n-flex vertical class="menu">
<n-button secondary @click="() => goHome($router, taskTab, step)">
返回
</n-button>
<n-button
<div class="sidebar">
<div
class="back-btn"
@click="() => goHome($router, taskTab, step)"
>
返回
</div>
<n-divider style="margin: 8px 0" />
<div
v-for="item in menu"
:key="item.label"
:type="$route.name === item.route.name ? 'primary' : 'default'"
:class="['nav-item', { active: $route.name === item.route.name }]"
@click="$router.push(item.route)"
>
{{ item.label }}
</n-button>
</n-flex>
<n-flex class="content">
</div>
</div>
<div class="content">
<router-view></router-view>
</n-flex>
</div>
</n-flex>
</template>
<script lang="ts" setup>
@@ -56,13 +60,56 @@ const menu = computed(() =>
width: 100vw;
box-sizing: border-box;
}
.menu {
width: 100px;
padding: 10px 0 10px 10px;
.sidebar {
width: 110px;
min-width: 110px;
padding: 12px 8px;
border-right: 1px solid #efeff5;
background: #fafafa;
display: flex;
flex-direction: column;
gap: 2px;
}
.back-btn {
padding: 7px 10px;
font-size: 13px;
color: #888;
cursor: pointer;
border-radius: 6px;
transition: background-color 0.15s, color 0.15s;
user-select: none;
}
.back-btn:hover {
background-color: #f0f0f0;
color: #444;
}
.nav-item {
padding: 8px 10px;
border-radius: 6px;
font-size: 14px;
cursor: pointer;
color: #444;
transition: background-color 0.15s, color 0.15s;
user-select: none;
}
.nav-item:hover {
background-color: #f0f0f0;
}
.nav-item.active {
background-color: #e8f8f0;
color: #18a058;
font-weight: 500;
}
.content {
flex: 1;
box-sizing: border-box;
width: calc(100vw - 100px);
overflow: hidden;
}
</style>