|
@@ -3,14 +3,14 @@
|
|
|
<TopBar title="" gradient>
|
|
<TopBar title="" gradient>
|
|
|
<template #left>
|
|
<template #left>
|
|
|
<view class="flex items-center">
|
|
<view class="flex items-center">
|
|
|
- <view class="w-12 h-12 bg-white/20 rounded-2xl flex items-center justify-center mr-3">
|
|
|
|
|
|
|
+ <view class="w-12 h-12 rounded-2xl flex items-center justify-center mr-3" style="background-color: rgba(255, 255, 255, 0.2);">
|
|
|
<text class="uni-icons uniui-person-filled text-white text-xl"></text>
|
|
<text class="uni-icons uniui-person-filled text-white text-xl"></text>
|
|
|
</view>
|
|
</view>
|
|
|
<view>
|
|
<view>
|
|
|
- <text class="text-white/80 text-xs block">调度中心</text>
|
|
|
|
|
|
|
+ <text class="text-white text-xs block" style="opacity: 0.8;">调度中心</text>
|
|
|
<text class="text-white text-lg font-bold">控制台</text>
|
|
<text class="text-white text-lg font-bold">控制台</text>
|
|
|
</view>
|
|
</view>
|
|
|
- <button class="ml-4 w-10 h-10 bg-white/20 rounded-full flex items-center justify-center relative" @click="goToNotification">
|
|
|
|
|
|
|
+ <button class="ml-4 w-10 h-10 rounded-full flex items-center justify-center relative" style="background-color: rgba(255, 255, 255, 0.2);" @click="goToNotification">
|
|
|
<text class="uni-icons uniui-notification-filled text-white text-lg"></text>
|
|
<text class="uni-icons uniui-notification-filled text-white text-lg"></text>
|
|
|
</button>
|
|
</button>
|
|
|
</view>
|
|
</view>
|
|
@@ -24,15 +24,15 @@
|
|
|
<view class="grid grid-cols-3 gap-3">
|
|
<view class="grid grid-cols-3 gap-3">
|
|
|
<view class="rounded-xl p-4 text-center text-white" style="background: linear-gradient(135deg, #3b82f6, #6366f1);" @click="goToTaskList">
|
|
<view class="rounded-xl p-4 text-center text-white" style="background: linear-gradient(135deg, #3b82f6, #6366f1);" @click="goToTaskList">
|
|
|
<text class="stat-number text-white block">{{ taskStore.total }}</text>
|
|
<text class="stat-number text-white block">{{ taskStore.total }}</text>
|
|
|
- <text class="text-white/80 mt-1 block text-xs">今日任务</text>
|
|
|
|
|
|
|
+ <text class="text-white mt-1 block text-xs" style="opacity: 0.8;">今日任务</text>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="rounded-xl p-4 text-center text-white" style="background: linear-gradient(135deg, #3b82f6, #6366f1);" @click="goToTaskList">
|
|
<view class="rounded-xl p-4 text-center text-white" style="background: linear-gradient(135deg, #3b82f6, #6366f1);" @click="goToTaskList">
|
|
|
<text class="stat-number text-white block">{{ taskStore.pendingCount }}</text>
|
|
<text class="stat-number text-white block">{{ taskStore.pendingCount }}</text>
|
|
|
- <text class="text-white/80 mt-1 block text-xs">待排班</text>
|
|
|
|
|
|
|
+ <text class="text-white mt-1 block text-xs" style="opacity: 0.8;">待排班</text>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="rounded-xl p-4 text-center text-white" style="background: linear-gradient(135deg, #3b82f6, #6366f1);" @click="goToEmergencyTeam">
|
|
<view class="rounded-xl p-4 text-center text-white" style="background: linear-gradient(135deg, #3b82f6, #6366f1);" @click="goToEmergencyTeam">
|
|
|
<text class="stat-number text-white block">{{ emergencyCount }}</text>
|
|
<text class="stat-number text-white block">{{ emergencyCount }}</text>
|
|
|
- <text class="text-white/80 mt-1 block text-xs">应急中</text>
|
|
|
|
|
|
|
+ <text class="text-white mt-1 block text-xs" style="opacity: 0.8;">应急中</text>
|
|
|
</view>
|
|
</view>
|
|
|
</view>
|
|
</view>
|
|
|
</uni-card>
|
|
</uni-card>
|