完善页面细节

This commit is contained in:
2026-02-25 11:39:54 +08:00
parent 92d6e8144d
commit 8ec05b331b
131 changed files with 5273 additions and 585 deletions

View File

@@ -123,9 +123,9 @@ const tableData = ref<CommissionSummary[]>([
<style scoped lang="scss">
.finance-commission {
padding: 20px;
background-color: #f5f7fa;
min-height: 100vh;
padding: 0;
background-color: transparent;
min-height: auto;
}
.border-shadow {
@@ -252,107 +252,3 @@ const tableData = ref<CommissionSummary[]>([
.col-account { flex: 1; justify-content: flex-start; }
.col-withdraw { flex: 1; justify-content: flex-start; }
</style>
<style scoped lang="scss">
.finance-commission {
padding: 20px;
background-color: #f5f7fa;
min-height: 100vh;
}
.border-shadow {
background-color: #fff;
border-radius: 4px;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
}
.filter-card {
padding: 20px 24px;
margin-bottom: 20px;
}
.filter-row {
display: flex;
flex-direction: row;
align-items: center;
}
.filter-item {
display: flex;
flex-direction: row;
align-items: center;
margin-right: 28px;
}
.filter-label {
font-size: 14px;
color: #333;
margin-right: 10px;
}
.date-picker-wrap {
width: 220px;
height: 32px;
border: 1px solid #dcdfe6;
border-radius: 4px;
display: flex;
flex-direction: row;
align-items: center;
padding: 0 12px;
}
.calendar-icon { font-size: 12px; margin-right: 8px; }
.date-placeholder { font-size: 13px; color: #c0c4cc; }
.search-wrap { flex: 1; }
.search-input {
width: 200px;
height: 32px;
border: 1px solid #dcdfe6;
border-radius: 4px;
padding: 0 12px;
font-size: 13px;
}
.btn-query {
height: 32px;
padding: 0 20px;
background-color: #1890ff;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
}
.btn-txt { color: #fff; font-size: 14px; }
/* 表格 */
.table-container { display: flex; flex-direction: column; }
.table-header { background-color: #f8f9fb; display: flex; flex-direction: row; border-bottom: 1px solid #ebeef5; }
.th { padding: 15px 10px; display: flex; align-items: center; justify-content: center; }
.th-txt { font-size: 14px; font-weight: 600; color: #909399; }
.table-row { display: flex; flex-direction: row; border-bottom: 1px solid #ebeef5; }
.td { padding: 15px 10px; display: flex; align-items: center; justify-content: center; }
.td-txt { font-size: 13px; color: #606266; }
.col-id { width: 80px; }
.col-user { width: 180px; justify-content: flex-start; }
.col-order { width: 180px; }
.col-amount { width: 120px; }
.col-type { width: 120px; }
.col-time { width: 180px; }
.col-status { width: 100px; }
.avatar { width: 32px; height: 32px; border-radius: 16px; margin-right: 10px; }
.user-name { font-size: 13px; color: #606266; }
.green-txt { color: #67c23a; font-weight: bold; }
.status-dot-active {
width: 8px;
height: 8px;
border-radius: 4px;
background-color: #67c23a;
margin-right: 6px;
}
</style>