fix: Resolve the issue of a function returning 0 as a result (#2389)

This commit is contained in:
wangdan-fit2cloud 2025-02-26 14:53:22 +08:00 committed by GitHub
parent 62ab02ec0e
commit c6a3024807
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,7 +84,7 @@
shadow="never"
style="max-height: 350px; overflow: scroll"
>
{{ result || '-' }}
{{ String(result) == '0' ? 0 : result || '-' }}
</el-card>
</div>
</div>