fix: Resolve the issue of a function returning 0 as a result (#2389)
This commit is contained in:
parent
62ab02ec0e
commit
c6a3024807
@ -84,7 +84,7 @@
|
|||||||
shadow="never"
|
shadow="never"
|
||||||
style="max-height: 350px; overflow: scroll"
|
style="max-height: 350px; overflow: scroll"
|
||||||
>
|
>
|
||||||
{{ result || '-' }}
|
{{ String(result) == '0' ? 0 : result || '-' }}
|
||||||
</el-card>
|
</el-card>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user