1
0
Fork 0
mirror of https://github.com/silenty4ng/k5web synced 2025-04-06 16:47:24 +00:00
This commit is contained in:
Silent YANG 2024-02-03 13:37:51 +08:00
parent dd4e56cbd8
commit 38fe6b6e27
3 changed files with 4 additions and 2 deletions
src
components/footer
store/modules/app
views/list/search-table

View file

@ -1,6 +1,6 @@
<template>
<a-layout-footer class="footer">
<a href="https://github.com/silenty4ng/k5web" target="_blank">K5Web - V0.1.202402030850</a>
<a href="https://github.com/silenty4ng/k5web" target="_blank">K5Web - V0.1.202402031340</a>
</a-layout-footer>
</template>

View file

@ -32,9 +32,11 @@ const useAppStore = defineStore('app', {
toggleTheme(dark: boolean) {
if (dark) {
this.theme = 'dark';
document.documentElement.setAttribute('theme-mode', 'dark');
document.body.setAttribute('arco-theme', 'dark');
} else {
this.theme = 'light';
document.documentElement.removeAttribute('theme-mode');
document.body.removeAttribute('arco-theme');
}
},

View file

@ -32,7 +32,7 @@
</a-row>
<t-table
:loading="loading"
size="large"
size="medium"
:columns="columns"
:data="cstate.renderData"
:pagination="{