feat: 事件立即执行

This commit is contained in:
橙子
2024-07-25 23:57:55 +08:00
parent e04edf4a4e
commit 54f125a2f5
3 changed files with 1 additions and 7 deletions

View File

@@ -39,10 +39,4 @@
</Content> </Content>
</ItemGroup> </ItemGroup>
<ItemGroup>
<None Update="ip2region.db">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project> </Project>

View File

@@ -146,7 +146,7 @@ const getHours=(timeString)=>{
} }
const currentRate=computed(()=>{ const currentRate=computed(()=>{
return (interestList.value.map(x=>x.value).slice(-1)[0])*100 return ((interestList.value.map(x=>x.value).slice(-1)[0])*100).toFixed(2);
}) })