黑暗模式fix
This commit is contained in:
@@ -202,13 +202,13 @@ export default function ChatAIDrawer({ open, onClose, onExport }) {
|
|||||||
placeholder="请输入您的问题..."
|
placeholder="请输入您的问题..."
|
||||||
onChange={handleInputChange}
|
onChange={handleInputChange}
|
||||||
disabled={isLoading}
|
disabled={isLoading}
|
||||||
className="flex-1 rounded-lg border-gray-300 hover:border-blue-400 focus:border-blue-600 focus:shadow-blue-100"
|
className="flex-1 rounded-md "
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
type="primary"
|
type="primary"
|
||||||
htmlType="submit"
|
htmlType="submit"
|
||||||
loading={isLoading}
|
loading={isLoading}
|
||||||
className="rounded-lg bg-blue-600 hover:bg-blue-700"
|
className="rounded-md"
|
||||||
>
|
>
|
||||||
发送
|
发送
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ const Sidebar = ({ collapsed }) => {
|
|||||||
theme={isDarkMode ? "dark" : "light"}
|
theme={isDarkMode ? "dark" : "light"}
|
||||||
width={256}
|
width={256}
|
||||||
collapsedWidth={80}
|
collapsedWidth={80}
|
||||||
className={`app-sidebar ${collapsed ? "collapsed" : ""}`}
|
className={`app-sidebar ${collapsed ? "collapsed" : ""} overflow-auto`}
|
||||||
>
|
>
|
||||||
<Logo collapsed={collapsed} isDarkMode={isDarkMode} />
|
<Logo collapsed={collapsed} isDarkMode={isDarkMode} />
|
||||||
<Menu
|
<Menu
|
||||||
@@ -54,7 +54,6 @@ const Sidebar = ({ collapsed }) => {
|
|||||||
defaultOpenKeys={defaultOpenKeys}
|
defaultOpenKeys={defaultOpenKeys}
|
||||||
items={menuClient}
|
items={menuClient}
|
||||||
onClick={handleMenuClick}
|
onClick={handleMenuClick}
|
||||||
style={{ overflow: 'auto' }}
|
|
||||||
/>
|
/>
|
||||||
</Sider>
|
</Sider>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -187,50 +187,44 @@ const SectionList = ({
|
|||||||
{availableSections.map((section) => (
|
{availableSections.map((section) => (
|
||||||
<div
|
<div
|
||||||
key={section.id}
|
key={section.id}
|
||||||
className="group relative bg-white rounded-lg shadow-sm border border-gray-200 hover:shadow-lg transition-all duration-300 cursor-pointer"
|
className="group relative bg-white dark:bg-gray-800 rounded-lg shadow-sm border border-gray-200 dark:border-gray-700 hover:shadow-lg transition-all duration-300 cursor-pointer"
|
||||||
onClick={() => handleUseTemplate(section, add)}
|
onClick={() => handleUseTemplate(section, add)}
|
||||||
>
|
>
|
||||||
<div className="p-6">
|
<div className="p-6">
|
||||||
<div className="text-center mb-4">
|
<div className="text-center mb-4">
|
||||||
<h3 className="text-lg font-medium group-hover:text-blue-500 transition-colors">
|
<h3 className="text-lg font-medium text-gray-900 dark:text-gray-100 group-hover:text-blue-500 transition-colors">
|
||||||
{section.attributes.name}
|
{section.attributes.name}
|
||||||
</h3>
|
</h3>
|
||||||
<div className="text-sm text-gray-500 mt-1">
|
<div className="text-sm text-gray-500 dark:text-gray-400 mt-1">
|
||||||
{section.attributes.items?.length || 0} 个项目
|
{section.attributes.items?.length || 0} 个项目
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="space-y-2 mt-4 border-t pt-4">
|
<div className="space-y-2 mt-4 border-t dark:border-gray-700 pt-4">
|
||||||
{(section.attributes.items || [])
|
{(section.attributes.items || []).slice(0, 3).map((item, index) => (
|
||||||
.slice(0, 3)
|
<div key={index} className="flex justify-between items-center">
|
||||||
.map((item, index) => (
|
<span className="text-sm text-gray-600 dark:text-gray-300 truncate flex-1">
|
||||||
<div
|
|
||||||
key={index}
|
|
||||||
className="flex justify-between items-center"
|
|
||||||
>
|
|
||||||
<span className="text-sm text-gray-600 truncate flex-1">
|
|
||||||
{item.name}
|
{item.name}
|
||||||
</span>
|
</span>
|
||||||
<span className="text-sm text-gray-500 ml-2">
|
<span className="text-sm text-gray-500 dark:text-gray-400 ml-2">
|
||||||
{formatExchangeRate(currentCurrency, item.price)}
|
{formatExchangeRate(currentCurrency, item.price)}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
{(section.attributes.items || []).length > 3 && (
|
{(section.attributes.items || []).length > 3 && (
|
||||||
<div className="text-sm text-gray-500 text-center">
|
<div className="text-sm text-gray-500 dark:text-gray-400 text-center">
|
||||||
还有 {section.attributes.items.length - 3} 个项目...
|
还有 {section.attributes.items.length - 3} 个项目...
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mt-4 pt-4 border-t flex justify-between items-center">
|
<div className="mt-4 pt-4 border-t dark:border-gray-700 flex justify-between items-center">
|
||||||
<span className="text-sm text-gray-600">总金额</span>
|
<span className="text-sm text-gray-600 dark:text-gray-300">总金额</span>
|
||||||
<span className="text-base font-medium text-blue-500">
|
<span className="text-base font-medium text-blue-500 dark:text-blue-400">
|
||||||
{formatExchangeRate(
|
{formatExchangeRate(
|
||||||
currentCurrency,
|
currentCurrency,
|
||||||
(section.attributes.items || []).reduce(
|
(section.attributes.items || []).reduce(
|
||||||
(sum, item) =>
|
(sum, item) => sum + (item.price * (item.quantity || 1) || 0),
|
||||||
sum + (item.price * (item.quantity || 1) || 0),
|
|
||||||
0
|
0
|
||||||
)
|
)
|
||||||
)}
|
)}
|
||||||
@@ -241,12 +235,12 @@ const SectionList = ({
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex justify-center">
|
<div className="flex justify-center mt-6">
|
||||||
<Button
|
<Button
|
||||||
type="primary"
|
type="primary"
|
||||||
icon={<PlusOutlined />}
|
icon={<PlusOutlined />}
|
||||||
onClick={() => handleCreateCustom(add, fieldsLength)}
|
onClick={() => handleCreateCustom(add, fieldsLength)}
|
||||||
className="bg-blue-600 hover:bg-blue-700 border-0 shadow-md hover:shadow-lg transition-all duration-200 h-10 px-6 rounded-lg flex items-center gap-2"
|
className="bg-blue-600 dark:bg-blue-500 hover:bg-blue-700 dark:hover:bg-blue-600 border-0 shadow-md hover:shadow-lg transition-all duration-200 h-10 px-6 rounded-lg flex items-center gap-2"
|
||||||
>
|
>
|
||||||
<span className="font-medium">自定义模块</span>
|
<span className="font-medium">自定义模块</span>
|
||||||
</Button>
|
</Button>
|
||||||
@@ -256,7 +250,7 @@ const SectionList = ({
|
|||||||
<div className="flex flex-col items-center justify-center py-16 px-4">
|
<div className="flex flex-col items-center justify-center py-16 px-4">
|
||||||
<div className="w-48 h-48 mb-8">
|
<div className="w-48 h-48 mb-8">
|
||||||
<svg
|
<svg
|
||||||
className="w-full h-full text-gray-200"
|
className="w-full h-full text-gray-200 dark:text-gray-700"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
fill="none"
|
fill="none"
|
||||||
viewBox="0 0 24 24"
|
viewBox="0 0 24 24"
|
||||||
@@ -270,10 +264,10 @@ const SectionList = ({
|
|||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
<h3 className="text-xl font-medium text-gray-900 mb-2">
|
<h3 className="text-xl font-medium text-gray-900 dark:text-gray-100 mb-2">
|
||||||
暂无可用模板
|
暂无可用模板
|
||||||
</h3>
|
</h3>
|
||||||
<p className="text-gray-500 text-center max-w-sm mb-8">
|
<p className="text-gray-500 dark:text-gray-400 text-center max-w-sm mb-8">
|
||||||
您可以选择创建一个自定义模块开始使用
|
您可以选择创建一个自定义模块开始使用
|
||||||
</p>
|
</p>
|
||||||
<Button
|
<Button
|
||||||
@@ -281,7 +275,7 @@ const SectionList = ({
|
|||||||
icon={<PlusOutlined />}
|
icon={<PlusOutlined />}
|
||||||
onClick={() => handleCreateCustom(add, fieldsLength)}
|
onClick={() => handleCreateCustom(add, fieldsLength)}
|
||||||
size="large"
|
size="large"
|
||||||
className="shadow-md hover:shadow-lg transition-shadow"
|
className="shadow-md hover:shadow-lg transition-shadow dark:bg-blue-500 dark:hover:bg-blue-600"
|
||||||
>
|
>
|
||||||
创建自定义模块
|
创建自定义模块
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -199,7 +199,7 @@ const SectionList = ({ form, isView, formValues, type }) => {
|
|||||||
{availableSections.map((section) => (
|
{availableSections.map((section) => (
|
||||||
<div
|
<div
|
||||||
key={section.id}
|
key={section.id}
|
||||||
className="group relative bg-white rounded-lg shadow-sm border border-gray-200 hover:shadow-lg transition-all duration-300 cursor-pointer"
|
className="group relative bg-white dark:bg-gray-800 rounded-lg shadow-sm border border-gray-200 dark:border-gray-700 hover:shadow-lg transition-all duration-300 cursor-pointer"
|
||||||
onClick={() => handleUseTemplate(section, add)}
|
onClick={() => handleUseTemplate(section, add)}
|
||||||
>
|
>
|
||||||
<div className="p-6">
|
<div className="p-6">
|
||||||
@@ -241,7 +241,7 @@ const SectionList = ({ form, isView, formValues, type }) => {
|
|||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex justify-center">
|
<div className="flex justify-center mt-6">
|
||||||
<Button
|
<Button
|
||||||
type="primary"
|
type="primary"
|
||||||
icon={<PlusOutlined />}
|
icon={<PlusOutlined />}
|
||||||
|
|||||||
@@ -215,20 +215,20 @@ export default function DifyChatDrawer({ open, onClose, onExport }) {
|
|||||||
<div ref={messagesEndRef} />
|
<div ref={messagesEndRef} />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="border-t dark:border-gray-700 bg-white dark:bg-gray-800 p-4">
|
<div className="border-t dark:border-gray-700 p-4">
|
||||||
<form onSubmit={handleSendMessage} className="flex gap-2">
|
<form onSubmit={handleSendMessage} className="flex gap-2">
|
||||||
<Input
|
<Input
|
||||||
value={input}
|
value={input}
|
||||||
placeholder="请输入您的问题..."
|
placeholder="请输入您的问题..."
|
||||||
onChange={(e) => setInput(e.target.value)}
|
onChange={(e) => setInput(e.target.value)}
|
||||||
disabled={isLoading}
|
disabled={isLoading}
|
||||||
className="flex-1 rounded-lg border-gray-300 dark:border-gray-600 hover:border-blue-400 dark:hover:border-blue-500 focus:border-blue-600 dark:focus:border-blue-500 focus:shadow-blue-100 dark:focus:shadow-blue-900 dark:bg-gray-700 dark:text-gray-200"
|
className="flex-1 rounded-md "
|
||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
type="primary"
|
type="primary"
|
||||||
htmlType="submit"
|
htmlType="submit"
|
||||||
loading={isLoading}
|
loading={isLoading}
|
||||||
className="rounded-lg bg-blue-600 hover:bg-blue-700 dark:bg-blue-700 dark:hover:bg-blue-800"
|
className="rounded-md "
|
||||||
>
|
>
|
||||||
发送
|
发送
|
||||||
</Button>
|
</Button>
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -256,7 +256,7 @@ export default function ProjectDetail() {
|
|||||||
}, [id, templateId]);
|
}, [id, templateId]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="bg-gradient-to-b from-gray-50 to-white dark:from-gray-800 dark:to-gray-900/90 min-h-screen p-2">
|
<div className="bg-gradient-to-b min-h-screen p-2">
|
||||||
<Card
|
<Card
|
||||||
className="shadow-lg rounded-lg border-0"
|
className="shadow-lg rounded-lg border-0"
|
||||||
title={
|
title={
|
||||||
|
|||||||
@@ -362,7 +362,7 @@ const QuotationForm = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="bg-gradient-to-b from-gray-50 to-white dark:from-gray-800 dark:to-gray-900/90 min-h-screen p-2">
|
<div className="bg-gradient-to-b min-h-screen p-2">
|
||||||
<Card
|
<Card
|
||||||
className="shadow-lg rounded-lg border-0"
|
className="shadow-lg rounded-lg border-0"
|
||||||
title={
|
title={
|
||||||
|
|||||||
@@ -405,7 +405,7 @@ useEffect(()=>{
|
|||||||
<Button
|
<Button
|
||||||
key="custom"
|
key="custom"
|
||||||
onClick={() => handleConfirm()}
|
onClick={() => handleConfirm()}
|
||||||
className=" gap-2 px-6 rounded-full hover:bg-gray-100"
|
className="gap-2 px-6 rounded-full hover:bg-gray-100 dark:hover:bg-gray-700 dark:text-gray-200"
|
||||||
>
|
>
|
||||||
<FileAddOutlined /> 自定义创建
|
<FileAddOutlined /> 自定义创建
|
||||||
</Button>,
|
</Button>,
|
||||||
@@ -414,7 +414,7 @@ useEffect(()=>{
|
|||||||
type="primary"
|
type="primary"
|
||||||
disabled={!selectedTemplateId}
|
disabled={!selectedTemplateId}
|
||||||
onClick={handleConfirm}
|
onClick={handleConfirm}
|
||||||
className="gap-2 px-6 rounded-full bg-blue-600 hover:bg-blue-700"
|
className="gap-2 px-6 rounded-full "
|
||||||
>
|
>
|
||||||
<AppstoreOutlined /> 使用选中模板
|
<AppstoreOutlined /> 使用选中模板
|
||||||
</Button>,
|
</Button>,
|
||||||
@@ -427,15 +427,15 @@ useEffect(()=>{
|
|||||||
<Spin size="large" />
|
<Spin size="large" />
|
||||||
</div>
|
</div>
|
||||||
) : templates.length === 0 ? (
|
) : templates.length === 0 ? (
|
||||||
<Empty description="暂无可用模板" />
|
<Empty description={<span className="dark:text-gray-400">暂无可用模板</span>} />
|
||||||
) : (
|
) : (
|
||||||
<div className="max-h-[600px] overflow-y-auto px-4 ">
|
<div className="max-h-[600px] overflow-y-auto px-4 ">
|
||||||
{getTemplatesByCategory().map((group, groupIndex) => (
|
{getTemplatesByCategory().map((group, groupIndex) => (
|
||||||
<div key={groupIndex} className="mb-10 last:mb-2">
|
<div key={groupIndex} className="mb-10 last:mb-2">
|
||||||
<div className="flex items-center gap-3 mb-6">
|
<div className="flex items-center gap-3 mb-6">
|
||||||
<h3 className="text-xl font-medium text-gray-900">
|
<h3 className="text-xl font-medium text-gray-900 dark:text-gray-100">
|
||||||
{group.name}
|
{group.name}
|
||||||
<span className="ml-2 text-sm text-gray-500">
|
<span className="ml-2 text-sm text-gray-500 dark:text-gray-400">
|
||||||
({group.templates.length})
|
({group.templates.length})
|
||||||
</span>
|
</span>
|
||||||
</h3>
|
</h3>
|
||||||
@@ -450,18 +450,18 @@ useEffect(()=>{
|
|||||||
relative p-6 rounded-xl cursor-pointer transition-all duration-200
|
relative p-6 rounded-xl cursor-pointer transition-all duration-200
|
||||||
${
|
${
|
||||||
selectedTemplateId === template.id
|
selectedTemplateId === template.id
|
||||||
? "ring-2 ring-blue-500 bg-blue-50/40"
|
? "ring-2 ring-blue-500 dark:ring-blue-400 bg-blue-50/40 dark:bg-blue-900/30"
|
||||||
: "hover:shadow-lg border border-gray-200 hover:border-blue-200"
|
: "hover:shadow-lg border border-gray-200 dark:border-gray-700 hover:border-blue-200 dark:hover:border-blue-700"
|
||||||
}
|
}
|
||||||
transform hover:-translate-y-1
|
transform hover:-translate-y-1 dark:bg-gray-800
|
||||||
`}
|
`}
|
||||||
>
|
>
|
||||||
<div className="flex justify-between items-start gap-3 mb-4">
|
<div className="flex justify-between items-start gap-3 mb-4">
|
||||||
<div className="flex-1 min-w-0">
|
<div className="flex-1 min-w-0">
|
||||||
<h4 className="text-lg font-medium text-gray-900 truncate">
|
<h4 className="text-lg font-medium text-gray-900 dark:text-gray-100 truncate">
|
||||||
{template.attributes.templateName}
|
{template.attributes.templateName}
|
||||||
</h4>
|
</h4>
|
||||||
<p className="text-sm text-gray-600 mt-2 line-clamp-2">
|
<p className="text-sm text-gray-600 dark:text-gray-400 mt-2 line-clamp-2">
|
||||||
{template.attributes.description || "暂无描述"}
|
{template.attributes.description || "暂无描述"}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@@ -475,16 +475,16 @@ useEffect(()=>{
|
|||||||
rounded-lg p-3 text-sm border
|
rounded-lg p-3 text-sm border
|
||||||
${
|
${
|
||||||
selectedTemplateId === template.id
|
selectedTemplateId === template.id
|
||||||
? "bg-white border-blue-200"
|
? "bg-white dark:bg-gray-700 border-blue-200 dark:border-blue-600"
|
||||||
: "bg-gray-50 border-gray-100"
|
: "bg-gray-50 dark:bg-gray-800 border-gray-100 dark:border-gray-700"
|
||||||
}
|
}
|
||||||
`}
|
`}
|
||||||
>
|
>
|
||||||
<div className="flex justify-between items-center">
|
<div className="flex justify-between items-center">
|
||||||
<span className="font-medium text-gray-700 truncate flex-1">
|
<span className="font-medium text-gray-700 dark:text-gray-200 truncate flex-1">
|
||||||
{section.sectionName}
|
{section.sectionName}
|
||||||
</span>
|
</span>
|
||||||
<span className="text-gray-500 ml-2 text-xs px-2 py-0.5 bg-gray-100 rounded-full">
|
<span className="text-gray-500 dark:text-gray-400 ml-2 text-xs px-2 py-0.5 bg-gray-100 dark:bg-gray-600 rounded-full">
|
||||||
{section.items.length}项
|
{section.items.length}项
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -494,7 +494,7 @@ useEffect(()=>{
|
|||||||
|
|
||||||
{selectedTemplateId === template.id && (
|
{selectedTemplateId === template.id && (
|
||||||
<div className="absolute top-4 right-4">
|
<div className="absolute top-4 right-4">
|
||||||
<div className="w-6 h-6 bg-blue-600 rounded-full flex items-center justify-center shadow-md">
|
<div className="w-6 h-6 bg-blue-600 dark:bg-blue-500 rounded-full flex items-center justify-center shadow-md">
|
||||||
<svg
|
<svg
|
||||||
className="w-4 h-4 text-white"
|
className="w-4 h-4 text-white"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ const ServiceForm = () => {
|
|||||||
return <div>无效的模板类型</div>;
|
return <div>无效的模板类型</div>;
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div className="bg-gradient-to-b from-gray-50 to-white dark:from-gray-800 dark:to-gray-900/90 min-h-screen p-2" >
|
<div className="bg-gradient-to-b min-h-screen p-2" >
|
||||||
<Card
|
<Card
|
||||||
className="shadow-lg rounded-lg border-0"
|
className="shadow-lg rounded-lg border-0"
|
||||||
title={
|
title={
|
||||||
|
|||||||
@@ -263,7 +263,6 @@ const ServicePage = () => {
|
|||||||
title: "名称",
|
title: "名称",
|
||||||
dataIndex: "name",
|
dataIndex: "name",
|
||||||
key: "name",
|
key: "name",
|
||||||
width: "15%",
|
|
||||||
render: (text, item, index) => {
|
render: (text, item, index) => {
|
||||||
const isEditing =
|
const isEditing =
|
||||||
editingKey === `${record.id}-${section.key}-${index}`;
|
editingKey === `${record.id}-${section.key}-${index}`;
|
||||||
@@ -286,7 +285,6 @@ const ServicePage = () => {
|
|||||||
title: "单位",
|
title: "单位",
|
||||||
dataIndex: "unit",
|
dataIndex: "unit",
|
||||||
key: "unit",
|
key: "unit",
|
||||||
width: "10%",
|
|
||||||
render: (text, item, index) => {
|
render: (text, item, index) => {
|
||||||
const isEditing =
|
const isEditing =
|
||||||
editingKey === `${record.id}-${section.key}-${index}`;
|
editingKey === `${record.id}-${section.key}-${index}`;
|
||||||
@@ -320,7 +318,6 @@ const ServicePage = () => {
|
|||||||
title: "单价",
|
title: "单价",
|
||||||
dataIndex: "price",
|
dataIndex: "price",
|
||||||
key: "price",
|
key: "price",
|
||||||
width: "10%",
|
|
||||||
render: (text, item, index) => {
|
render: (text, item, index) => {
|
||||||
const isEditing =
|
const isEditing =
|
||||||
editingKey === `${record.id}-${section.key}-${index}`;
|
editingKey === `${record.id}-${section.key}-${index}`;
|
||||||
@@ -343,7 +340,6 @@ const ServicePage = () => {
|
|||||||
title: "数量",
|
title: "数量",
|
||||||
dataIndex: "quantity",
|
dataIndex: "quantity",
|
||||||
key: "quantity",
|
key: "quantity",
|
||||||
width: "10%",
|
|
||||||
render: (text, item, index) => {
|
render: (text, item, index) => {
|
||||||
const isEditing =
|
const isEditing =
|
||||||
editingKey === `${record.id}-${section.key}-${index}`;
|
editingKey === `${record.id}-${section.key}-${index}`;
|
||||||
@@ -714,7 +710,6 @@ const ServicePage = () => {
|
|||||||
title: "模板名称",
|
title: "模板名称",
|
||||||
dataIndex: ["attributes", "templateName"],
|
dataIndex: ["attributes", "templateName"],
|
||||||
key: "templateName",
|
key: "templateName",
|
||||||
className: "min-w-[200px]",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "模板类型",
|
title: "模板类型",
|
||||||
@@ -766,6 +761,7 @@ const ServicePage = () => {
|
|||||||
title: "创建时间",
|
title: "创建时间",
|
||||||
dataIndex: "created_at",
|
dataIndex: "created_at",
|
||||||
key: "created_at",
|
key: "created_at",
|
||||||
|
width: 220,
|
||||||
render: (text) => new Date(text).toLocaleString(),
|
render: (text) => new Date(text).toLocaleString(),
|
||||||
sorter: (a, b) => new Date(a.created_at) - new Date(b.created_at),
|
sorter: (a, b) => new Date(a.created_at) - new Date(b.created_at),
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -264,7 +264,7 @@ export default function TaskForm() {
|
|||||||
}, [id, templateId]);
|
}, [id, templateId]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="bg-gradient-to-b from-gray-50 to-white dark:from-gray-800 dark:to-gray-900/90 min-h-screen p-2">
|
<div className="bg-gradient-to-b min-h-screen p-2">
|
||||||
<Card
|
<Card
|
||||||
className="shadow-lg rounded-lg border-0"
|
className="shadow-lg rounded-lg border-0"
|
||||||
title={
|
title={
|
||||||
|
|||||||
@@ -344,7 +344,7 @@ const TaskPage = () => {
|
|||||||
</Tag>
|
</Tag>
|
||||||
</Space>
|
</Space>
|
||||||
}
|
}
|
||||||
className="h-full w-full overflow-auto dark:bg-gray-800 dark:border-gray-700"
|
className="h-full w-full overflow-auto "
|
||||||
extra={
|
extra={
|
||||||
<Space>
|
<Space>
|
||||||
<Select
|
<Select
|
||||||
@@ -423,7 +423,7 @@ const TaskPage = () => {
|
|||||||
type="primary"
|
type="primary"
|
||||||
disabled={!selectedTemplateId}
|
disabled={!selectedTemplateId}
|
||||||
onClick={handleConfirm}
|
onClick={handleConfirm}
|
||||||
className="gap-2 px-6 rounded-full bg-blue-600 hover:bg-blue-700 dark:bg-blue-600 dark:hover:bg-blue-700"
|
className="gap-2 px-6 rounded-full "
|
||||||
>
|
>
|
||||||
<AppstoreOutlined /> 使用选中模板
|
<AppstoreOutlined /> 使用选中模板
|
||||||
</Button>,
|
</Button>,
|
||||||
|
|||||||
@@ -1,8 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Outlet } from 'react-router-dom';
|
|
||||||
|
|
||||||
const MarketingCampaign = () => {
|
|
||||||
return <Outlet />;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default MarketingCampaign;
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Card, DatePicker } from 'antd';
|
|
||||||
import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer } from 'recharts';
|
|
||||||
|
|
||||||
const CampaignPerformance = () => {
|
|
||||||
const data = [
|
|
||||||
{ name: '1月', 点击率: 400, 转化率: 240 },
|
|
||||||
{ name: '2月', 点击率: 300, 转化率: 139 },
|
|
||||||
{ name: '3月', 点击率: 200, 转化率: 980 },
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card title="活动成效分析">
|
|
||||||
<div className="mb-4">
|
|
||||||
<DatePicker.RangePicker />
|
|
||||||
</div>
|
|
||||||
<div style={{ width: '100%', height: 400 }}>
|
|
||||||
<ResponsiveContainer>
|
|
||||||
<LineChart data={data}>
|
|
||||||
<CartesianGrid strokeDasharray="3 3" />
|
|
||||||
<XAxis dataKey="name" />
|
|
||||||
<YAxis />
|
|
||||||
<Tooltip />
|
|
||||||
<Legend />
|
|
||||||
<Line type="monotone" dataKey="点击率" stroke="#8884d8" />
|
|
||||||
<Line type="monotone" dataKey="转化率" stroke="#82ca9d" />
|
|
||||||
</LineChart>
|
|
||||||
</ResponsiveContainer>
|
|
||||||
</div>
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default CampaignPerformance;
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Card, Table, Button, Tag } from 'antd';
|
|
||||||
import { PlusOutlined } from '@ant-design/icons';
|
|
||||||
|
|
||||||
const CampaignPlan = () => {
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
title: '计划名称',
|
|
||||||
dataIndex: 'name',
|
|
||||||
key: 'name',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '开始时间',
|
|
||||||
dataIndex: 'startTime',
|
|
||||||
key: 'startTime',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '结束时间',
|
|
||||||
dataIndex: 'endTime',
|
|
||||||
key: 'endTime',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '状态',
|
|
||||||
dataIndex: 'status',
|
|
||||||
key: 'status',
|
|
||||||
render: status => (
|
|
||||||
<Tag color={status === '进行中' ? 'green' : 'default'}>
|
|
||||||
{status}
|
|
||||||
</Tag>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card
|
|
||||||
title="活动计划"
|
|
||||||
extra={
|
|
||||||
<Button type="primary" icon={<PlusOutlined />}>
|
|
||||||
新增计划
|
|
||||||
</Button>
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Table columns={columns} dataSource={[]} rowKey="id" />
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default CampaignPlan;
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Form, Input, DatePicker, Select } from 'antd';
|
|
||||||
import { STATUS } from '@/constants/status';
|
|
||||||
|
|
||||||
export const ProjectForm = ({ form }) => (
|
|
||||||
<Form form={form} layout="vertical">
|
|
||||||
<Form.Item
|
|
||||||
name="name"
|
|
||||||
label="专案名称"
|
|
||||||
rules={[{ required: true, message: '请输入专案名称' }]}
|
|
||||||
>
|
|
||||||
<Input />
|
|
||||||
</Form.Item>
|
|
||||||
|
|
||||||
<Form.Item
|
|
||||||
name="manager"
|
|
||||||
label="负责人"
|
|
||||||
rules={[{ required: true, message: '请选择负责人' }]}
|
|
||||||
>
|
|
||||||
<Select placeholder="请选择负责人" />
|
|
||||||
</Form.Item>
|
|
||||||
|
|
||||||
<Form.Item
|
|
||||||
name="startDate"
|
|
||||||
label="开始日期"
|
|
||||||
rules={[{ required: true, message: '请选择开始日期' }]}
|
|
||||||
>
|
|
||||||
<DatePicker />
|
|
||||||
</Form.Item>
|
|
||||||
|
|
||||||
<Form.Item
|
|
||||||
name="status"
|
|
||||||
label="状态"
|
|
||||||
rules={[{ required: true, message: '请选择状态' }]}
|
|
||||||
>
|
|
||||||
<Select>
|
|
||||||
{Object.values(STATUS).map(status => (
|
|
||||||
<Select.Option key={status} value={status}>
|
|
||||||
{status}
|
|
||||||
</Select.Option>
|
|
||||||
))}
|
|
||||||
</Select>
|
|
||||||
</Form.Item>
|
|
||||||
</Form>
|
|
||||||
);
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
import React, { useState } from 'react';
|
|
||||||
import { Card, Modal, Form } from 'antd';
|
|
||||||
import { PageHeader } from '@/components/common/PageHeader';
|
|
||||||
import { BaseTable } from '@/components/common/BaseTable';
|
|
||||||
import { ProjectForm } from './components/ProjectForm';
|
|
||||||
import { useProjectData } from './hooks/useProjectData';
|
|
||||||
import { getStatusColumn, getDateColumn } from '@/utils/tableColumns';
|
|
||||||
|
|
||||||
const CampaignProject = () => {
|
|
||||||
const [form] = Form.useForm();
|
|
||||||
const [visible, setVisible] = useState(false);
|
|
||||||
const { loading, data, pagination, loadData } = useProjectData();
|
|
||||||
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
title: '专案名称',
|
|
||||||
dataIndex: 'name',
|
|
||||||
key: 'name',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '负责人',
|
|
||||||
dataIndex: 'manager',
|
|
||||||
key: 'manager',
|
|
||||||
},
|
|
||||||
getDateColumn('开始日期', 'startDate'),
|
|
||||||
getStatusColumn(),
|
|
||||||
];
|
|
||||||
|
|
||||||
const handleAdd = () => {
|
|
||||||
setVisible(true);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleSubmit = async () => {
|
|
||||||
try {
|
|
||||||
const values = await form.validateFields();
|
|
||||||
console.log('Success:', values);
|
|
||||||
setVisible(false);
|
|
||||||
form.resetFields();
|
|
||||||
loadData();
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Failed:', error);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card>
|
|
||||||
<PageHeader
|
|
||||||
title="行销活动专案"
|
|
||||||
onAdd={handleAdd}
|
|
||||||
addButtonText="新增专案"
|
|
||||||
/>
|
|
||||||
<BaseTable
|
|
||||||
columns={columns}
|
|
||||||
dataSource={data}
|
|
||||||
loading={loading}
|
|
||||||
pagination={pagination}
|
|
||||||
onChange={loadData}
|
|
||||||
/>
|
|
||||||
<Modal
|
|
||||||
title="新增专案"
|
|
||||||
open={visible}
|
|
||||||
onOk={handleSubmit}
|
|
||||||
onCancel={() => setVisible(false)}
|
|
||||||
>
|
|
||||||
<ProjectForm form={form} />
|
|
||||||
</Modal>
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default CampaignProject;
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Outlet } from 'react-router-dom';
|
|
||||||
|
|
||||||
const Communication = () => {
|
|
||||||
return <Outlet />;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default Communication;
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Card, Timeline, Button } from 'antd';
|
|
||||||
import { ClockCircleOutlined } from '@ant-design/icons';
|
|
||||||
|
|
||||||
const CommunicationJourney = () => {
|
|
||||||
return (
|
|
||||||
<Card
|
|
||||||
title="沟通历程"
|
|
||||||
extra={
|
|
||||||
<Button type="primary">导出记录</Button>
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Timeline
|
|
||||||
mode="alternate"
|
|
||||||
items={[
|
|
||||||
{
|
|
||||||
children: '创建营销活动 2023-10-25 10:00:00',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
children: '发送邮件通知 2023-10-25 10:30:00',
|
|
||||||
color: 'green',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
dot: <ClockCircleOutlined style={{ fontSize: '16px' }} />,
|
|
||||||
children: '客户查看邮件 2023-10-25 11:00:00',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
color: 'red',
|
|
||||||
children: '系统提醒跟进 2023-10-25 14:00:00',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
children: '完成跟进 2023-10-25 16:00:00',
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default CommunicationJourney;
|
|
||||||
@@ -1,48 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Card, Table, Button, Input } from 'antd';
|
|
||||||
import { PlusOutlined } from '@ant-design/icons';
|
|
||||||
|
|
||||||
const { Search } = Input;
|
|
||||||
|
|
||||||
const CommunicationList = () => {
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
title: '名单名称',
|
|
||||||
dataIndex: 'name',
|
|
||||||
key: 'name',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '联系人数量',
|
|
||||||
dataIndex: 'contactCount',
|
|
||||||
key: 'contactCount',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '创建日期',
|
|
||||||
dataIndex: 'createdAt',
|
|
||||||
key: 'createdAt',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '更新日期',
|
|
||||||
dataIndex: 'updatedAt',
|
|
||||||
key: 'updatedAt',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card
|
|
||||||
title="名单管理"
|
|
||||||
extra={
|
|
||||||
<Button type="primary" icon={<PlusOutlined />}>
|
|
||||||
新增名单
|
|
||||||
</Button>
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<div className="mb-4">
|
|
||||||
<Search placeholder="搜索名单" allowClear enterButton />
|
|
||||||
</div>
|
|
||||||
<Table columns={columns} dataSource={[]} rowKey="id" />
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default CommunicationList;
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Card, Tabs, Button } from 'antd';
|
|
||||||
import { SendOutlined } from '@ant-design/icons';
|
|
||||||
|
|
||||||
const CommunicationPreview = () => {
|
|
||||||
const items = [
|
|
||||||
{
|
|
||||||
key: '1',
|
|
||||||
label: '邮件预览',
|
|
||||||
children: (
|
|
||||||
<div className="p-4 border rounded">
|
|
||||||
<h2>邮件主题</h2>
|
|
||||||
<div className="mt-4">邮件内容预览区域</div>
|
|
||||||
</div>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
key: '2',
|
|
||||||
label: '短信预览',
|
|
||||||
children: (
|
|
||||||
<div className="p-4 border rounded">
|
|
||||||
<div className="mt-4">短信内容预览区域</div>
|
|
||||||
</div>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card
|
|
||||||
title="消息预览"
|
|
||||||
extra={
|
|
||||||
<Button type="primary" icon={<SendOutlined />}>
|
|
||||||
发送测试
|
|
||||||
</Button>
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Tabs items={items} />
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default CommunicationPreview;
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Outlet } from 'react-router-dom';
|
|
||||||
|
|
||||||
const MarketingCenter = () => {
|
|
||||||
return <Outlet />;
|
|
||||||
};
|
|
||||||
|
|
||||||
export default MarketingCenter;
|
|
||||||
@@ -1,43 +0,0 @@
|
|||||||
import React from 'react';
|
|
||||||
import { Card, Table, Button } from 'antd';
|
|
||||||
import { PlusOutlined } from '@ant-design/icons';
|
|
||||||
|
|
||||||
const TemplatePage = () => {
|
|
||||||
const columns = [
|
|
||||||
{
|
|
||||||
title: '模版名称',
|
|
||||||
dataIndex: 'name',
|
|
||||||
key: 'name',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '类型',
|
|
||||||
dataIndex: 'type',
|
|
||||||
key: 'type',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '创建日期',
|
|
||||||
dataIndex: 'createdAt',
|
|
||||||
key: 'createdAt',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '状态',
|
|
||||||
dataIndex: 'status',
|
|
||||||
key: 'status',
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Card
|
|
||||||
title="模版管理"
|
|
||||||
extra={
|
|
||||||
<Button type="primary" icon={<PlusOutlined />}>
|
|
||||||
新增模版
|
|
||||||
</Button>
|
|
||||||
}
|
|
||||||
>
|
|
||||||
<Table columns={columns} dataSource={[]} rowKey="id" />
|
|
||||||
</Card>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
export default TemplatePage;
|
|
||||||
@@ -366,17 +366,18 @@ export default function PermissionManagement() {
|
|||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
key: 'operation',
|
key: 'operation',
|
||||||
|
fixed: 'right',
|
||||||
render: (_, record) => (
|
render: (_, record) => (
|
||||||
<div className="space-x-2">
|
<div className="space-x-2">
|
||||||
<Button
|
<Button
|
||||||
type="text"
|
type="link"
|
||||||
icon={<EditOutlined />}
|
icon={<EditOutlined />}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
setModalType('edit');
|
setModalType('edit');
|
||||||
form.setFieldsValue(record);
|
form.setFieldsValue(record);
|
||||||
setModalVisible(true);
|
setModalVisible(true);
|
||||||
}}
|
}}
|
||||||
/>
|
>编辑</Button>
|
||||||
<Popconfirm
|
<Popconfirm
|
||||||
title="确认删除"
|
title="确认删除"
|
||||||
description="确定要删除这条权限记录吗?"
|
description="确定要删除这条权限记录吗?"
|
||||||
@@ -385,10 +386,10 @@ export default function PermissionManagement() {
|
|||||||
onConfirm={() => handleDelete(record.id)}
|
onConfirm={() => handleDelete(record.id)}
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
type="text"
|
type="link"
|
||||||
danger
|
danger
|
||||||
icon={<DeleteOutlined />}
|
icon={<DeleteOutlined />}
|
||||||
/>
|
>删除</Button>
|
||||||
</Popconfirm>
|
</Popconfirm>
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
@@ -522,7 +523,7 @@ export default function PermissionManagement() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<App>
|
<App>
|
||||||
<Card title="权限管理" bordered={false}>
|
<Card title="权限管理" >
|
||||||
<RoleHeader
|
<RoleHeader
|
||||||
onAdd={() => {
|
onAdd={() => {
|
||||||
setModalType('add');
|
setModalType('add');
|
||||||
@@ -538,12 +539,14 @@ export default function PermissionManagement() {
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<Table
|
<Table
|
||||||
|
scroll={{ x: true}}
|
||||||
columns={columns}
|
columns={columns}
|
||||||
dataSource={permissions}
|
dataSource={permissions}
|
||||||
rowKey="id"
|
rowKey="id"
|
||||||
loading={loading}
|
loading={loading}
|
||||||
pagination={pagination}
|
pagination={pagination}
|
||||||
onChange={handleTableChange}
|
onChange={handleTableChange}
|
||||||
|
className='w-full'
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Modal
|
<Modal
|
||||||
|
|||||||
@@ -106,6 +106,7 @@ export const TeamTable = ({ tableLoading,pagination,dataSource, onTableChange,on
|
|||||||
title: '操作',
|
title: '操作',
|
||||||
key: 'action',
|
key: 'action',
|
||||||
width: 180,
|
width: 180,
|
||||||
|
fixed: 'right',
|
||||||
render: (_, record) => {
|
render: (_, record) => {
|
||||||
const editable = isEditing(record);
|
const editable = isEditing(record);
|
||||||
return editable ? (
|
return editable ? (
|
||||||
|
|||||||
@@ -183,7 +183,7 @@ const TeamManagement = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<App>
|
<App>
|
||||||
<Card title="团队管理" bordered={false}>
|
<Card title="团队管理" >
|
||||||
<TeamHeader onSearch={handleSearch} onAdd={handleAdd} />
|
<TeamHeader onSearch={handleSearch} onAdd={handleAdd} />
|
||||||
<TeamTable
|
<TeamTable
|
||||||
loading={loading}
|
loading={loading}
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
|
// Light mode colors
|
||||||
--primary-color: #1677ff;
|
--primary-color: #1677ff;
|
||||||
--primary-gradient: linear-gradient(45deg, #1677ff, #36cff0);
|
--primary-gradient: linear-gradient(45deg, #1677ff, #36cff0);
|
||||||
--success-color: #52c41a;
|
--success-color: #52c41a;
|
||||||
@@ -12,6 +13,25 @@
|
|||||||
--error-color: #ff4d4f;
|
--error-color: #ff4d4f;
|
||||||
--font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
--font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
||||||
'Noto Sans', sans-serif;
|
'Noto Sans', sans-serif;
|
||||||
|
|
||||||
|
// Google-style scrollbar colors (Light mode)
|
||||||
|
--scrollbar-thumb: rgba(0, 0, 0, .2);
|
||||||
|
--scrollbar-thumb-hover: rgba(0, 0, 0, .4);
|
||||||
|
--scrollbar-track: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root.dark {
|
||||||
|
// Dark mode colors
|
||||||
|
--primary-color: #4f9eff; // 更亮的蓝色适配暗色模式
|
||||||
|
--primary-gradient: linear-gradient(45deg, #4f9eff, #60deff);
|
||||||
|
--success-color: #6ede3b;
|
||||||
|
--warning-color: #ffc53d;
|
||||||
|
--error-color: #ff7875;
|
||||||
|
|
||||||
|
// Google-style scrollbar colors (Dark mode)
|
||||||
|
--scrollbar-thumb: rgba(255, 255, 255, .2);
|
||||||
|
--scrollbar-thumb-hover: rgba(255, 255, 255, .4);
|
||||||
|
--scrollbar-track: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
@@ -152,42 +172,36 @@ body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 滚动条基础样式 */
|
/* 自定义滚动条样式 */
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 8px;
|
width: 8px;
|
||||||
/* 垂直滚动条宽度 */
|
|
||||||
height: 8px;
|
height: 8px;
|
||||||
/* 水平滚动条高度 */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 亮色模式滚动条样式 */
|
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
@apply bg-gray-100;
|
background: var(--scrollbar-track);
|
||||||
/* 轨道背景色 */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb {
|
::-webkit-scrollbar-thumb {
|
||||||
@apply bg-gray-300 rounded-full hover:bg-gray-400 transition-colors;
|
background-color: var(--scrollbar-thumb);
|
||||||
/* 滑块样式 */
|
border-radius: 4px;
|
||||||
|
transition: background-color 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 暗色模式滚动条样式 */
|
::-webkit-scrollbar-thumb:hover {
|
||||||
.dark {
|
background-color: var(--scrollbar-thumb-hover);
|
||||||
::-webkit-scrollbar-track {
|
|
||||||
@apply bg-gray-800;
|
|
||||||
/* 暗色模式轨道背景 */
|
|
||||||
}
|
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb {
|
|
||||||
@apply bg-gray-600 hover:bg-gray-500;
|
|
||||||
/* 暗色模式滑块样式 */
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Firefox 滚动条样式 */
|
/* Firefox 滚动条样式 */
|
||||||
* {
|
* {
|
||||||
scrollbar-width: thin;
|
scrollbar-width: thin;
|
||||||
scrollbar-color: theme('colors.gray.300') theme('colors.gray.100');
|
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
* {
|
||||||
|
scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark * {
|
.dark * {
|
||||||
|
|||||||
Reference in New Issue
Block a user