fix
This commit is contained in:
@@ -229,7 +229,7 @@ const ServicePage = () => {
|
||||
return (
|
||||
<div className="bg-gray-50 p-4 rounded-lg">
|
||||
{record.attributes.sections.map((section) => (
|
||||
<div key={section.key} className="mb-6 bg-white rounded-lg shadow-sm p-4">
|
||||
<div key={section.key} className="mb-6 rounded-lg shadow-sm p-4">
|
||||
<div className="flex items-center justify-between mb-3 border-b pb-2">
|
||||
<h3 className="text-lg font-medium text-gray-800">{section.sectionName}</h3>
|
||||
<Popconfirm
|
||||
@@ -586,7 +586,7 @@ const ServicePage = () => {
|
||||
pageSize: 10,
|
||||
showTotal: (total) => `共 ${total} 条`,
|
||||
}}
|
||||
className="bg-white rounded-lg"
|
||||
className="rounded-lg"
|
||||
/>
|
||||
|
||||
{/* 添加模板类型选择弹窗 */}
|
||||
|
||||
@@ -264,7 +264,7 @@ const Classify = ({activeType,typeList}) => {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="bg-white rounded-lg shadow-sm">
|
||||
<div className="rounded-lg shadow-sm">
|
||||
<Form form={form}>
|
||||
<Table
|
||||
scroll={{ x: true }}
|
||||
|
||||
@@ -41,7 +41,7 @@ const ResourceManagement = () => {
|
||||
activeKey={activeType}
|
||||
onChange={setActiveType}
|
||||
type="card"
|
||||
className="bg-white rounded-lg shadow-sm"
|
||||
className="rounded-lg shadow-sm"
|
||||
items={TEMPLATE_TYPES.map(type => ({
|
||||
key: type.key,
|
||||
label: (
|
||||
|
||||
@@ -223,7 +223,7 @@ const UnitManagement = ({ activeType, typeList }) => {
|
||||
|
||||
return (
|
||||
<div className="p-6 bg-gray-50">
|
||||
<div className="bg-white rounded-lg shadow-sm mb-6 p-4">
|
||||
<div className="rounded-lg shadow-sm mb-6 p-4">
|
||||
<div className="flex flex-col sm:flex-row justify-between items-start sm:items-center gap-4">
|
||||
<div className="flex items-center gap-2">
|
||||
<Button
|
||||
@@ -261,7 +261,7 @@ const UnitManagement = ({ activeType, typeList }) => {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="bg-white rounded-lg shadow-sm">
|
||||
<div className="rounded-lg shadow-sm">
|
||||
<Form form={form}>
|
||||
<Table
|
||||
scroll={{ x: true }}
|
||||
|
||||
Reference in New Issue
Block a user