style(audit): simplify asset list interactions

This commit is contained in:
caoxiaozhu
2026-05-11 06:33:46 +00:00
parent 83286712e5
commit 0b63be2d39
3 changed files with 12 additions and 10 deletions

View File

@@ -566,9 +566,8 @@
<th>{{ tableColumns.runtime }}</th>
<th>{{ tableColumns.version }}</th>
<th>状态</th>
<th>{{ tableColumns.metric }}</th>
<th v-if="showMetricColumn">{{ tableColumns.metric }}</th>
<th>最近更新</th>
<th>操作</th>
</tr>
</thead>
<tbody>
@@ -593,13 +592,8 @@
<td>{{ skill.model }}</td>
<td>{{ skill.version }}</td>
<td><span class="status-pill" :class="skill.statusTone">{{ skill.status }}</span></td>
<td>{{ skill.hitRate }}</td>
<td v-if="showMetricColumn">{{ skill.hitRate }}</td>
<td>{{ skill.updatedAt }}</td>
<td>
<button class="row-action" type="button" @click.stop="openAssetDetail(skill)">
查看详情
</button>
</td>
</tr>
</tbody>
</table>