feat(network_status):停机/正常
Some checks failed
构建并部署前端到测试环境 / build-and-deploy (push) Failing after 22s

This commit is contained in:
sexygoat
2026-04-01 11:10:13 +08:00
parent afeb1e7c89
commit 411206e039
3 changed files with 6 additions and 6 deletions

View File

@@ -751,7 +751,7 @@
width: 100,
formatter: (row: StandaloneIotCard) => {
const type = row.network_status === 1 ? 'success' : 'danger'
const text = row.network_status === 1 ? '开机' : '停机'
const text = row.network_status === 1 ? '正常' : '停机'
return h(ElTag, { type }, () => text)
}
},