perf: 工作台页面优化

This commit is contained in:
rd
2025-07-01 17:28:18 +08:00
parent f4c95efa64
commit 9ad8e35305
6 changed files with 84 additions and 33 deletions

View File

@ -1,6 +1,12 @@
<template>
<Container title="企业信息" class="container mt-24px">
<a-table :columns="columns" :data="dataSource" :pagination="false" class="mt-16px">
<div class="bg-#fff rounded-8px border-1px border-#D7D7D9 border-solid w-100% py-0 px-20px mt-24px pb-24px">
<div class="title-row">
<span class="title">企业信息</span>
</div>
<a-table :columns="columns" :data="dataSource" :pagination="false" class="mt-8px h-540px">
<template #empty>
<NoData />
</template>
<template #info="{ record }">
{{ record.name }}
</template>
@ -27,7 +33,7 @@
</a-form>
</Modal>
<CustomerServiceModal v-model:visible="customerServiceVisible" />
</Container>
</div>
</template>
<script setup lang="ts">
import Container from '@/components/container.vue';
@ -155,4 +161,18 @@ async function handleOk() {
font-size: 12px;
color: rgba(109, 76, 254, 1);
}
.title-row {
display: flex;
height: 64px;
padding: 10px 0 2px 0;
align-items: center;
.title {
color: var(--Text-1, #211f24);
font-family: 'PuHuiTi-Medium';
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
}
}
</style>