Эх сурвалжийг харах

refactor(views): streamline input and drawer components in lss/index.vue

- Consolidated attributes in input components for improved readability and consistency.
- Enhanced layout of table and pagination components for better user experience.
- Simplified drawer component structures to maintain visual consistency across the application.
yb 3 өдөр өмнө
parent
commit
6955820c69

+ 3 - 3
src/views/lss/index.vue

@@ -735,9 +735,9 @@ async function handleViewCamera(row: CameraInfoDTO) {
 // 格式化品牌
 function formatBrand(brand: string | undefined): string {
   const brandMap: Record<string, string> = {
-    hikvision: 'HIKVISION',
-    dahua: 'DAHUA',
-    uniview: 'UNIVIEW',
+    hikvision: '海康威视',
+    dahua: '大华',
+    uniview: '宇视',
     other: '其他'
   }
   return brand ? brandMap[brand] || brand.toUpperCase() : '-'