feat: 升级vue3版本和router版本,主框架调整,页面样式统一

This commit is contained in:
rd
2025-08-16 17:01:06 +08:00
parent f14a525828
commit b4bca57f04
47 changed files with 503 additions and 586 deletions

View File

@ -48,3 +48,10 @@
line-height: 22px;
}
}
.pagination-row {
display: flex;
width: 100%;
padding: 12px 24px 0;
justify-content: flex-end;
align-items: center;
}

View File

@ -1,28 +1,29 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: PingFangSC-Regular, PingFang SC;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html,
body {
width: 100%;
height: 100%;
}
#app {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: $font-family-regular;
font-size: 14px;
-webkit-print-color-adjust: exact;
}
body {
margin: 0;
}
p {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}