@@ -246,7 +246,7 @@
-
+
{{ getDictLabel(dict.checkStatus, row.checkStatus) }}
@@ -897,6 +897,15 @@ const handleWatchDetail = async (row) => {
}
// endregion
+// region 自己排查相关
+const onHeaderDblClick = () => {
+ const rows = JSON.parse(JSON.stringify(toRaw(list.value || [])))
+ console.groupCollapsed(`[DEBUG] list 全量(${rows.length}条)`)
+ console.log('raw:', rows)
+ console.groupEnd()
+}
+// endregion
+
// region 导出相关
const handleExport = async () => {
let body = {
@@ -904,14 +913,10 @@ const handleExport = async () => {
}
await exportData(body);
}
+// endregion
-