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
footer={null}
centered
wrapClassName={styles.changePasswordModalMain}
class={styles.modal}
>
<Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark>
@@ -1,3 +1,12 @@
.changePasswordModalMain {
.modal {
:global {
.ant-modal-body {
padding: 16px 24px 0;
}
}
}
.form {
:global {
.ant-form-item {
@@ -9,7 +18,6 @@
}
}
/* 底部提示文案 */
.tip {
margin-top: -4px;
margin-bottom: 24px;
@@ -18,7 +26,6 @@
line-height: 1.5;
}
/* 底部按钮 */
.footer {
display: flex;
justify-content: flex-end;
@@ -26,12 +33,4 @@
padding-top: 16px;
border-top: 1px solid #f0f0f0;
}
/* 微调 Modal 内部样式 */
.modal {
:global {
.ant-modal-body {
padding: 16px 24px 0;
}
}
}
+2 -2
View File
@@ -1,7 +1,6 @@
.container {
.helloWorldMain {
text-align: center;
padding: 16px;
}
.title {
color: #1677ff;
@@ -14,3 +13,4 @@
border-radius: 4px;
}
}
}
+1 -1
View File
@@ -14,7 +14,7 @@ export default defineComponent({
},
setup(props) {
return () => (
<div class={styles.container}>
<div class={styles.helloWorldMain}>
<h3 class={styles.title}>{props.msg}</h3>
<p class={styles.desc}>
, TSX
+1 -1
View File
@@ -4,4 +4,4 @@
*/
export { default as HelloWorld } from './HelloWorld';
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 () => (
<div class={styles.tabsWrap}>
<div class={styles.pageTabsMain}>
{props.tabs.map((tab, i) => {
const isActive = tab.path === props.activeKey;
return (
+2 -7
View File
@@ -1,7 +1,6 @@
.container {
.basicLayoutMain {
min-height: 100vh;
height: 100vh;
}
.logo {
height: 56px;
@@ -32,7 +31,6 @@
}
}
// 面包屑
.breadcrumb {
flex: 1;
margin-left: 8px;
@@ -57,7 +55,6 @@
}
}
// Header 右侧:账号信息 + 退出图标
.headerRight {
margin-left: auto;
display: flex;
@@ -82,7 +79,6 @@
}
}
// 下拉菜单项:图标 + 文字
.menuItem {
display: inline-flex;
align-items: center;
@@ -114,7 +110,6 @@
flex-direction: column;
}
// ── 顶部行:原 Header 中的三个区域(折叠按钮 / 面包屑 / 右侧账号信息)整体包成一个 row ──
.headerRow {
padding: 0 16px;
width: 100%;
@@ -123,7 +118,6 @@
align-items: center;
}
// ── 页面标签栏容器(Chrome 风格 PageTabs 的外壳) ──
.pageTabs {
width: 100%;
padding: 4px 16px 0 16px;
@@ -131,3 +125,4 @@
background: #fff;
border-top: 1px solid #f0f0f0;
}
}
+1 -1
View File
@@ -173,7 +173,7 @@ export default defineComponent({
};
return () => (
<Layout class={styles.container}>
<Layout class={styles.basicLayoutMain}>
<Sider style={siderStyle} collapsed={collapsed.value} trigger={null} collapsible>
<div class={styles.logo}>
<span class={styles.logoText}>{collapsed.value ? '6羽' : '六羽赛事运营平台'}</span>
+2 -4
View File
@@ -1,7 +1,4 @@
.container {
// 容器
}
.aboutMain {
.title {
margin-top: 0;
margin-bottom: 24px;
@@ -18,3 +15,4 @@
padding-left: 20px;
line-height: 2;
}
}
+1 -1
View File
@@ -23,7 +23,7 @@ export default defineComponent({
];
return () => (
<div class={styles.container}>
<div class={styles.aboutMain}>
<h2 class={styles.title}></h2>
<Card>
<p>CPMS PC </p>
+2 -4
View File
@@ -1,7 +1,4 @@
.container {
// 容器
}
.dashboardMain {
.title {
margin-top: 0;
margin-bottom: 24px;
@@ -25,3 +22,4 @@
font-size: 13px;
}
}
}
+1 -1
View File
@@ -23,7 +23,7 @@ export default defineComponent({
];
return () => (
<div class={styles.container}>
<div class={styles.dashboardMain}>
<h2 class={styles.title}></h2>
<Row gutter={[16, 16]}>
@@ -1,3 +1,4 @@
.bannerFormModalMain {
.form {
:global {
.ant-form-item {
@@ -9,7 +10,6 @@
}
}
/* ===== 上传 ===== */
.uploader {
position: relative;
}
@@ -56,7 +56,6 @@
line-height: 1.6;
}
/* ===== 预览 ===== */
.previewWrapper {
position: relative;
width: 100%;
@@ -101,7 +100,6 @@
}
}
/* ===== 提示 ===== */
.tip {
padding: 8px 12px;
margin-bottom: 16px;
@@ -112,7 +110,6 @@
font-size: 13px;
}
/* ===== 时间行(双列)===== */
.timeRow {
display: flex;
gap: 16px;
@@ -122,7 +119,6 @@
}
}
/* ===== 底部按钮 ===== */
.footer {
display: flex;
justify-content: flex-end;
@@ -131,3 +127,4 @@
border-top: 1px solid #f0f0f0;
margin-top: 8px;
}
}
@@ -266,6 +266,7 @@ export default defineComponent({
destroyOnClose
footer={null}
centered
wrapClassName={styles.bannerFormModalMain}
>
<Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark>
{/* ===== Banner 标题 ===== */}
@@ -1,3 +1,9 @@
.eventBannerMain {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
.tableBody {
flex: 1;
min-height: 0;
@@ -12,3 +18,4 @@
}
}
}
}
+3 -1
View File
@@ -15,7 +15,7 @@ import { useBannerModel, BANNER_STATUS_OPTIONS } from './model/useBannerModel';
import { useContainerSize } from '@/hooks';
import BannerFormModal from './components/BannerFormModal';
import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less';
import pageStyles from '@/assets/styles/pageLayout.module.less';
/**
* bodyCell 渲染函数
@@ -231,6 +231,7 @@ export default defineComponent({
{/* ===== 表格区 ===== */}
<div class={pageStyles.table}>
<div class={styles.eventBannerMain}>
<div ref={containerRef} class={styles.tableBody}>
<Table
columns={tableColumns}
@@ -266,6 +267,7 @@ export default defineComponent({
/>
</div>
</div>
</div>
{/* ===== 新增/编辑弹窗 ===== */}
{modalVisible.value && (
@@ -1,10 +1,11 @@
.eventAuditModalMain {
.section {
margin-bottom: 24px;
}
.section:last-child {
&:last-child {
margin-bottom: 0;
}
}
.sectionTitle {
font-size: 14px;
@@ -15,12 +16,13 @@
border-left: 3px solid #1677ff;
}
.desc :global(.ant-descriptions-item-label) {
.desc {
:global(.ant-descriptions-item-label) {
width: 110px;
color: rgba(0, 0, 0, 0.65);
}
}
// ── 审核操作区域 ──
.auditSection {
margin-top: 24px;
}
@@ -40,7 +42,6 @@
}
.auditForm {
// 横线分隔标题与表单
border-top: 1px solid #f0f0f0;
padding-top: 16px;
}
@@ -48,12 +49,13 @@
.auditField {
margin-bottom: 16px;
&:last-child {
margin-bottom: 0;
}
: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="取消"
centered
destroyOnClose
wrapClassName={styles.eventAuditModalMain}
>
{/* ===== 基础信息 ===== */}
<div class={styles.section}>
@@ -1,10 +1,11 @@
.eventDetailModalMain {
.section {
margin-bottom: 24px;
}
.section:last-child {
&:last-child {
margin-bottom: 0;
}
}
.sectionTitle {
font-size: 14px;
@@ -26,20 +27,20 @@
border: 1px solid #f0f0f0;
}
// Descriptions 列宽稍微压缩一些,避免单标签被挤
.desc :global(.ant-descriptions-item-label) {
.desc {
:global(.ant-descriptions-item-label) {
width: 110px;
color: rgba(0, 0, 0, 0.65);
}
// 组别信息下的子表格
.group {
margin-bottom: 16px;
}
.group:last-child {
.group {
margin-bottom: 16px;
&:last-child {
margin-bottom: 0;
}
}
.groupTitle {
font-size: 13px;
@@ -54,7 +55,6 @@
margin-top: 8px;
}
// 分组信息列表
.divisionList {
display: flex;
flex-direction: column;
@@ -65,3 +65,4 @@
font-size: 13px;
color: rgba(0, 0, 0, 0.65);
}
}
@@ -110,6 +110,7 @@ export default defineComponent({
footer={null}
centered
destroyOnClose
wrapClassName={styles.eventDetailModalMain}
>
{/* ===== 基础信息 ===== */}
<div class={styles.section}>
@@ -1,10 +1,11 @@
.eventRegulationModalMain {
.section {
margin-bottom: 20px;
}
.section:last-child {
&:last-child {
margin-bottom: 0;
}
}
.sectionTitle {
font-size: 14px;
@@ -42,10 +43,11 @@
display: flex;
align-items: center;
justify-content: center;
}
.imageCell :global(.ant-image) {
:global(.ant-image) {
width: 100%;
height: 100%;
object-fit: cover;
}
}
}
@@ -40,6 +40,7 @@ export default defineComponent({
footer={null}
centered
destroyOnClose
wrapClassName={styles.eventRegulationModalMain}
>
{/* 规程文字 */}
<div class={styles.section}>
+7 -4
View File
@@ -1,7 +1,9 @@
/**
* 表格 body 容器:占满 flex 剩余空间,并确保 antd 嵌套 div 逐层传递 height: 100%
* 使得 Table scroll.y = 'calc(100% - 55px)' 中的 100% 能正确解析。
*/
.eventListMain {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
.tableBody {
flex: 1;
min-height: 0;
@@ -16,3 +18,4 @@
}
}
}
}
+3 -1
View File
@@ -26,7 +26,7 @@ import EventRegulationModal from './components/EventRegulationModal';
import EventDetailModal from './components/EventDetailModal';
import EventAuditModal from './components/EventAuditModal';
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;
@@ -309,6 +309,7 @@ export default defineComponent({
{/* ===== 表格区 ===== */}
<div class={pageStyles.table}>
<div class={styles.eventListMain}>
<div ref={containerRef} class={styles.tableBody}>
<Table
columns={tableColumns}
@@ -342,6 +343,7 @@ export default defineComponent({
/>
</div>
</div>
</div>
{/* ===== 弹窗区 ===== */}
{regulationModalVisible.value && (
@@ -1,4 +1,4 @@
// ===== 自定义标题栏 =====
.orderDetailModalMain {
.modalHeader {
display: flex;
justify-content: space-between;
@@ -32,12 +32,10 @@
}
}
// ===== 内容区 =====
.modalBody {
padding-top: 0;
}
// ===== 订单信息 grid =====
.infoGrid {
display: grid;
grid-template-columns: repeat(3, 1fr);
@@ -60,14 +58,13 @@
flex-shrink: 0;
}
// ===== 通用 section =====
.section {
margin-bottom: 24px;
}
.section:last-child {
&:last-child {
margin-bottom: 0;
}
}
.sectionTitle {
font-size: 14px;
@@ -78,7 +75,6 @@
border-left: 3px solid #1677ff;
}
// ===== 退款记录 =====
.refundHeader {
margin-bottom: 12px;
}
@@ -91,13 +87,11 @@
margin-bottom: 12px;
}
/** 固定高度 + 滚动 */
.refundList {
max-height: 320px;
overflow-y: auto;
padding-right: 4px;
// 自定义滚动条样式
&::-webkit-scrollbar {
width: 6px;
}
@@ -116,11 +110,11 @@
background: #fafafa;
border: 1px solid #f0f0f0;
border-radius: 6px;
}
.refundCard:last-child {
&:last-child {
margin-bottom: 0;
}
}
.refundCardHeader {
display: flex;
@@ -171,14 +165,12 @@
border: 1px dashed #e0e0e0;
}
// 分页:右下角
.refundPagination {
display: flex;
justify-content: flex-end;
margin-top: 12px;
}
// ===== 底部按钮区 =====
.modalFooter {
display: flex;
justify-content: flex-end;
@@ -187,8 +179,8 @@
margin-top: 8px;
border-top: 1px solid #f0f0f0;
}
}
// ===== Modal 外层包裹:去除 antd 默认内边距,让自定义标题贴合 =====
.orderModalWrap {
:global(.ant-modal-body) {
padding-top: 16px;
@@ -128,6 +128,7 @@ export default defineComponent({
closable={false}
wrapClassName={styles.orderModalWrap}
>
<div class={styles.orderDetailModalMain}>
{/* ===== 自定义标题栏 ===== */}
<div class={styles.modalHeader}>
<span class={styles.modalTitle}></span>
@@ -264,6 +265,7 @@ export default defineComponent({
</Button>
)}
</div>
</div>
</Modal>
);
},
+19 -16
View File
@@ -1,21 +1,8 @@
/**
* 表格 body 容器:占满 flex 剩余空间,并确保 antd 嵌套 div 逐层传递 height: 100%
* 使得 Table scroll.y = 'calc(100% - 55px)' 中的 100% 能正确解析。
*/
.tableBody {
.eventOrdersMain {
flex: 1;
min-height: 0;
overflow: hidden;
:global {
.ant-spin-nested-loading,
.ant-spin-container,
.ant-table,
.ant-table-container {
height: 100%;
}
}
}
display: flex;
flex-direction: column;
.summaryBar {
flex-shrink: 0;
@@ -35,3 +22,19 @@
}
}
}
.tableBody {
flex: 1;
min-height: 0;
overflow: hidden;
:global {
.ant-spin-nested-loading,
.ant-spin-container,
.ant-table,
.ant-table-container {
height: 100%;
}
}
}
}
+3 -1
View File
@@ -15,7 +15,7 @@ import { useOrderModel, ORDER_STATUS_OPTIONS, REFUND_STATUS_OPTIONS } from './mo
import { useContainerSize, useState } from '@/hooks';
import OrderDetailModal from './components/OrderDetailModal';
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;
@@ -203,6 +203,7 @@ export default defineComponent({
{/* ===== 表格区 ===== */}
<div class={pageStyles.table}>
<div class={styles.eventOrdersMain}>
{/* 金额汇总 */}
<div class={styles.summaryBar}>
<span class={styles.summaryItem}>
@@ -251,6 +252,7 @@ export default defineComponent({
/>
</div>
</div>
</div>
{/* ===== 详情弹窗 ===== */}
{detailVisible.value && (
+7 -4
View File
@@ -1,7 +1,9 @@
/**
* 表格 body 容器:占满 flex 剩余空间,并确保 antd 嵌套 div 逐层传递 height: 100%
* 使得 Table scroll.y = 'calc(100% - 55px)' 中的 100% 能正确解析。
*/
.eventUsersMain {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
.tableBody {
flex: 1;
min-height: 0;
@@ -16,3 +18,4 @@
}
}
}
}
+3 -1
View File
@@ -13,7 +13,7 @@ import {
import { useUserModel, USER_STATUS_OPTIONS } from './model/useUserModel';
import { useContainerSize } from '@/hooks';
import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less';
import pageStyles from '@/assets/styles/pageLayout.module.less';
/**
* bodyCell 渲染函数
@@ -145,6 +145,7 @@ export default defineComponent({
{/* ===== 表格区 ===== */}
<div class={pageStyles.table}>
<div class={styles.eventUsersMain}>
<div ref={containerRef} class={styles.tableBody}>
<Table
columns={tableColumns}
@@ -177,6 +178,7 @@ export default defineComponent({
</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 () => (
<div class={styles.container}>
<div class={styles.loginMain}>
<div class={styles.brand}>
<div class={styles.orb1} />
<div class={styles.orb2} />
@@ -1,3 +1,12 @@
.roleFormModalMain {
.modal {
:global {
.ant-modal-body {
padding: 16px 24px 0;
}
}
}
.form {
:global {
.ant-form-item {
@@ -23,11 +32,4 @@
border-top: 1px solid #f0f0f0;
margin-top: 8px;
}
.modal {
:global {
.ant-modal-body {
padding: 16px 24px 0;
}
}
}
@@ -100,6 +100,7 @@ export default defineComponent({
destroyOnClose
footer={null}
centered
wrapClassName={styles.roleFormModalMain}
class={styles.modal}
>
<Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark>
@@ -1,3 +1,4 @@
.userListModalMain {
.filter {
margin-bottom: 16px;
}
@@ -21,3 +22,4 @@
justify-content: flex-end;
margin-top: 12px;
}
}
@@ -78,6 +78,7 @@ export default defineComponent({
footer={null}
centered
destroyOnClose
wrapClassName={styles.userListModalMain}
>
{/* 筛选 */}
<div class={styles.filter}>
+7 -5
View File
@@ -1,6 +1,9 @@
/**
* 表格 body 容器:占满 flex 剩余空间
*/
.systemRolesMain {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
.tableBody {
flex: 1;
min-height: 0;
@@ -16,12 +19,10 @@
}
}
/* 用户数链接 */
.userCountLink {
font-variant-numeric: tabular-nums;
}
/* ===== 删除确认弹窗 ===== */
.confirmContent {
padding: 4px 24px;
font-size: 14px;
@@ -39,6 +40,7 @@
color: rgba(0, 0, 0, 0.45);
line-height: 1.5;
}
}
:global(.deleteConfirmModal) {
.ant-modal-confirm-body {
+5 -1
View File
@@ -6,7 +6,7 @@ import { useContainerSize } from '@/hooks';
import RoleFormModal from './components/RoleFormModal';
import UserListModal from './components/UserListModal';
import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less';
import pageStyles from '@/assets/styles/pageLayout.module.less';
/**
* bodyCell 渲染
@@ -57,6 +57,7 @@ function confirmDelete({ record, onOk }: { record: any; onOk: (record: any) => v
icon: null,
class: styles.deleteConfirmModal,
content: (
<div class={styles.systemRolesMain}>
<div class={styles.confirmContent}>
<div>
<span></span>
@@ -65,6 +66,7 @@ function confirmDelete({ record, onOk }: { record: any; onOk: (record: any) => v
</div>
<div class={styles.confirmTip}></div>
</div>
</div>
),
okText: '确认',
cancelText: '取消',
@@ -148,6 +150,7 @@ export default defineComponent({
{/* ===== 表格区 ===== */}
<div class={pageStyles.table}>
<div class={styles.systemRolesMain}>
<div ref={containerRef} class={styles.tableBody}>
<Table
columns={tableColumns}
@@ -181,6 +184,7 @@ export default defineComponent({
/>
</div>
</div>
</div>
{/* ===== 角色表单弹窗 ===== */}
{formVisible.value && (
@@ -1,4 +1,4 @@
/* ===== 表单行/列布局 ===== */
.userFormModalMain {
.row {
display: flex;
gap: 16px;
@@ -10,7 +10,6 @@
min-width: 0;
}
/* 让 antd Form.Item 在 col 里能正确控制宽度 */
.form {
:global {
.ant-form-item {
@@ -20,7 +19,6 @@
}
}
/* ===== 密码区重置链接 ===== */
.resetLink {
font-size: 14px;
color: #1677ff;
@@ -32,7 +30,6 @@
}
}
/* ===== 取消重置行 ===== */
.cancelRow {
display: flex;
justify-content: flex-end;
@@ -41,7 +38,6 @@
font-size: 12px;
}
/* ===== 底部按钮 ===== */
.footer {
display: flex;
justify-content: flex-end;
@@ -50,3 +46,4 @@
border-top: 1px solid #f0f0f0;
margin-top: 8px;
}
}
@@ -121,6 +121,7 @@ export default defineComponent({
destroyOnClose
footer={null}
centered
wrapClassName={styles.userFormModalMain}
>
<Form ref={formRef} layout="vertical" model={formData} class={styles.form} requiredMark>
{/* 姓名 / 手机号:同一行 */}
+7 -9
View File
@@ -1,8 +1,9 @@
/**
* 表格 body 容器:占满 flex 剩余空间,
* 确保 antd 嵌套 div 逐层传递 height: 100%
* 使得 Table scroll.y 能正确解析。
*/
.systemUsersMain {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
.tableBody {
flex: 1;
min-height: 0;
@@ -18,9 +19,6 @@
}
}
/* ===== 禁用/启用 二次确认弹窗 ===== */
/* 内容块:左右加 padding,按用户要求 */
.confirmContent {
display: flex;
align-items: center;
@@ -34,8 +32,8 @@
font-weight: 600;
}
}
}
/* antd Modal.confirm 默认 body 已经有 padding,这里额外覆盖一下确保一致 */
:global(.toggleConfirmModal) {
.ant-modal-confirm-body {
padding: 24px !important;
+5 -1
View File
@@ -4,7 +4,7 @@ import { useUserModel, USER_ROLE_OPTIONS, USER_STATUS_OPTIONS } from './model/us
import { useContainerSize } from '@/hooks';
import UserFormModal from './components/UserFormModal';
import styles from './index.module.less';
import pageStyles from '@/components/page/pageLayout.module.less';
import pageStyles from '@/assets/styles/pageLayout.module.less';
/**
* bodyCell 渲染函数
@@ -54,11 +54,13 @@ function confirmToggleStatus({ record, onOk }: { record: any; onOk: (record: any
title: `确认${actionText}`,
class: styles.toggleConfirmModal,
content: (
<div class={styles.systemUsersMain}>
<div class={styles.confirmContent}>
<span>{actionText}</span>
<strong>{record.realName}</strong>
<span></span>
</div>
</div>
),
okText: '确认',
cancelText: '取消',
@@ -164,6 +166,7 @@ export default defineComponent({
{/* ===== 表格区 ===== */}
<div class={pageStyles.table}>
<div class={styles.systemUsersMain}>
<div ref={containerRef} class={styles.tableBody}>
<Table
columns={tableColumns}
@@ -196,6 +199,7 @@ export default defineComponent({
/>
</div>
</div>
</div>
{/* ===== 新增/编辑弹窗 ===== */}
{modalVisible.value && (