This commit is contained in:
ChuXun
2026-01-29 02:55:05 +08:00
parent 33fb5639c7
commit c856666f22
19 changed files with 197 additions and 53 deletions

View File

@@ -110,7 +110,7 @@ const fetchAllGrids = async () => {
gridData.value = Array.isArray(response) ? response : (response as any).content || [];
} catch (e: any) {
error.value = e.message || '获取网格数据时发生未知错误';
ElMessage.error(error.value);
ElMessage.error(error.value || '获取网格数据时发生未知错误');
} finally {
loading.value = false;
}
@@ -334,4 +334,4 @@ const selectGrid = (grid: DisplayGrid) => {
color: #303133;
margin-right: 8px;
}
</style>
</style>