tangning 1 éve
szülő
commit
1080f4610c

+ 22 - 22
src/locales/lang/en/routes/device.ts

@@ -1,25 +1,25 @@
 export default {
-  snCode:'S/N',
-  wifiName:'Wifi',
-  deviceType:'Camera type',
-  activatedTime:'Time',
-  userName:'Bound account',
-  NoBind:'Unbind',
-  type:{
-    0:'4DKanKan Lite',
-    1:'4DKanKan',
-    2:'4DMinion',
-    3:'4DMega',
-    9:'4DMinion',
-    10:'4DMega',
+  snCode: 'S/N',
+  wifiName: 'Wifi',
+  deviceType: 'Camera type',
+  activatedTime: 'Time',
+  userName: 'Bound account',
+  NoBind: 'Unbind',
+  type: {
+    0: '4DKanKan Lite',
+    1: '4DKanKan',
+    2: '4DMinion',
+    3: '4DMega',
+    9: '4DMinion',
+    10: '4DMega',
+    11: '4DMeta',
   },
-  status:{
-    0:'Active',
-    1:'Expired',
-    2:'Bind',
-    3:'Unbind',
+  status: {
+    0: 'Active',
+    1: 'Expired',
+    2: 'Bind',
+    3: 'Unbind',
   },
-  bindStatus:'Binding status',
-  statusName:'Status'
-}
-
+  bindStatus: 'Binding status',
+  statusName: 'Status',
+};

+ 4 - 1
src/locales/lang/en/routes/scene.ts

@@ -2,8 +2,11 @@ export default {
   tableType: {
     0: '4DKanKan',
     1: '4DMinion',
-    2: '4DMega',
+    2: '4DMega Point Cloud',
     3: '4DKanKan Lite',
+    5: '4DMega Mesh',
+    6: '4DMeta Point Cloud',
+    7: '4DMeta Mesh',
   },
   transfer: 'transfer',
   copy: 'copy',

+ 22 - 21
src/locales/lang/zh-CN/routes/device.ts

@@ -1,24 +1,25 @@
 export default {
-  snCode:'SN码',
-  wifiName:'wifi名称',
-  deviceType:'设备类型',
-  activatedTime:'出库时间',
-  userName:'绑定账号',
-  NoBind:'未绑定',
-  type:{
-    0:'旧双目相机',
-    1:'四维看看',
-    2:'四维看见',
-    3:'四维深时',
-    9:'四维看见',
-    10:'四维深时',
+  snCode: 'SN码',
+  wifiName: 'wifi名称',
+  deviceType: '设备类型',
+  activatedTime: '出库时间',
+  userName: '绑定账号',
+  NoBind: '未绑定',
+  type: {
+    0: '旧双目相机',
+    1: '四维看看',
+    2: '四维看见',
+    3: '四维深时',
+    9: '四维看见',
+    10: '四维深时',
+    11: '四维深光',
   },
-  status:{
-    0:'生效中',
-    1:'已过期',
-    2:'已绑定',
-    3:'未绑定',
+  status: {
+    0: '生效中',
+    1: '已过期',
+    2: '已绑定',
+    3: '未绑定',
   },
-  bindStatus:'绑定状态',
-  statusName:'权益状态'
-}
+  bindStatus: '绑定状态',
+  statusName: '权益状态',
+};

+ 4 - 1
src/locales/lang/zh-CN/routes/scene.ts

@@ -2,8 +2,11 @@ export default {
   tableType: {
     0: '四维看看',
     1: '四维看见',
-    2: '四维深时',
+    2: '深时点云场景',
     3: '四维双目Lite',
+    5: '深时Mesh场景',
+    6: '深光点云场景',
+    7: '深光Mesh场景',
   },
   transfer: '迁移',
   copy: '复制',

+ 6 - 0
src/views/device/index.vue

@@ -70,6 +70,7 @@ export default defineComponent({
             '2': t('routes.device.type.2'),
             '9': t('routes.device.type.9'),
             '10': t('routes.device.type.10'),
+            '11': t('routes.device.type.11'),
           };
           return typeObj[record.type];
         },
@@ -154,6 +155,11 @@ export default defineComponent({
                 value: 10,
                 key: '10',
               },
+              {
+                label: t('routes.device.type.11'),
+                value: 11,
+                key: '11',
+              },
             ],
           },
         },

+ 3 - 0
src/views/scene/list.vue

@@ -5,6 +5,9 @@
         <a-tab-pane :key="0" :tab="t('routes.scene.tableType.0')" />
         <a-tab-pane :key="1" :tab="t('routes.scene.tableType.1')" />
         <a-tab-pane :key="2" :tab="t('routes.scene.tableType.2')" />
+        <a-tab-pane :key="5" :tab="t('routes.scene.tableType.5')" />
+        <a-tab-pane :key="6" :tab="t('routes.scene.tableType.6')" />
+        <a-tab-pane :key="7" :tab="t('routes.scene.tableType.7')" />
         <!-- <a-tab-pane :key="3" :tab="t('routes.scene.tableType.3')" />  -->
       </a-tabs></template
     >