调整gif加载动画 替换为新的gif

This commit is contained in:
huangchenhao 2025-11-25 09:46:56 +08:00
parent 6f2259547e
commit 84f2ef4bdb
5 changed files with 17 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -24,7 +24,7 @@
<!-- 左列资源 --> <!-- 左列资源 -->
<div class="force-dispatch__left"> <div class="force-dispatch__left">
<div class="force-dispatch__stat"> <div class="force-dispatch__stat">
<span class="force-dispatch__stat-label">养护站</span> <span class="force-dispatch__stat-label_small">应急基地与预置点</span>
<span class="force-dispatch__stat-value"> <span class="force-dispatch__stat-value">
{{ dispatchSuggestion.stations }} {{ dispatchSuggestion.stations }}
<span class="force-dispatch__stat-unit"></span> <span class="force-dispatch__stat-unit"></span>
@ -60,7 +60,7 @@
<span class="force-dispatch__stat-label">应急物资</span> <span class="force-dispatch__stat-label">应急物资</span>
<span class="force-dispatch__stat-value"> <span class="force-dispatch__stat-value">
{{ dispatchSuggestion.supplies }} {{ dispatchSuggestion.supplies }}
<span class="force-dispatch__stat-unit"></span> <span class="force-dispatch__stat-unit"></span>
</span> </span>
</div> </div>
<div class="force-dispatch__stat"> <div class="force-dispatch__stat">
@ -84,7 +84,7 @@
<span class="force-dispatch__eta-value">{{ forceDispatch.estimatedClearTime || '2025/10/21 22:00' }}</span> <span class="force-dispatch__eta-value">{{ forceDispatch.estimatedClearTime || '2025/10/21 22:00' }}</span>
</div> </div>
<ActionButton <ActionButton
text="一键启动" text="响应调度"
type="primary" type="primary"
size="medium" size="medium"
@click="handleStartDispatch" @click="handleStartDispatch"
@ -261,6 +261,12 @@ const handleStartDispatch = () => {
color: var(--text-white); color: var(--text-white);
} }
.force-dispatch__stat-label_small {
font-size: fs(8);
font-family: SourceHanSansCN-Regular, sans-serif;
color: var(--text-white);
}
.force-dispatch__stat-value { .force-dispatch__stat-value {
font-size: fs(18); font-size: fs(18);
font-family: SourceHanSansCN-Bold, sans-serif; font-family: SourceHanSansCN-Bold, sans-serif;

View File

@ -43,7 +43,7 @@ export function useDisasterData() {
// 力量调度信息 // 力量调度信息
const forceDispatch = ref({ const forceDispatch = ref({
responseLevel: 3, // 三级 responseLevel: 3, // 三级
estimatedClearTime: '2025/10/21 22:00', estimatedClearTime: getCurrentDateTime('24:00'),
plan: { plan: {
name: '智能应急方案', name: '智能应急方案',
status: 'ready' status: 'ready'

View File

@ -224,7 +224,7 @@ export const MARKER_ICON_SIZE = {
*/ */
export const ANIMATION_CONFIG = { export const ANIMATION_CONFIG = {
duration: 60, // 动画时长(秒) duration: 60, // 动画时长(秒)
loadingDuration: 3000, // 加载动画时长(毫秒) loadingDuration: 500, // 加载动画时长(毫秒)
cameraFlyDuration: 5, // 相机飞行时长(秒) cameraFlyDuration: 5, // 相机飞行时长(秒)
cameraPadding: 0.2, // 相机视野边距20% cameraPadding: 0.2, // 相机视野边距20%
} }

View File

@ -150,10 +150,15 @@
<!-- 加载动画层 - 一键启动后显示 --> <!-- 加载动画层 - 一键启动后显示 -->
<div v-if="showLoading" class="situational-awareness__loading-layer"> <div v-if="showLoading" class="situational-awareness__loading-layer">
<img <img
src="./assets/images/加载.gif" src="./assets/images/加载2.gif"
alt="加载中" alt="加载中"
class="situational-awareness__loading-gif" class="situational-awareness__loading-gif"
/> />
<!-- <img
src="./assets/images/加载.gif"
alt="加载中"
class="situational-awareness__loading-gif"
/> -->
</div> </div>
</div> </div>