feat: less规范化

This commit is contained in:
ZhuRui
2026-07-28 10:54:36 +08:00
parent cffe8de6b0
commit 743549600a
45 changed files with 1953 additions and 2011 deletions
@@ -61,6 +61,7 @@ export default defineComponent({
destroyOnClose destroyOnClose
footer={null} footer={null}
centered centered
wrapClassName={styles.changePasswordModalMain}
class={styles.modal} class={styles.modal}
> >
<Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark> <Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark>
@@ -1,37 +1,36 @@
.form { .changePasswordModalMain {
:global { .modal {
.ant-form-item { :global {
margin-bottom: 16px; .ant-modal-body {
} padding: 16px 24px 0;
.ant-form-item-explain-error { }
font-size: 12px;
} }
} }
}
/* 底部提示文案 */ .form {
.tip { :global {
margin-top: -4px; .ant-form-item {
margin-bottom: 24px; margin-bottom: 16px;
color: rgba(0, 0, 0, 0.45); }
font-size: 12px; .ant-form-item-explain-error {
line-height: 1.5; font-size: 12px;
} }
/* 底部按钮 */
.footer {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
border-top: 1px solid #f0f0f0;
}
/* 微调 Modal 内部样式 */
.modal {
:global {
.ant-modal-body {
padding: 16px 24px 0;
} }
} }
.tip {
margin-top: -4px;
margin-bottom: 24px;
color: rgba(0, 0, 0, 0.45);
font-size: 12px;
line-height: 1.5;
}
.footer {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
border-top: 1px solid #f0f0f0;
}
} }
+10 -10
View File
@@ -1,16 +1,16 @@
.container { .helloWorldMain {
text-align: center; text-align: center;
padding: 16px; padding: 16px;
}
.title { .title {
color: #1677ff; color: #1677ff;
} }
.desc { .desc {
code { code {
background: #f5f5f5; background: #f5f5f5;
padding: 2px 6px; padding: 2px 6px;
border-radius: 4px; border-radius: 4px;
}
} }
} }
+1 -1
View File
@@ -14,7 +14,7 @@ export default defineComponent({
}, },
setup(props) { setup(props) {
return () => ( return () => (
<div class={styles.container}> <div class={styles.helloWorldMain}>
<h3 class={styles.title}>{props.msg}</h3> <h3 class={styles.title}>{props.msg}</h3>
<p class={styles.desc}> <p class={styles.desc}>
, TSX , TSX
+1 -1
View File
@@ -4,4 +4,4 @@
*/ */
export { default as HelloWorld } from './HelloWorld'; export { default as HelloWorld } from './HelloWorld';
export { default as ChangePasswordModal } from './ChangePasswordModal'; export { default as ChangePasswordModal } from './ChangePasswordModal';
export { default as PageTabs } from './page/PageTabs'; export { default as PageTabs } from './pageTabs/PageTabs';
-185
View File
@@ -1,185 +0,0 @@
/**
* PageTabs — Chrome 风格标签栏样式
*
* 参考 VBEN tabs-chrome 的视觉设计:
* - 标签间通过负 margin 重叠
* - 激活态使用 SVG 绘制左下/右下曲线填充,形成 Chrome tab 效果
* - hover 态浅灰背景
* - 分隔线在相邻非激活标签之间
*/
// 主色调(antd 默认蓝)
@primary: #1677ff;
.tabsWrap {
display: flex;
align-items: center;
width: 100%;
height: 100%;
overflow-x: auto;
overflow-y: hidden;
// 隐藏横向滚动条
&::-webkit-scrollbar {
height: 0;
}
}
.tabItem {
position: relative;
display: flex;
align-items: center;
height: 100%;
user-select: none;
transition: all 0.15s ease;
padding: 0 8px 0 14px;
&:global(:not(.dragging)) {
cursor: pointer;
}
// ── hover 态(非激活) ──
&:not(.tabItemActive) {
&:hover {
// 自身分隔线消失
> .divider {
opacity: 0;
}
// 右侧邻居的分隔线也消失
& + .tabItem {
> .divider {
opacity: 0;
}
}
}
}
// ── 激活态 ──
&.tabItemActive {
z-index: 2;
// 右侧邻居的分隔线消失
& + .tabItem {
> .divider {
opacity: 0 !important;
}
}
// 文字激活色
.tabTitle {
color: @primary;
font-weight: 500;
}
// 背景蓝色
.tabBg {
&.tabBgActive {
.tabBgInner {
background-color: fade(@primary, 8%);
}
.tabBgCurveBefore,
.tabBgCurveAfter {
fill: fade(@primary, 8%);
}
}
}
}
}
// ── 分隔线 ──
.divider {
position: absolute;
left: 7px;
top: 50%;
z-index: 0;
width: 1px;
height: 16px;
background-color: #e8e8e8;
transform: translateY(-50%);
transition: opacity 0.15s;
}
// ── Chrome 风格背景层(激活态可见,hover 态可见但偏浅) ──
.tabBg {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
padding: 0 calc(7px - 1px);
transition: opacity 0.15s;
}
// 背景主体:顶部圆角
.tabBgInner {
height: 100%;
border-radius: 7px 7px 0 0;
transition:
background-color 0.15s,
margin 0.15s,
border-radius 0.15s;
}
// 左下 SVG 曲线
.tabBgCurveBefore {
position: absolute;
left: -1px;
bottom: 0;
fill: transparent;
transition: fill 0.15s;
}
// 右下 SVG 曲线
.tabBgCurveAfter {
position: absolute;
right: -1px;
bottom: 0;
fill: transparent;
transition: fill 0.15s;
}
// ── 关闭按钮(flex 子元素,文字同行自然居中) ──
.tabClose {
flex-shrink: 0;
width: 16px;
height: 16px;
line-height: 16px;
font-size: 10px;
text-align: center;
margin-right: 12px;
color: rgba(0, 0, 0, 0.45);
border-radius: 50%;
cursor: pointer;
transition: all 0.15s;
&:hover {
color: rgba(0, 0, 0, 0.85);
background-color: rgba(0, 0, 0, 0.06);
}
}
.tabTitleCon {
height: 28px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 4px;
}
// hover 只在非激活标签时生效
.tabItem:not(.tabItemActive) {
.tabTitleCon:hover {
background-color: rgba(0, 0, 0, 0.06);
}
}
// ── 标签文字(flex 子元素,可收缩) ──
.tabTitle {
position: relative;
z-index: 2;
flex: 1;
min-width: 0;
padding: 2px 8px;
font-size: 13px;
color: rgba(0, 0, 0, 0.65);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@@ -0,0 +1,164 @@
@primary: #1677ff;
.pageTabsMain {
display: flex;
align-items: center;
width: 100%;
height: 100%;
overflow-x: auto;
overflow-y: hidden;
&::-webkit-scrollbar {
height: 0;
}
.tabItem {
position: relative;
display: flex;
align-items: center;
height: 100%;
user-select: none;
transition: all 0.15s ease;
padding: 0 8px 0 14px;
&:global(:not(.dragging)) {
cursor: pointer;
}
&:not(.tabItemActive) {
&:hover {
> .divider {
opacity: 0;
}
& + .tabItem {
> .divider {
opacity: 0;
}
}
}
}
&.tabItemActive {
z-index: 2;
& + .tabItem {
> .divider {
opacity: 0 !important;
}
}
.tabTitle {
color: @primary;
font-weight: 500;
}
.tabBg {
&.tabBgActive {
.tabBgInner {
background-color: fade(@primary, 8%);
}
.tabBgCurveBefore,
.tabBgCurveAfter {
fill: fade(@primary, 8%);
}
}
}
}
&:not(.tabItemActive) {
.tabTitleCon:hover {
background-color: rgba(0, 0, 0, 0.06);
}
}
}
.divider {
position: absolute;
left: 7px;
top: 50%;
z-index: 0;
width: 1px;
height: 16px;
background-color: #e8e8e8;
transform: translateY(-50%);
transition: opacity 0.15s;
}
.tabBg {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
padding: 0 calc(7px - 1px);
transition: opacity 0.15s;
}
.tabBgInner {
height: 100%;
border-radius: 7px 7px 0 0;
transition:
background-color 0.15s,
margin 0.15s,
border-radius 0.15s;
}
.tabBgCurveBefore {
position: absolute;
left: -1px;
bottom: 0;
fill: transparent;
transition: fill 0.15s;
}
.tabBgCurveAfter {
position: absolute;
right: -1px;
bottom: 0;
fill: transparent;
transition: fill 0.15s;
}
.tabClose {
flex-shrink: 0;
width: 16px;
height: 16px;
line-height: 16px;
font-size: 10px;
text-align: center;
margin-right: 12px;
color: rgba(0, 0, 0, 0.45);
border-radius: 50%;
cursor: pointer;
transition: all 0.15s;
&:hover {
color: rgba(0, 0, 0, 0.85);
background-color: rgba(0, 0, 0, 0.06);
}
}
.tabTitleCon {
height: 28px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 4px;
}
.tabTitle {
position: relative;
z-index: 2;
flex: 1;
min-width: 0;
padding: 2px 8px;
font-size: 13px;
color: rgba(0, 0, 0, 0.65);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
@@ -43,7 +43,7 @@ const PageTabs = defineComponent({
}; };
return () => ( return () => (
<div class={styles.tabsWrap}> <div class={styles.pageTabsMain}>
{props.tabs.map((tab, i) => { {props.tabs.map((tab, i) => {
const isActive = tab.path === props.activeKey; const isActive = tab.path === props.activeKey;
return ( return (
+109 -114
View File
@@ -1,133 +1,128 @@
.container { .basicLayoutMain {
min-height: 100vh; min-height: 100vh;
height: 100vh; height: 100vh;
}
.logo { .logo {
height: 56px; height: 56px;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
overflow: hidden; overflow: hidden;
color: #1a1a1a; color: #1a1a1a;
background: #fff; background: #fff;
}
.logoText {
font-size: 16px;
font-weight: 600;
white-space: nowrap;
}
.trigger {
font-size: 18px;
cursor: pointer;
transition: color 0.3s;
padding: 0 12px;
display: inline-flex;
align-items: center;
&:hover {
color: #1677ff;
} }
}
// 面包屑 .logoText {
.breadcrumb { font-size: 16px;
flex: 1; font-weight: 600;
margin-left: 8px; white-space: nowrap;
font-size: 14px; }
:global { .trigger {
.ant-breadcrumb-link, font-size: 18px;
.ant-breadcrumb-separator, cursor: pointer;
.ant-breadcrumb-item a { transition: color 0.3s;
color: rgba(0, 0, 0, 0.65); padding: 0 12px;
display: inline-flex;
align-items: center;
&:hover {
color: #1677ff;
} }
}
.ant-breadcrumb-item:last-child { .breadcrumb {
flex: 1;
margin-left: 8px;
font-size: 14px;
:global {
.ant-breadcrumb-link, .ant-breadcrumb-link,
.ant-breadcrumb-separator, .ant-breadcrumb-separator,
a { .ant-breadcrumb-item a {
color: rgba(0, 0, 0, 0.88); color: rgba(0, 0, 0, 0.65);
font-weight: 500; }
cursor: default;
.ant-breadcrumb-item:last-child {
.ant-breadcrumb-link,
.ant-breadcrumb-separator,
a {
color: rgba(0, 0, 0, 0.88);
font-weight: 500;
cursor: default;
}
} }
} }
} }
}
// Header 右侧:账号信息 + 退出图标 .headerRight {
.headerRight { margin-left: auto;
margin-left: auto; display: flex;
display: flex; gap: 10px;
gap: 10px; align-items: center;
align-items: center;
}
.userPhone {
font-size: 14px;
color: rgba(0, 0, 0, 0.65);
}
.logoutIcon {
width: 18px;
height: 18px;
opacity: 0.45;
cursor: pointer;
transition: opacity 0.3s;
&:hover {
opacity: 1;
} }
}
// 下拉菜单项:图标 + 文字 .userPhone {
.menuItem {
display: inline-flex;
align-items: center;
gap: 8px;
:global(.anticon) {
font-size: 14px; font-size: 14px;
color: rgba(0, 0, 0, 0.65);
}
.logoutIcon {
width: 18px;
height: 18px;
opacity: 0.45;
cursor: pointer;
transition: opacity 0.3s;
&:hover {
opacity: 1;
}
}
.menuItem {
display: inline-flex;
align-items: center;
gap: 8px;
:global(.anticon) {
font-size: 14px;
}
}
.menuItemDanger {
color: #ff4d4f;
}
.content {
margin: 16px;
border-radius: 8px;
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
overflow: hidden;
}
.main {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
}
.headerRow {
padding: 0 16px;
width: 100%;
height: 48px;
display: flex;
align-items: center;
}
.pageTabs {
width: 100%;
padding: 4px 16px 0 16px;
height: 42px;
background: #fff;
border-top: 1px solid #f0f0f0;
} }
} }
.menuItemDanger {
color: #ff4d4f;
}
.content {
margin: 16px;
border-radius: 8px;
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
overflow: hidden;
}
.main {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
}
// ── 顶部行:原 Header 中的三个区域(折叠按钮 / 面包屑 / 右侧账号信息)整体包成一个 row ──
.headerRow {
padding: 0 16px;
width: 100%;
height: 48px;
display: flex;
align-items: center;
}
// ── 页面标签栏容器(Chrome 风格 PageTabs 的外壳) ──
.pageTabs {
width: 100%;
padding: 4px 16px 0 16px;
height: 42px;
background: #fff;
border-top: 1px solid #f0f0f0;
}
+1 -1
View File
@@ -173,7 +173,7 @@ export default defineComponent({
}; };
return () => ( return () => (
<Layout class={styles.container}> <Layout class={styles.basicLayoutMain}>
<Sider style={siderStyle} collapsed={collapsed.value} trigger={null} collapsible> <Sider style={siderStyle} collapsed={collapsed.value} trigger={null} collapsible>
<div class={styles.logo}> <div class={styles.logo}>
<span class={styles.logoText}>{collapsed.value ? '6羽' : '六羽赛事运营平台'}</span> <span class={styles.logoText}>{collapsed.value ? '6羽' : '六羽赛事运营平台'}</span>
+15 -17
View File
@@ -1,20 +1,18 @@
.container { .aboutMain {
// 容器 .title {
} margin-top: 0;
margin-bottom: 24px;
font-size: 20px;
font-weight: 600;
}
.title { .subtitle {
margin-top: 0; margin: 16px 0 8px;
margin-bottom: 24px; }
font-size: 20px;
font-weight: 600;
}
.subtitle { .list {
margin: 16px 0 8px; margin: 0;
} padding-left: 20px;
line-height: 2;
.list { }
margin: 0;
padding-left: 20px;
line-height: 2;
} }
+1 -1
View File
@@ -23,7 +23,7 @@ export default defineComponent({
]; ];
return () => ( return () => (
<div class={styles.container}> <div class={styles.aboutMain}>
<h2 class={styles.title}></h2> <h2 class={styles.title}></h2>
<Card> <Card>
<p>CPMS PC </p> <p>CPMS PC </p>
+21 -23
View File
@@ -1,27 +1,25 @@
.container { .dashboardMain {
// 容器 .title {
} margin-top: 0;
margin-bottom: 24px;
.title { font-size: 20px;
margin-top: 0; font-weight: 600;
margin-bottom: 24px;
font-size: 20px;
font-weight: 600;
}
.panel {
margin-top: 16px;
ul {
margin: 12px 0 0;
padding-left: 20px;
line-height: 2;
} }
code { .panel {
padding: 2px 8px; margin-top: 16px;
background: #f5f5f5;
border-radius: 4px; ul {
font-size: 13px; margin: 12px 0 0;
padding-left: 20px;
line-height: 2;
}
code {
padding: 2px 8px;
background: #f5f5f5;
border-radius: 4px;
font-size: 13px;
}
} }
} }
+1 -1
View File
@@ -23,7 +23,7 @@ export default defineComponent({
]; ];
return () => ( return () => (
<div class={styles.container}> <div class={styles.dashboardMain}>
<h2 class={styles.title}></h2> <h2 class={styles.title}></h2>
<Row gutter={[16, 16]}> <Row gutter={[16, 16]}>
@@ -1,133 +1,130 @@
.form { .bannerFormModalMain {
:global { .form {
.ant-form-item { :global {
margin-bottom: 16px; .ant-form-item {
} margin-bottom: 16px;
.ant-form-item-explain-error { }
font-size: 12px; .ant-form-item-explain-error {
font-size: 12px;
}
} }
} }
}
/* ===== 上传 ===== */ .uploader {
.uploader { position: relative;
position: relative;
}
.uploadCard {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 140px;
border: 1px dashed #d9d9d9;
border-radius: 6px;
background-color: #fafafa;
cursor: pointer;
transition: border-color 0.2s;
gap: 4px;
&:hover {
border-color: #1677ff;
} }
}
.uploadCardError { .uploadCard {
border-color: #ff4d4f; display: flex;
} flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 140px;
border: 1px dashed #d9d9d9;
border-radius: 6px;
background-color: #fafafa;
cursor: pointer;
transition: border-color 0.2s;
gap: 4px;
.uploadIcon { &:hover {
font-size: 32px; border-color: #1677ff;
color: #999;
font-weight: 300;
line-height: 1;
}
.uploadHint {
color: #666;
font-size: 14px;
}
.uploadTip {
color: #999;
font-size: 12px;
text-align: center;
line-height: 1.6;
}
/* ===== 预览 ===== */
.previewWrapper {
position: relative;
width: 100%;
height: 140px;
border: 1px solid #d9d9d9;
border-radius: 6px;
overflow: hidden;
background-color: #f5f5f5;
:global {
.ant-spin-nested-loading,
.ant-spin-container {
width: 100%;
height: 100%;
} }
} }
}
.previewImg { .uploadCardError {
width: 100%; border-color: #ff4d4f;
height: 100%; }
object-fit: cover;
display: block;
}
.uploadAgainBtn { .uploadIcon {
position: absolute; font-size: 32px;
bottom: 0; color: #999;
left: 0; font-weight: 300;
right: 0; line-height: 1;
background: rgba(0, 0, 0, 0.5); }
color: #fff;
text-align: center;
padding: 4px 0;
cursor: pointer;
font-size: 12px;
user-select: none;
transition: background 0.2s;
&:hover { .uploadHint {
background: rgba(0, 0, 0, 0.65); color: #666;
font-size: 14px;
}
.uploadTip {
color: #999;
font-size: 12px;
text-align: center;
line-height: 1.6;
}
.previewWrapper {
position: relative;
width: 100%;
height: 140px;
border: 1px solid #d9d9d9;
border-radius: 6px;
overflow: hidden;
background-color: #f5f5f5;
:global {
.ant-spin-nested-loading,
.ant-spin-container {
width: 100%;
height: 100%;
}
}
}
.previewImg {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.uploadAgainBtn {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.5);
color: #fff;
text-align: center;
padding: 4px 0;
cursor: pointer;
font-size: 12px;
user-select: none;
transition: background 0.2s;
&:hover {
background: rgba(0, 0, 0, 0.65);
}
}
.tip {
padding: 8px 12px;
margin-bottom: 16px;
background-color: #f0f5ff;
border: 1px solid #d6e4ff;
border-radius: 4px;
color: #1677ff;
font-size: 13px;
}
.timeRow {
display: flex;
gap: 16px;
.timeItem {
flex: 1;
}
}
.footer {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
border-top: 1px solid #f0f0f0;
margin-top: 8px;
} }
} }
/* ===== 提示 ===== */
.tip {
padding: 8px 12px;
margin-bottom: 16px;
background-color: #f0f5ff;
border: 1px solid #d6e4ff;
border-radius: 4px;
color: #1677ff;
font-size: 13px;
}
/* ===== 时间行(双列)===== */
.timeRow {
display: flex;
gap: 16px;
.timeItem {
flex: 1;
}
}
/* ===== 底部按钮 ===== */
.footer {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
border-top: 1px solid #f0f0f0;
margin-top: 8px;
}
@@ -266,6 +266,7 @@ export default defineComponent({
destroyOnClose destroyOnClose
footer={null} footer={null}
centered centered
wrapClassName={styles.bannerFormModalMain}
> >
<Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark> <Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark>
{/* ===== Banner 标题 ===== */} {/* ===== Banner 标题 ===== */}
+15 -8
View File
@@ -1,14 +1,21 @@
.tableBody { .eventBannerMain {
flex: 1; flex: 1;
min-height: 0; min-height: 0;
overflow: hidden; display: flex;
flex-direction: column;
:global { .tableBody {
.ant-spin-nested-loading, flex: 1;
.ant-spin-container, min-height: 0;
.ant-table, overflow: hidden;
.ant-table-container {
height: 100%; :global {
.ant-spin-nested-loading,
.ant-spin-container,
.ant-table,
.ant-table-container {
height: 100%;
}
} }
} }
} }
+35 -33
View File
@@ -15,7 +15,7 @@ import { useBannerModel, BANNER_STATUS_OPTIONS } from './model/useBannerModel';
import { useContainerSize } from '@/hooks'; import { useContainerSize } from '@/hooks';
import BannerFormModal from './components/BannerFormModal'; import BannerFormModal from './components/BannerFormModal';
import styles from './index.module.less'; import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less'; import pageStyles from '@/assets/styles/pageLayout.module.less';
/** /**
* bodyCell 渲染函数 * bodyCell 渲染函数
@@ -231,39 +231,41 @@ export default defineComponent({
{/* ===== 表格区 ===== */} {/* ===== 表格区 ===== */}
<div class={pageStyles.table}> <div class={pageStyles.table}>
<div ref={containerRef} class={styles.tableBody}> <div class={styles.eventBannerMain}>
<Table <div ref={containerRef} class={styles.tableBody}>
columns={tableColumns} <Table
dataSource={dataSource.value} columns={tableColumns}
loading={loading.value} dataSource={dataSource.value}
scroll={{ x: 'max-content', y: height.value }} loading={loading.value}
pagination={false} scroll={{ x: 'max-content', y: height.value }}
> pagination={false}
{{ >
bodyCell: (args: any) => {{
renderBodyCell({ bodyCell: (args: any) =>
...args, renderBodyCell({
renderJumpType, ...args,
renderStatus, renderJumpType,
onEdit: handleEdit, renderStatus,
onToggleStatus: confirmToggleStatus, onEdit: handleEdit,
onDelete: confirmDelete, onToggleStatus: confirmToggleStatus,
}), onDelete: confirmDelete,
}} }),
</Table> }}
</div> </Table>
</div>
{/* 独立分页,右下方 */} {/* 独立分页,右下方 */}
<div class={pageStyles.pagination}> <div class={pageStyles.pagination}>
<Pagination <Pagination
current={pagination.value.current} current={pagination.value.current}
pageSize={pagination.value.pageSize} pageSize={pagination.value.pageSize}
total={pagination.value.total} total={pagination.value.total}
showSizeChanger showSizeChanger
showTotal={(total: number) => `${total}`} showTotal={(total: number) => `${total}`}
onChange={handlePageChange} onChange={handlePageChange}
onShowSizeChange={handlePageChange} onShowSizeChange={handlePageChange}
/> />
</div>
</div> </div>
</div> </div>
@@ -1,59 +1,61 @@
.section { .eventAuditModalMain {
margin-bottom: 24px; .section {
} margin-bottom: 24px;
.section:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
}
.sectionTitle { .sectionTitle {
font-size: 14px; font-size: 14px;
font-weight: 600; font-weight: 600;
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
margin-bottom: 12px; margin-bottom: 12px;
padding-left: 8px; padding-left: 8px;
border-left: 3px solid #1677ff; border-left: 3px solid #1677ff;
} }
.desc :global(.ant-descriptions-item-label) { .desc {
width: 110px; :global(.ant-descriptions-item-label) {
color: rgba(0, 0, 0, 0.65); width: 110px;
} color: rgba(0, 0, 0, 0.65);
}
}
// ── 审核操作区域 ── .auditSection {
.auditSection { margin-top: 24px;
margin-top: 24px; }
}
.auditHeader { .auditHeader {
display: flex; display: flex;
align-items: center; align-items: center;
margin-bottom: 16px; margin-bottom: 16px;
} }
.auditTitle { .auditTitle {
font-size: 14px; font-size: 14px;
font-weight: 600; font-weight: 600;
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
padding-left: 8px; padding-left: 8px;
border-left: 3px solid #1677ff; border-left: 3px solid #1677ff;
} }
.auditForm { .auditForm {
// 横线分隔标题与表单 border-top: 1px solid #f0f0f0;
border-top: 1px solid #f0f0f0; padding-top: 16px;
padding-top: 16px; }
}
.auditField { .auditField {
margin-bottom: 16px; margin-bottom: 16px;
:global(.ant-form-item-label) { &:last-child {
font-weight: 500; margin-bottom: 0;
color: rgba(0, 0, 0, 0.65); }
:global(.ant-form-item-label) {
font-weight: 500;
color: rgba(0, 0, 0, 0.65);
}
} }
} }
.auditField:last-child {
margin-bottom: 0;
}
@@ -80,6 +80,7 @@ export default defineComponent({
cancelText="取消" cancelText="取消"
centered centered
destroyOnClose destroyOnClose
wrapClassName={styles.eventAuditModalMain}
> >
{/* ===== 基础信息 ===== */} {/* ===== 基础信息 ===== */}
<div class={styles.section}> <div class={styles.section}>
@@ -1,67 +1,68 @@
.section { .eventDetailModalMain {
margin-bottom: 24px; .section {
} margin-bottom: 24px;
.section:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
}
.sectionTitle { .sectionTitle {
font-size: 14px; font-size: 14px;
font-weight: 600; font-weight: 600;
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
margin-bottom: 12px; margin-bottom: 12px;
padding-left: 8px; padding-left: 8px;
border-left: 3px solid #1677ff; border-left: 3px solid #1677ff;
} }
.textBlock { .textBlock {
font-size: 13px; font-size: 13px;
line-height: 1.8; line-height: 1.8;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
white-space: pre-wrap; white-space: pre-wrap;
background: #fafafa; background: #fafafa;
padding: 12px 16px; padding: 12px 16px;
border-radius: 4px; border-radius: 4px;
border: 1px solid #f0f0f0; border: 1px solid #f0f0f0;
} }
// Descriptions 列宽稍微压缩一些,避免单标签被挤 .desc {
.desc :global(.ant-descriptions-item-label) { :global(.ant-descriptions-item-label) {
width: 110px; width: 110px;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
} }
}
// 组别信息下的子表格 .group {
.group { margin-bottom: 16px;
margin-bottom: 16px;
}
.group:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
}
.groupTitle { .groupTitle {
font-size: 13px; font-size: 13px;
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
margin-bottom: 8px; margin-bottom: 8px;
font-weight: 500; font-weight: 500;
} }
.paginationRow { .paginationRow {
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
margin-top: 8px; margin-top: 8px;
} }
// 分组信息列表 .divisionList {
.divisionList { display: flex;
display: flex; flex-direction: column;
flex-direction: column; gap: 6px;
gap: 6px; }
}
.divisionItem { .divisionItem {
font-size: 13px; font-size: 13px;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
}
} }
@@ -110,6 +110,7 @@ export default defineComponent({
footer={null} footer={null}
centered centered
destroyOnClose destroyOnClose
wrapClassName={styles.eventDetailModalMain}
> >
{/* ===== 基础信息 ===== */} {/* ===== 基础信息 ===== */}
<div class={styles.section}> <div class={styles.section}>
@@ -1,51 +1,53 @@
.section { .eventRegulationModalMain {
margin-bottom: 20px; .section {
} margin-bottom: 20px;
.section:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
}
.sectionTitle { .sectionTitle {
font-size: 14px; font-size: 14px;
font-weight: 600; font-weight: 600;
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
margin-bottom: 10px; margin-bottom: 10px;
padding-left: 8px; padding-left: 8px;
border-left: 3px solid #1677ff; border-left: 3px solid #1677ff;
} }
.textBlock { .textBlock {
font-size: 13px; font-size: 13px;
line-height: 1.5; line-height: 1.5;
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
white-space: pre-wrap; white-space: pre-wrap;
background: #fafafa; background: #fafafa;
padding: 12px 16px; padding: 12px 16px;
border-radius: 4px; border-radius: 4px;
border: 1px solid #f0f0f0; border: 1px solid #f0f0f0;
} }
.imageGrid { .imageGrid {
display: grid; display: grid;
grid-template-columns: repeat(4, 1fr); grid-template-columns: repeat(4, 1fr);
gap: 12px; gap: 12px;
} }
.imageCell { .imageCell {
width: 100%; width: 100%;
aspect-ratio: 3 / 2; aspect-ratio: 3 / 2;
background: #f5f5f5; background: #f5f5f5;
border-radius: 4px; border-radius: 4px;
overflow: hidden; overflow: hidden;
border: 1px solid #f0f0f0; border: 1px solid #f0f0f0;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
}
.imageCell :global(.ant-image) { :global(.ant-image) {
width: 100%; width: 100%;
height: 100%; height: 100%;
object-fit: cover; object-fit: cover;
}
}
} }
@@ -40,6 +40,7 @@ export default defineComponent({
footer={null} footer={null}
centered centered
destroyOnClose destroyOnClose
wrapClassName={styles.eventRegulationModalMain}
> >
{/* 规程文字 */} {/* 规程文字 */}
<div class={styles.section}> <div class={styles.section}>
+15 -12
View File
@@ -1,18 +1,21 @@
/** .eventListMain {
* 表格 body 容器:占满 flex 剩余空间,并确保 antd 嵌套 div 逐层传递 height: 100%
* 使得 Table scroll.y = 'calc(100% - 55px)' 中的 100% 能正确解析。
*/
.tableBody {
flex: 1; flex: 1;
min-height: 0; min-height: 0;
overflow: hidden; display: flex;
flex-direction: column;
:global { .tableBody {
.ant-spin-nested-loading, flex: 1;
.ant-spin-container, min-height: 0;
.ant-table, overflow: hidden;
.ant-table-container {
height: 100%; :global {
.ant-spin-nested-loading,
.ant-spin-container,
.ant-table,
.ant-table-container {
height: 100%;
}
} }
} }
} }
+33 -31
View File
@@ -26,7 +26,7 @@ import EventRegulationModal from './components/EventRegulationModal';
import EventDetailModal from './components/EventDetailModal'; import EventDetailModal from './components/EventDetailModal';
import EventAuditModal from './components/EventAuditModal'; import EventAuditModal from './components/EventAuditModal';
import styles from './index.module.less'; import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less'; import pageStyles from '@/assets/styles/pageLayout.module.less';
const { RangePicker } = DatePicker; const { RangePicker } = DatePicker;
@@ -309,37 +309,39 @@ export default defineComponent({
{/* ===== 表格区 ===== */} {/* ===== 表格区 ===== */}
<div class={pageStyles.table}> <div class={pageStyles.table}>
<div ref={containerRef} class={styles.tableBody}> <div class={styles.eventListMain}>
<Table <div ref={containerRef} class={styles.tableBody}>
columns={tableColumns} <Table
dataSource={dataSource.value} columns={tableColumns}
loading={loading.value} dataSource={dataSource.value}
scroll={{ x: 'max-content', y: height.value }} loading={loading.value}
pagination={false} scroll={{ x: 'max-content', y: height.value }}
> pagination={false}
{{ >
bodyCell: (args: any) => {{
renderBodyCell({ bodyCell: (args: any) =>
...args, renderBodyCell({
onView: handleView, ...args,
onAudit: handleAudit, onView: handleView,
onToggleShelf: handleToggleShelf, onAudit: handleAudit,
}), onToggleShelf: handleToggleShelf,
}} }),
</Table> }}
</div> </Table>
</div>
{/* 独立分页,右下方 */} {/* 独立分页,右下方 */}
<div class={pageStyles.pagination}> <div class={pageStyles.pagination}>
<Pagination <Pagination
current={pagination.value.current} current={pagination.value.current}
pageSize={pagination.value.pageSize} pageSize={pagination.value.pageSize}
total={pagination.value.total} total={pagination.value.total}
showSizeChanger showSizeChanger
showTotal={(total: number) => `${total}`} showTotal={(total: number) => `${total}`}
onChange={handlePageChange} onChange={handlePageChange}
onShowSizeChange={handlePageChange} onShowSizeChange={handlePageChange}
/> />
</div>
</div> </div>
</div> </div>
@@ -1,194 +1,186 @@
// ===== 自定义标题栏 ===== .orderDetailModalMain {
.modalHeader { .modalHeader {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
padding: 0 0 16px; padding: 0 0 16px;
margin-bottom: 16px; margin-bottom: 16px;
border-bottom: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0;
} }
.modalTitle { .modalTitle {
font-size: 16px; font-size: 16px;
font-weight: 600; font-weight: 600;
color: rgba(0, 0, 0, 0.85);
}
.closeBtn {
width: 28px;
height: 28px;
border: none;
background: transparent;
font-size: 22px;
line-height: 1;
color: rgba(0, 0, 0, 0.45);
cursor: pointer;
border-radius: 4px;
transition: all 0.2s;
&:hover {
background: rgba(0, 0, 0, 0.04);
color: rgba(0, 0, 0, 0.85); color: rgba(0, 0, 0, 0.85);
} }
}
// ===== 内容区 ===== .closeBtn {
.modalBody { width: 28px;
padding-top: 0; height: 28px;
} border: none;
// ===== 订单信息 grid =====
.infoGrid {
display: grid;
grid-template-columns: repeat(3, 1fr);
row-gap: 12px;
column-gap: 24px;
font-size: 13px;
margin-bottom: 24px;
padding-bottom: 16px;
border-bottom: 1px solid #f0f0f0;
}
.infoItem {
display: flex;
align-items: baseline;
min-width: 0;
}
.infoLabel {
color: rgba(0, 0, 0, 0.65);
flex-shrink: 0;
}
// ===== 通用 section =====
.section {
margin-bottom: 24px;
}
.section:last-child {
margin-bottom: 0;
}
.sectionTitle {
font-size: 14px;
font-weight: 600;
color: rgba(0, 0, 0, 0.85);
margin-bottom: 12px;
padding-left: 8px;
border-left: 3px solid #1677ff;
}
// ===== 退款记录 =====
.refundHeader {
margin-bottom: 12px;
}
.refundSummary {
display: flex;
gap: 32px;
font-size: 13px;
color: rgba(0, 0, 0, 0.85);
margin-bottom: 12px;
}
/** 固定高度 + 滚动 */
.refundList {
max-height: 320px;
overflow-y: auto;
padding-right: 4px;
// 自定义滚动条样式
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-thumb {
background: #d9d9d9;
border-radius: 3px;
}
&::-webkit-scrollbar-track {
background: transparent; background: transparent;
font-size: 22px;
line-height: 1;
color: rgba(0, 0, 0, 0.45);
cursor: pointer;
border-radius: 4px;
transition: all 0.2s;
&:hover {
background: rgba(0, 0, 0, 0.04);
color: rgba(0, 0, 0, 0.85);
}
}
.modalBody {
padding-top: 0;
}
.infoGrid {
display: grid;
grid-template-columns: repeat(3, 1fr);
row-gap: 12px;
column-gap: 24px;
font-size: 13px;
margin-bottom: 24px;
padding-bottom: 16px;
border-bottom: 1px solid #f0f0f0;
}
.infoItem {
display: flex;
align-items: baseline;
min-width: 0;
}
.infoLabel {
color: rgba(0, 0, 0, 0.65);
flex-shrink: 0;
}
.section {
margin-bottom: 24px;
&:last-child {
margin-bottom: 0;
}
}
.sectionTitle {
font-size: 14px;
font-weight: 600;
color: rgba(0, 0, 0, 0.85);
margin-bottom: 12px;
padding-left: 8px;
border-left: 3px solid #1677ff;
}
.refundHeader {
margin-bottom: 12px;
}
.refundSummary {
display: flex;
gap: 32px;
font-size: 13px;
color: rgba(0, 0, 0, 0.85);
margin-bottom: 12px;
}
.refundList {
max-height: 320px;
overflow-y: auto;
padding-right: 4px;
&::-webkit-scrollbar {
width: 6px;
}
&::-webkit-scrollbar-thumb {
background: #d9d9d9;
border-radius: 3px;
}
&::-webkit-scrollbar-track {
background: transparent;
}
}
.refundCard {
padding: 14px 16px;
margin-bottom: 12px;
background: #fafafa;
border: 1px solid #f0f0f0;
border-radius: 6px;
&:last-child {
margin-bottom: 0;
}
}
.refundCardHeader {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
padding-bottom: 10px;
border-bottom: 1px dashed #e0e0e0;
}
.refundIndex {
font-size: 13px;
font-weight: 500;
color: rgba(0, 0, 0, 0.85);
}
.refundCardBody {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px 24px;
font-size: 13px;
color: rgba(0, 0, 0, 0.65);
line-height: 1.8;
}
.refundCol {
min-width: 0;
}
.refundAmount {
color: rgba(0, 0, 0, 0.85);
font-weight: 500;
}
.partialMark {
margin-left: 4px;
color: #fa8c16;
font-size: 12px;
}
.refundEmpty {
padding: 32px 0;
text-align: center;
font-size: 13px;
color: rgba(0, 0, 0, 0.45);
background: #fafafa;
border-radius: 6px;
border: 1px dashed #e0e0e0;
}
.refundPagination {
display: flex;
justify-content: flex-end;
margin-top: 12px;
}
.modalFooter {
display: flex;
justify-content: flex-end;
gap: 12px;
padding-top: 16px;
margin-top: 8px;
border-top: 1px solid #f0f0f0;
} }
} }
.refundCard {
padding: 14px 16px;
margin-bottom: 12px;
background: #fafafa;
border: 1px solid #f0f0f0;
border-radius: 6px;
}
.refundCard:last-child {
margin-bottom: 0;
}
.refundCardHeader {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
padding-bottom: 10px;
border-bottom: 1px dashed #e0e0e0;
}
.refundIndex {
font-size: 13px;
font-weight: 500;
color: rgba(0, 0, 0, 0.85);
}
.refundCardBody {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px 24px;
font-size: 13px;
color: rgba(0, 0, 0, 0.65);
line-height: 1.8;
}
.refundCol {
min-width: 0;
}
.refundAmount {
color: rgba(0, 0, 0, 0.85);
font-weight: 500;
}
.partialMark {
margin-left: 4px;
color: #fa8c16;
font-size: 12px;
}
.refundEmpty {
padding: 32px 0;
text-align: center;
font-size: 13px;
color: rgba(0, 0, 0, 0.45);
background: #fafafa;
border-radius: 6px;
border: 1px dashed #e0e0e0;
}
// 分页:右下角
.refundPagination {
display: flex;
justify-content: flex-end;
margin-top: 12px;
}
// ===== 底部按钮区 =====
.modalFooter {
display: flex;
justify-content: flex-end;
gap: 12px;
padding-top: 16px;
margin-top: 8px;
border-top: 1px solid #f0f0f0;
}
// ===== Modal 外层包裹:去除 antd 默认内边距,让自定义标题贴合 =====
.orderModalWrap { .orderModalWrap {
:global(.ant-modal-body) { :global(.ant-modal-body) {
padding-top: 16px; padding-top: 16px;
@@ -128,142 +128,144 @@ export default defineComponent({
closable={false} closable={false}
wrapClassName={styles.orderModalWrap} wrapClassName={styles.orderModalWrap}
> >
{/* ===== 自定义标题栏 ===== */} <div class={styles.orderDetailModalMain}>
<div class={styles.modalHeader}> {/* ===== 自定义标题栏 ===== */}
<span class={styles.modalTitle}></span> <div class={styles.modalHeader}>
<button class={styles.closeBtn} onClick={props.onClose} aria-label="关闭"> <span class={styles.modalTitle}></span>
× <button class={styles.closeBtn} onClick={props.onClose} aria-label="关闭">
</button> ×
</div> </button>
<div class={styles.modalBody}>
{/* ===== 订单信息 ===== */}
<div class={styles.infoGrid}>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{props.record?.eventName}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{props.record?.orderId}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{props.record?.orderTime}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{props.record?.payTime}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{props.record?.totalAmount?.toFixed(2)}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{(props.record?.discountAmount || 0).toFixed(2)}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{props.record?.paidAmount?.toFixed(2)}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}>退</span>
<span>{props.record?.refundAmount?.toFixed(2)}</span>
</div>
</div> </div>
{/* ===== 选手信息 ===== */} <div class={styles.modalBody}>
<div class={styles.section}> {/* ===== 订单信息 ===== */}
<div class={styles.sectionTitle}></div> <div class={styles.infoGrid}>
<Table <div class={styles.infoItem}>
columns={PLAYER_COLUMNS} <span class={styles.infoLabel}></span>
dataSource={props.record?.players || []} <span>{props.record?.eventName}</span>
size="small" </div>
bordered <div class={styles.infoItem}>
pagination={false} <span class={styles.infoLabel}></span>
scroll={{ x: 'max-content' }} <span>{props.record?.orderId}</span>
/> </div>
</div> <div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
{/* ===== 退款记录 ===== */} <span>{props.record?.orderTime}</span>
<div class={styles.section}> </div>
<div class={styles.refundHeader}> <div class={styles.infoItem}>
<span class={styles.sectionTitle}>退</span> <span class={styles.infoLabel}></span>
<span>{props.record?.payTime}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{props.record?.totalAmount?.toFixed(2)}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{(props.record?.discountAmount || 0).toFixed(2)}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}></span>
<span>{props.record?.paidAmount?.toFixed(2)}</span>
</div>
<div class={styles.infoItem}>
<span class={styles.infoLabel}>退</span>
<span>{props.record?.refundAmount?.toFixed(2)}</span>
</div>
</div> </div>
{hasRefund.value ? (
<> {/* ===== 选手信息 ===== */}
<div class={styles.refundSummary}> <div class={styles.section}>
<span>退{totalRefunded.value.toFixed(2)}</span> <div class={styles.sectionTitle}></div>
<span>退{refundRecords.value.length}</span> <Table
</div> columns={PLAYER_COLUMNS}
{/* 固定高度 + 内部滚动 */} dataSource={props.record?.players || []}
<div class={styles.refundList}> size="small"
{pagedRefunds.value.map((r, idx) => { bordered
const statusInfo = REFUND_STATUS_MAP[r.status] || { pagination={false}
label: '-', scroll={{ x: 'max-content' }}
color: 'default', />
}; </div>
const realIdx = (refundPage.value - 1) * refundPageSize.value + idx + 1;
return ( {/* ===== 退款记录 ===== */}
<div key={r.key} class={styles.refundCard}> <div class={styles.section}>
<div class={styles.refundCardHeader}> <div class={styles.refundHeader}>
<span class={styles.refundIndex}>{realIdx}退</span> <span class={styles.sectionTitle}>退</span>
<Tag color={statusInfo.color}>{statusInfo.label}</Tag> </div>
</div> {hasRefund.value ? (
<div class={styles.refundCardBody}> <>
<div class={styles.refundCol}> <div class={styles.refundSummary}>
<div> <span>退{totalRefunded.value.toFixed(2)}</span>
退 <span>退{refundRecords.value.length}</span>
<span class={styles.refundAmount}> </div>
¥{r.amount.toFixed(2)} {/* 固定高度 + 内部滚动 */}
{r.isPartial && ( <div class={styles.refundList}>
<span class={styles.partialMark}>退</span> {pagedRefunds.value.map((r, idx) => {
)} const statusInfo = REFUND_STATUS_MAP[r.status] || {
</span> label: '-',
color: 'default',
};
const realIdx = (refundPage.value - 1) * refundPageSize.value + idx + 1;
return (
<div key={r.key} class={styles.refundCard}>
<div class={styles.refundCardHeader}>
<span class={styles.refundIndex}>{realIdx}退</span>
<Tag color={statusInfo.color}>{statusInfo.label}</Tag>
</div>
<div class={styles.refundCardBody}>
<div class={styles.refundCol}>
<div>
退
<span class={styles.refundAmount}>
¥{r.amount.toFixed(2)}
{r.isPartial && (
<span class={styles.partialMark}>退</span>
)}
</span>
</div>
<div>{r.applyTime}</div>
<div>{r.completeTime || '-'}</div>
</div>
<div class={styles.refundCol}>
<div>退{r.method}</div>
<div>退{r.thirdPartyNo || '-'}</div>
</div> </div>
<div>{r.applyTime}</div>
<div>{r.completeTime || '-'}</div>
</div>
<div class={styles.refundCol}>
<div>退{r.method}</div>
<div>退{r.thirdPartyNo || '-'}</div>
</div> </div>
</div> </div>
</div> );
); })}
})} </div>
</div> <div class={styles.refundPagination}>
<div class={styles.refundPagination}> <Pagination
<Pagination current={refundPage.value}
current={refundPage.value} pageSize={refundPageSize.value}
pageSize={refundPageSize.value} total={refundRecords.value.length}
total={refundRecords.value.length} showSizeChanger={false}
showSizeChanger={false} size="small"
size="small" onChange={handleRefundPageChange}
onChange={handleRefundPageChange} />
/> </div>
</div> </>
</> ) : (
<div class={styles.refundEmpty}>退</div>
)}
</div>
</div>
{/* ===== 底部按钮 ===== */}
<div class={styles.modalFooter}>
<Button onClick={props.onClose}></Button>
{hasRefund.value ? (
<Button danger onClick={handleReRefund}>
退
</Button>
) : ( ) : (
<div class={styles.refundEmpty}>退</div> <Button type="primary" onClick={handleConfirm}>
</Button>
)} )}
</div> </div>
</div> </div>
{/* ===== 底部按钮 ===== */}
<div class={styles.modalFooter}>
<Button onClick={props.onClose}></Button>
{hasRefund.value ? (
<Button danger onClick={handleReRefund}>
退
</Button>
) : (
<Button type="primary" onClick={handleConfirm}>
</Button>
)}
</div>
</Modal> </Modal>
); );
}, },
+32 -29
View File
@@ -1,37 +1,40 @@
/** .eventOrdersMain {
* 表格 body 容器:占满 flex 剩余空间,并确保 antd 嵌套 div 逐层传递 height: 100%
* 使得 Table scroll.y = 'calc(100% - 55px)' 中的 100% 能正确解析。
*/
.tableBody {
flex: 1; flex: 1;
min-height: 0; min-height: 0;
overflow: hidden;
:global {
.ant-spin-nested-loading,
.ant-spin-container,
.ant-table,
.ant-table-container {
height: 100%;
}
}
}
.summaryBar {
flex-shrink: 0;
display: flex; display: flex;
align-items: center; flex-direction: column;
gap: 20px;
padding: 12px 16px;
font-size: 14px;
color: #1a1a1a;
.summaryItem { .summaryBar {
font-weight: 500; flex-shrink: 0;
display: flex;
align-items: center;
gap: 20px;
padding: 12px 16px;
font-size: 14px;
color: #1a1a1a;
.summaryLabel { .summaryItem {
color: #666; font-weight: 500;
font-weight: 400;
.summaryLabel {
color: #666;
font-weight: 400;
}
}
}
.tableBody {
flex: 1;
min-height: 0;
overflow: hidden;
:global {
.ant-spin-nested-loading,
.ant-spin-container,
.ant-table,
.ant-table-container {
height: 100%;
}
} }
} }
} }
+47 -45
View File
@@ -15,7 +15,7 @@ import { useOrderModel, ORDER_STATUS_OPTIONS, REFUND_STATUS_OPTIONS } from './mo
import { useContainerSize, useState } from '@/hooks'; import { useContainerSize, useState } from '@/hooks';
import OrderDetailModal from './components/OrderDetailModal'; import OrderDetailModal from './components/OrderDetailModal';
import styles from './index.module.less'; import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less'; import pageStyles from '@/assets/styles/pageLayout.module.less';
const { RangePicker } = DatePicker; const { RangePicker } = DatePicker;
@@ -203,52 +203,54 @@ export default defineComponent({
{/* ===== 表格区 ===== */} {/* ===== 表格区 ===== */}
<div class={pageStyles.table}> <div class={pageStyles.table}>
{/* 金额汇总 */} <div class={styles.eventOrdersMain}>
<div class={styles.summaryBar}> {/* 金额汇总 */}
<span class={styles.summaryItem}> <div class={styles.summaryBar}>
<span class={styles.summaryLabel}></span> <span class={styles.summaryItem}>
{summary.value.totalOrderAmount.toFixed(2)} <span class={styles.summaryLabel}></span>
</span> {summary.value.totalOrderAmount.toFixed(2)}
<span class={styles.summaryItem}> </span>
<span class={styles.summaryLabel}></span> <span class={styles.summaryItem}>
{summary.value.totalPaidAmount.toFixed(2)} <span class={styles.summaryLabel}></span>
</span> {summary.value.totalPaidAmount.toFixed(2)}
<span class={styles.summaryItem}> </span>
<span class={styles.summaryLabel}>退</span> <span class={styles.summaryItem}>
{summary.value.totalRefundAmount.toFixed(2)} <span class={styles.summaryLabel}>退</span>
</span> {summary.value.totalRefundAmount.toFixed(2)}
</div> </span>
</div>
<div ref={containerRef} class={styles.tableBody}> <div ref={containerRef} class={styles.tableBody}>
<Table <Table
columns={tableColumns} columns={tableColumns}
dataSource={dataSource.value} dataSource={dataSource.value}
loading={loading.value} loading={loading.value}
scroll={{ x: 'max-content', y: height.value }} scroll={{ x: 'max-content', y: height.value }}
pagination={false} pagination={false}
> >
{{ {{
bodyCell: (args: any) => bodyCell: (args: any) =>
renderBodyCell({ renderBodyCell({
...args, ...args,
onView: handleView, onView: handleView,
onReRefund: handleReRefund, onReRefund: handleReRefund,
}), }),
}} }}
</Table> </Table>
</div> </div>
{/* 独立分页,右下方 */} {/* 独立分页,右下方 */}
<div class={pageStyles.pagination}> <div class={pageStyles.pagination}>
<Pagination <Pagination
current={pagination.value.current} current={pagination.value.current}
pageSize={pagination.value.pageSize} pageSize={pagination.value.pageSize}
total={pagination.value.total} total={pagination.value.total}
showSizeChanger showSizeChanger
showTotal={(total: number) => `${total}`} showTotal={(total: number) => `${total}`}
onChange={handlePageChange} onChange={handlePageChange}
onShowSizeChange={handlePageChange} onShowSizeChange={handlePageChange}
/> />
</div>
</div> </div>
</div> </div>
+15 -12
View File
@@ -1,18 +1,21 @@
/** .eventUsersMain {
* 表格 body 容器:占满 flex 剩余空间,并确保 antd 嵌套 div 逐层传递 height: 100%
* 使得 Table scroll.y = 'calc(100% - 55px)' 中的 100% 能正确解析。
*/
.tableBody {
flex: 1; flex: 1;
min-height: 0; min-height: 0;
overflow: hidden; display: flex;
flex-direction: column;
:global { .tableBody {
.ant-spin-nested-loading, flex: 1;
.ant-spin-container, min-height: 0;
.ant-table, overflow: hidden;
.ant-table-container {
height: 100%; :global {
.ant-spin-nested-loading,
.ant-spin-container,
.ant-table,
.ant-table-container {
height: 100%;
}
} }
} }
} }
+31 -29
View File
@@ -13,7 +13,7 @@ import {
import { useUserModel, USER_STATUS_OPTIONS } from './model/useUserModel'; import { useUserModel, USER_STATUS_OPTIONS } from './model/useUserModel';
import { useContainerSize } from '@/hooks'; import { useContainerSize } from '@/hooks';
import styles from './index.module.less'; import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less'; import pageStyles from '@/assets/styles/pageLayout.module.less';
/** /**
* bodyCell 渲染函数 * bodyCell 渲染函数
@@ -145,35 +145,37 @@ export default defineComponent({
{/* ===== 表格区 ===== */} {/* ===== 表格区 ===== */}
<div class={pageStyles.table}> <div class={pageStyles.table}>
<div ref={containerRef} class={styles.tableBody}> <div class={styles.eventUsersMain}>
<Table <div ref={containerRef} class={styles.tableBody}>
columns={tableColumns} <Table
dataSource={dataSource.value} columns={tableColumns}
loading={loading.value} dataSource={dataSource.value}
scroll={{ x: 'max-content', y: height.value }} loading={loading.value}
pagination={false} scroll={{ x: 'max-content', y: height.value }}
> pagination={false}
{{ >
bodyCell: (args: any) => {{
renderBodyCell({ bodyCell: (args: any) =>
...args, renderBodyCell({
onToggleStatus: handleToggleStatus, ...args,
}), onToggleStatus: handleToggleStatus,
}} }),
</Table> }}
</div> </Table>
</div>
{/* 独立分页,右下方 */} {/* 独立分页,右下方 */}
<div class={pageStyles.pagination}> <div class={pageStyles.pagination}>
<Pagination <Pagination
current={pagination.value.current} current={pagination.value.current}
pageSize={pagination.value.pageSize} pageSize={pagination.value.pageSize}
total={pagination.value.total} total={pagination.value.total}
showSizeChanger showSizeChanger
showTotal={(total: number) => `${total}`} showTotal={(total: number) => `${total}`}
onChange={handlePageChange} onChange={handlePageChange}
onShowSizeChange={handlePageChange} onShowSizeChange={handlePageChange}
/> />
</div>
</div> </div>
</div> </div>
</div> </div>
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -92,7 +92,7 @@ export default defineComponent({
]; ];
return () => ( return () => (
<div class={styles.container}> <div class={styles.loginMain}>
<div class={styles.brand}> <div class={styles.brand}>
<div class={styles.orb1} /> <div class={styles.orb1} />
<div class={styles.orb2} /> <div class={styles.orb2} />
@@ -1,33 +1,35 @@
.form { .roleFormModalMain {
:global { .modal {
.ant-form-item { :global {
margin-bottom: 16px; .ant-modal-body {
padding: 16px 24px 0;
}
} }
} }
}
.treeWrapper { .form {
max-height: 380px; :global {
overflow: auto; .ant-form-item {
padding: 8px 12px; margin-bottom: 16px;
border: 1px solid #f0f0f0; }
border-radius: 4px;
background: #fafafa;
}
.footer {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
border-top: 1px solid #f0f0f0;
margin-top: 8px;
}
.modal {
:global {
.ant-modal-body {
padding: 16px 24px 0;
} }
} }
.treeWrapper {
max-height: 380px;
overflow: auto;
padding: 8px 12px;
border: 1px solid #f0f0f0;
border-radius: 4px;
background: #fafafa;
}
.footer {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
border-top: 1px solid #f0f0f0;
margin-top: 8px;
}
} }
@@ -100,6 +100,7 @@ export default defineComponent({
destroyOnClose destroyOnClose
footer={null} footer={null}
centered centered
wrapClassName={styles.roleFormModalMain}
class={styles.modal} class={styles.modal}
> >
<Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark> <Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark>
@@ -1,23 +1,25 @@
.filter { .userListModalMain {
margin-bottom: 16px; .filter {
} margin-bottom: 16px;
}
.bottom { .bottom {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
margin-top: 16px; margin-top: 16px;
padding-top: 12px; padding-top: 12px;
border-top: 1px solid #f0f0f0; border-top: 1px solid #f0f0f0;
} }
.total { .total {
color: rgba(0, 0, 0, 0.65); color: rgba(0, 0, 0, 0.65);
font-size: 13px; font-size: 13px;
} }
.paginationRow { .paginationRow {
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
margin-top: 12px; margin-top: 12px;
}
} }
@@ -78,6 +78,7 @@ export default defineComponent({
footer={null} footer={null}
centered centered
destroyOnClose destroyOnClose
wrapClassName={styles.userListModalMain}
> >
{/* 筛选 */} {/* 筛选 */}
<div class={styles.filter}> <div class={styles.filter}>
+34 -32
View File
@@ -1,43 +1,45 @@
/** .systemRolesMain {
* 表格 body 容器:占满 flex 剩余空间
*/
.tableBody {
flex: 1; flex: 1;
min-height: 0; min-height: 0;
overflow: hidden; display: flex;
flex-direction: column;
:global { .tableBody {
.ant-spin-nested-loading, flex: 1;
.ant-spin-container, min-height: 0;
.ant-table, overflow: hidden;
.ant-table-container {
height: 100%; :global {
.ant-spin-nested-loading,
.ant-spin-container,
.ant-table,
.ant-table-container {
height: 100%;
}
} }
} }
}
/* 用户数链接 */ .userCountLink {
.userCountLink { font-variant-numeric: tabular-nums;
font-variant-numeric: tabular-nums;
}
/* ===== 删除确认弹窗 ===== */
.confirmContent {
padding: 4px 24px;
font-size: 14px;
color: rgba(0, 0, 0, 0.85);
strong {
margin: 0 4px;
font-weight: 600;
} }
}
.confirmTip { .confirmContent {
margin-top: 8px; padding: 4px 24px;
font-size: 12px; font-size: 14px;
color: rgba(0, 0, 0, 0.45); color: rgba(0, 0, 0, 0.85);
line-height: 1.5;
strong {
margin: 0 4px;
font-weight: 600;
}
}
.confirmTip {
margin-top: 8px;
font-size: 12px;
color: rgba(0, 0, 0, 0.45);
line-height: 1.5;
}
} }
:global(.deleteConfirmModal) { :global(.deleteConfirmModal) {
+41 -37
View File
@@ -6,7 +6,7 @@ import { useContainerSize } from '@/hooks';
import RoleFormModal from './components/RoleFormModal'; import RoleFormModal from './components/RoleFormModal';
import UserListModal from './components/UserListModal'; import UserListModal from './components/UserListModal';
import styles from './index.module.less'; import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less'; import pageStyles from '@/assets/styles/pageLayout.module.less';
/** /**
* bodyCell 渲染 * bodyCell 渲染
@@ -57,13 +57,15 @@ function confirmDelete({ record, onOk }: { record: any; onOk: (record: any) => v
icon: null, icon: null,
class: styles.deleteConfirmModal, class: styles.deleteConfirmModal,
content: ( content: (
<div class={styles.confirmContent}> <div class={styles.systemRolesMain}>
<div> <div class={styles.confirmContent}>
<span></span> <div>
<strong>{record.roleName}</strong> <span></span>
<span></span> <strong>{record.roleName}</strong>
<span></span>
</div>
<div class={styles.confirmTip}></div>
</div> </div>
<div class={styles.confirmTip}></div>
</div> </div>
), ),
okText: '确认', okText: '确认',
@@ -148,37 +150,39 @@ export default defineComponent({
{/* ===== 表格区 ===== */} {/* ===== 表格区 ===== */}
<div class={pageStyles.table}> <div class={pageStyles.table}>
<div ref={containerRef} class={styles.tableBody}> <div class={styles.systemRolesMain}>
<Table <div ref={containerRef} class={styles.tableBody}>
columns={tableColumns} <Table
dataSource={dataSource.value} columns={tableColumns}
loading={loading.value} dataSource={dataSource.value}
scroll={{ x: 'max-content', y: height.value }} loading={loading.value}
pagination={false} scroll={{ x: 'max-content', y: height.value }}
> pagination={false}
{{ >
bodyCell: (args: any) => {{
renderBodyCell({ bodyCell: (args: any) =>
...args, renderBodyCell({
onViewUsers: handleViewUsers, ...args,
onEdit: handleEdit, onViewUsers: handleViewUsers,
onDelete: triggerDelete, onEdit: handleEdit,
}), onDelete: triggerDelete,
}} }),
</Table> }}
</div> </Table>
</div>
{/* 分页 */} {/* 分页 */}
<div class={pageStyles.pagination}> <div class={pageStyles.pagination}>
<Pagination <Pagination
current={pagination.value.current} current={pagination.value.current}
pageSize={pagination.value.pageSize} pageSize={pagination.value.pageSize}
total={pagination.value.total} total={pagination.value.total}
showSizeChanger showSizeChanger
showTotal={(total: number) => `${total}`} showTotal={(total: number) => `${total}`}
onChange={handlePageChange} onChange={handlePageChange}
onShowSizeChange={handlePageChange} onShowSizeChange={handlePageChange}
/> />
</div>
</div> </div>
</div> </div>
@@ -1,52 +1,49 @@
/* ===== 表单行/列布局 ===== */ .userFormModalMain {
.row { .row {
display: flex; display: flex;
gap: 16px; gap: 16px;
flex-wrap: wrap; flex-wrap: wrap;
} }
.col { .col {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
} }
/* 让 antd Form.Item 在 col 里能正确控制宽度 */ .form {
.form { :global {
:global { .ant-form-item {
.ant-form-item { flex: 1;
flex: 1; min-width: 0;
min-width: 0; }
} }
} }
}
/* ===== 密码区重置链接 ===== */ .resetLink {
.resetLink { font-size: 14px;
font-size: 14px; color: #1677ff;
color: #1677ff; cursor: pointer;
cursor: pointer; user-select: none;
user-select: none;
&:hover { &:hover {
color: #4096ff; color: #4096ff;
}
}
.cancelRow {
display: flex;
justify-content: flex-end;
margin-top: -8px;
margin-bottom: 16px;
font-size: 12px;
}
.footer {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
border-top: 1px solid #f0f0f0;
margin-top: 8px;
} }
} }
/* ===== 取消重置行 ===== */
.cancelRow {
display: flex;
justify-content: flex-end;
margin-top: -8px;
margin-bottom: 16px;
font-size: 12px;
}
/* ===== 底部按钮 ===== */
.footer {
display: flex;
justify-content: flex-end;
gap: 8px;
padding-top: 16px;
border-top: 1px solid #f0f0f0;
margin-top: 8px;
}
@@ -121,6 +121,7 @@ export default defineComponent({
destroyOnClose destroyOnClose
footer={null} footer={null}
centered centered
wrapClassName={styles.userFormModalMain}
> >
<Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark> <Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark>
{/* 姓名 / 手机号:同一行 */} {/* 姓名 / 手机号:同一行 */}
+29 -31
View File
@@ -1,41 +1,39 @@
/** .systemUsersMain {
* 表格 body 容器:占满 flex 剩余空间,
* 确保 antd 嵌套 div 逐层传递 height: 100%
* 使得 Table scroll.y 能正确解析。
*/
.tableBody {
flex: 1; flex: 1;
min-height: 0; min-height: 0;
overflow: hidden; display: flex;
flex-direction: column;
:global { .tableBody {
.ant-spin-nested-loading, flex: 1;
.ant-spin-container, min-height: 0;
.ant-table, overflow: hidden;
.ant-table-container {
height: 100%; :global {
.ant-spin-nested-loading,
.ant-spin-container,
.ant-table,
.ant-table-container {
height: 100%;
}
}
}
.confirmContent {
display: flex;
align-items: center;
flex-wrap: wrap;
padding: 4px 0;
font-size: 14px;
color: rgba(0, 0, 0, 0.85);
strong {
margin: 0 4px;
font-weight: 600;
} }
} }
} }
/* ===== 禁用/启用 二次确认弹窗 ===== */
/* 内容块:左右加 padding,按用户要求 */
.confirmContent {
display: flex;
align-items: center;
flex-wrap: wrap;
padding: 4px 0;
font-size: 14px;
color: rgba(0, 0, 0, 0.85);
strong {
margin: 0 4px;
font-weight: 600;
}
}
/* antd Modal.confirm 默认 body 已经有 padding,这里额外覆盖一下确保一致 */
:global(.toggleConfirmModal) { :global(.toggleConfirmModal) {
.ant-modal-confirm-body { .ant-modal-confirm-body {
padding: 24px !important; padding: 24px !important;
+38 -34
View File
@@ -4,7 +4,7 @@ import { useUserModel, USER_ROLE_OPTIONS, USER_STATUS_OPTIONS } from './model/us
import { useContainerSize } from '@/hooks'; import { useContainerSize } from '@/hooks';
import UserFormModal from './components/UserFormModal'; import UserFormModal from './components/UserFormModal';
import styles from './index.module.less'; import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less'; import pageStyles from '@/assets/styles/pageLayout.module.less';
/** /**
* bodyCell 渲染函数 * bodyCell 渲染函数
@@ -54,10 +54,12 @@ function confirmToggleStatus({ record, onOk }: { record: any; onOk: (record: any
title: `确认${actionText}`, title: `确认${actionText}`,
class: styles.toggleConfirmModal, class: styles.toggleConfirmModal,
content: ( content: (
<div class={styles.confirmContent}> <div class={styles.systemUsersMain}>
<span>{actionText}</span> <div class={styles.confirmContent}>
<strong>{record.realName}</strong> <span>{actionText}</span>
<span></span> <strong>{record.realName}</strong>
<span></span>
</div>
</div> </div>
), ),
okText: '确认', okText: '确认',
@@ -164,36 +166,38 @@ export default defineComponent({
{/* ===== 表格区 ===== */} {/* ===== 表格区 ===== */}
<div class={pageStyles.table}> <div class={pageStyles.table}>
<div ref={containerRef} class={styles.tableBody}> <div class={styles.systemUsersMain}>
<Table <div ref={containerRef} class={styles.tableBody}>
columns={tableColumns} <Table
dataSource={dataSource.value} columns={tableColumns}
loading={loading.value} dataSource={dataSource.value}
scroll={{ x: 'max-content', y: height.value }} loading={loading.value}
pagination={false} scroll={{ x: 'max-content', y: height.value }}
> pagination={false}
{{ >
bodyCell: (args: any) => {{
renderBodyCell({ bodyCell: (args: any) =>
...args, renderBodyCell({
onEdit: triggerEdit, ...args,
onToggleStatus: triggerToggle, onEdit: triggerEdit,
}), onToggleStatus: triggerToggle,
}} }),
</Table> }}
</div> </Table>
</div>
{/* 独立分页 */} {/* 独立分页 */}
<div class={pageStyles.pagination}> <div class={pageStyles.pagination}>
<Pagination <Pagination
current={pagination.value.current} current={pagination.value.current}
pageSize={pagination.value.pageSize} pageSize={pagination.value.pageSize}
total={pagination.value.total} total={pagination.value.total}
showSizeChanger showSizeChanger
showTotal={(total: number) => `${total}`} showTotal={(total: number) => `${total}`}
onChange={handlePageChange} onChange={handlePageChange}
onShowSizeChange={handlePageChange} onShowSizeChange={handlePageChange}
/> />
</div>
</div> </div>
</div> </div>