完善页面8

This commit is contained in:
2026-02-24 10:35:34 +08:00
parent f814db2f12
commit 92d6e8144d
90 changed files with 1183 additions and 1887 deletions

View File

@@ -248,7 +248,7 @@ min-height: 100vh;
.search-card {
background-color: #fff;
padding: 20px;
padding: 24px;
border-radius: 4px;
margin-bottom: 20px;
}

View File

@@ -190,7 +190,7 @@ if (idx > -1) { labels.splice(idx, 1) }
<style scoped lang="scss">
.admin-main {
padding: 20px;
padding: 24px;
background-color: #f0f2f5;
height: 100vh;
}
@@ -265,7 +265,7 @@ flex-direction: column;
display: flex;
flex-direction: column;
height: 100%;
padding: 20px;
padding: 24px;
}
.table-toolbar { margin-bottom: 20px; }

View File

@@ -24,9 +24,8 @@ const loading = ref<boolean>(false)
<style scoped lang="scss">
.page-container {
padding: 20px;
/* 使用 Layout 的背景和内边距 */
min-height: 100vh;
background: #f5f5f5;
}
.page-header {

View File

@@ -214,7 +214,7 @@ min-height: 100vh;
.search-card {
background-color: #fff;
padding: 20px;
padding: 24px;
border-radius: 4px;
margin-bottom: 20px;
}

View File

@@ -249,16 +249,15 @@ function moveToRecycle(id: number) {
<style scoped lang="scss">
.product-list-page {
padding: 20px;
background-color: #f5f7f9;
/* 使用 Layout 的背景和内边距 */
min-height: 100vh;
}
.search-card {
background: #fff;
padding: 24px;
padding: var(--admin-card-padding);
border-radius: 4px;
margin-bottom: 16px;
margin-bottom: var(--admin-section-gap);
}
.search-row {

View File

@@ -206,7 +206,7 @@ function deleteItem(index: number) {
<style scoped lang="scss">
.admin-main {
padding: 20px;
padding: 24px;
background-color: #f0f2f5;
min-height: 100vh;
}
@@ -223,7 +223,7 @@ function deleteItem(index: number) {
.table-card {
background-color: #fff;
padding: 20px;
padding: 24px;
border-radius: 4px;
}

View File

@@ -140,8 +140,8 @@ const replyList = ref([
<style scoped lang="scss">
.product-reply-page {
padding: 20px;
background-color: #f5f7f9;
padding: 24px;
background-color: #f0f2f5;
min-height: 100vh;
}
@@ -149,7 +149,7 @@ const replyList = ref([
background: #fff;
padding: 24px;
border-radius: 4px;
margin-bottom: 16px;
margin-bottom: 20px;
}
.search-row {
@@ -189,7 +189,7 @@ const replyList = ref([
.btn-white { background: #fff; color: #606266; height: 32px; padding: 0 16px; border-radius: 4px; font-size: 14px; border: 1px solid #dcdfe6; }
.action-bar {
margin-bottom: 16px;
margin-bottom: 20px;
display: flex;
flex-direction: row;
gap: 12px;
@@ -198,6 +198,7 @@ const replyList = ref([
.list-card {
background: #fff;
border-radius: 4px;
padding: 24px;
}
.table-v5 { width: 100%; }

View File

@@ -150,17 +150,16 @@ function deleteItem(index: number) {
<style scoped lang="scss">
.admin-main {
padding: 20px;
background-color: #f0f2f5;
/* 使用 Layout 的背景和内边距 */
min-height: 100vh;
}
/* 搜索卡片 */
.search-card {
background-color: #fff;
padding: 24px;
padding: var(--admin-card-padding);
border-radius: 4px;
margin-bottom: 20px;
margin-bottom: var(--admin-section-gap);
}
.search-row {
@@ -206,7 +205,7 @@ function deleteItem(index: number) {
/* 表格区域 */
.table-card {
background-color: #fff;
padding: 24px;
padding: var(--admin-card-padding);
border-radius: 4px;
}