fix(ui): 替换快捷入口图标组件
- 将快捷入口部分的图标从 BoltOutlined 替换为 ThunderboltOutlined - 更新了对应图标的导入声明以匹配新组件 - 保持界面视觉效果一致性和图标含义准确性 - 同步修改了 .workbuddy/expert-history.json 中的更新时间戳
This commit is contained in:
Binary file not shown.
@@ -13,5 +13,5 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"lastUpdated": 1775667188805
|
||||
"lastUpdated": 1775669479401
|
||||
}
|
||||
@@ -196,7 +196,7 @@
|
||||
<!-- 快捷入口 -->
|
||||
<div class="bg-white rounded-2xl p-6 card-hover shadow-sm">
|
||||
<h3 class="font-bold text-lg text-gray-800 mb-4 flex items-center gap-2">
|
||||
<BoltOutlined class="text-yellow-500" />
|
||||
<ThunderboltOutlined class="text-yellow-500" />
|
||||
快捷入口
|
||||
</h3>
|
||||
<div class="grid grid-cols-2 gap-3">
|
||||
@@ -350,7 +350,7 @@ import {
|
||||
GlobalOutlined,
|
||||
ArrowUpOutlined,
|
||||
CheckSquareOutlined,
|
||||
BoltOutlined,
|
||||
ThunderboltOutlined,
|
||||
AppstoreOutlined,
|
||||
BarChartOutlined,
|
||||
SoundOutlined,
|
||||
@@ -359,7 +359,7 @@ import {
|
||||
LineChartOutlined,
|
||||
SearchOutlined,
|
||||
ShoppingOutlined,
|
||||
TruckOutlined,
|
||||
CarOutlined,
|
||||
CalendarOutlined,
|
||||
DollarOutlined,
|
||||
BoxPlotOutlined,
|
||||
@@ -392,7 +392,7 @@ const remainingDays = computed(() => {
|
||||
const shortcuts = [
|
||||
{ label: '设备巡检', icon: SearchOutlined, color: '#667eea' },
|
||||
{ label: '采购申请', icon: ShoppingOutlined, color: '#11998e' },
|
||||
{ label: '入库登记', icon: TruckOutlined, color: '#f5576c' },
|
||||
{ label: '入库登记', icon: CarOutlined, color: '#f5576c' },
|
||||
{ label: '请假申请', icon: CalendarOutlined, color: '#fc8181' },
|
||||
{ label: '费用报销', icon: DollarOutlined, color: '#f6ad55' },
|
||||
{ label: '库存查询', icon: BoxPlotOutlined, color: '#63b3ed' },
|
||||
|
||||
Reference in New Issue
Block a user