feat: 更新

This commit is contained in:
GukSang.Jin
2026-02-27 17:29:15 +08:00
parent fe0aee16ad
commit f2c975b51d
4 changed files with 18 additions and 16 deletions

Binary file not shown.

BIN
PetWash.Api/petwash.db-shm Normal file

Binary file not shown.

BIN
PetWash.Api/petwash.db-wal Normal file

Binary file not shown.

View File

@@ -2102,9 +2102,9 @@
<Grid Visibility="{Binding IsCleaningDialogOpen, Converter={StaticResource BoolToVisibilityConverter}}" <Grid Visibility="{Binding IsCleaningDialogOpen, Converter={StaticResource BoolToVisibilityConverter}}"
Background="#CC000000"> Background="#CC000000">
<Border Background="White" <Border Background="White"
CornerRadius="30" CornerRadius="25"
MaxWidth="600" Width="520"
MaxHeight="400" Height="480"
Padding="0" Padding="0"
HorizontalAlignment="Center" HorizontalAlignment="Center"
VerticalAlignment="Center"> VerticalAlignment="Center">
@@ -2121,10 +2121,10 @@
<!-- 标题栏 --> <!-- 标题栏 -->
<Border Grid.Row="0" <Border Grid.Row="0"
Background="#4CAF50" Background="#4CAF50"
CornerRadius="30,30,0,0" CornerRadius="25,25,0,0"
Padding="40,25,40,25"> Padding="30,20,30,20">
<TextBlock Text="设备清理中" <TextBlock Text="设备清理中"
FontSize="32" FontSize="28"
FontWeight="Bold" FontWeight="Bold"
Foreground="White" Foreground="White"
HorizontalAlignment="Center" HorizontalAlignment="Center"
@@ -2133,12 +2133,12 @@
<!-- 内容区 --> <!-- 内容区 -->
<Border Grid.Row="1" <Border Grid.Row="1"
Padding="40,40,40,40" Padding="35,30,35,30"
Background="White" Background="White"
CornerRadius="0,0,30,30"> CornerRadius="0,0,25,25">
<StackPanel VerticalAlignment="Center"> <StackPanel VerticalAlignment="Center">
<!-- 动画图标 --> <!-- 动画图标 -->
<Viewbox Width="80" Height="80" Margin="0,0,0,30"> <Viewbox Width="70" Height="70" Margin="0,0,0,25">
<Canvas Width="100" Height="100"> <Canvas Width="100" Height="100">
<Ellipse Width="100" Height="100" <Ellipse Width="100" Height="100"
Stroke="#4CAF50" Stroke="#4CAF50"
@@ -2165,18 +2165,20 @@
<!-- 清理消息 --> <!-- 清理消息 -->
<TextBlock Text="{Binding CleaningMessage}" <TextBlock Text="{Binding CleaningMessage}"
FontSize="24" FontSize="22"
FontWeight="SemiBold" FontWeight="SemiBold"
Foreground="#333" Foreground="#333"
HorizontalAlignment="Center" HorizontalAlignment="Center"
TextAlignment="Center" TextAlignment="Center"
Margin="0,0,0,20"/> TextWrapping="Wrap"
MaxWidth="420"
Margin="0,0,0,25"/>
<!-- 进度条 --> <!-- 进度条 -->
<Border Background="#E0E0E0" <Border Background="#E0E0E0"
CornerRadius="10" CornerRadius="10"
Height="20" Height="18"
Margin="0,0,0,15"> Margin="0,0,0,12">
<Border Background="#4CAF50" <Border Background="#4CAF50"
CornerRadius="10" CornerRadius="10"
HorizontalAlignment="Left"> HorizontalAlignment="Left">
@@ -2193,9 +2195,10 @@
<TextBlock FontSize="20" <TextBlock FontSize="20"
FontWeight="Bold" FontWeight="Bold"
Foreground="#4CAF50" Foreground="#4CAF50"
HorizontalAlignment="Center"> HorizontalAlignment="Center"
Margin="0,0,0,25">
<Run Text="{Binding CleaningProgress, Mode=OneWay}"/> <Run Text="{Binding CleaningProgress, Mode=OneWay}"/>
<Run Text="%"/> <Run Text=" %"/>
</TextBlock> </TextBlock>
<!-- 提示文字 --> <!-- 提示文字 -->
@@ -2203,7 +2206,6 @@
FontSize="16" FontSize="16"
Foreground="#FF5722" Foreground="#FF5722"
HorizontalAlignment="Center" HorizontalAlignment="Center"
Margin="0,20,0,0"
FontWeight="SemiBold"/> FontWeight="SemiBold"/>
</StackPanel> </StackPanel>
</Border> </Border>