fix: Resolve the issue of a function returning 0 as a result (#2389)
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