This commit is contained in:
sjl
2026-01-20 14:33:06 +08:00
parent c0feeaee7b
commit 8b356c87a3
6 changed files with 13 additions and 8 deletions

View File

@@ -32,7 +32,7 @@
<el-card v-for="(item, index) in tableStore.table.data" :key="index">
<template #header>
<div style="cursor: pointer;" @click="queryline(item, false)">
<el-tag v-if="item.data < 60 && item.data >= 0"
<el-tag v-if="item.data < 60 && item.data >= 0 && item.data !== 3.14159"
style="color: #fff; background: #339966" size="small">
</el-tag>
@@ -56,7 +56,7 @@
<div class="card-item" v-for="(item1, index1) in item.children"
:key="index1" @click="queryline(item1, true)">
<el-tag v-if="item1.data < 60 && item1.data >= 0"
<el-tag v-if="item1.data < 60 && item1.data >= 0 && item1.data !== 3.14159"
style="color: #fff; background: #339966" size="small">
</el-tag>