This commit is contained in:
ljx
2025-09-11 17:45:10 +08:00
parent 9caa6f215c
commit bfbf55eb19
6 changed files with 5 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -25,7 +25,7 @@
class="weather-item"
:style="{ transform: `translateY(-${offsetY}px)`, transition: transition }"
>
<img :src="`../../../src/assets/images/${item.icon}.png`" alt="" />
<img :src="`@/assets/images/${item.icon}.png`" alt="" />
<div>{{ item.weather }}{{ item.tempMin }}°/{{ item.tempMax }}°</div>
<div>{{ item.week }}({{ item.date }})</div>
</div>

View File

@ -111,28 +111,28 @@ const indicators = ref([
name: '在建项目',
value: '28',
unit: '个',
iconPath: '/src/assets/images/beUnder.png'
iconPath: '/assets/demo/beUnder.png'
},
{
id: '2',
name: '合同总额',
value: '288.88',
unit: '亿元',
iconPath: '/src/assets/images/contract.png'
iconPath: '/assets/demo/contract.png'
},
{
id: '3',
name: '总容量',
value: '158.88',
unit: '个',
iconPath: '/src/assets/images/totalCapacity.png'
iconPath: '/assets/demo/totalCapacity.png'
},
{
id: '4',
name: '今日施工',
value: '18',
unit: '个',
iconPath: '/src/assets/images/todayConstruction.png'
iconPath: '/assets/demo/todayConstruction.png'
}
]);