tangning 4 meses atrás
pai
commit
99fac1007d

+ 2 - 0
src/views/device/putModal.vue

@@ -204,6 +204,7 @@
           9: ['黑色', '红色'],
           10: ['黑色', '红色', '蓝色'],
           11: ['黑色', '红色', '蓝色', '金色'],
+          12: ['黑色'],
         };
         let list = Obj[type] || ['黑色', '红色'];
         return list.map((res) => {
@@ -216,6 +217,7 @@
           9: ['4DKKMI_'],
           10: ['4DSS_'],
           11: ['4DSG_'],
+          12: ['4DSX_'],
         };
         let list = wifiObj[type] || ['4DKKPRO_', '4DKKMI_', '4DSS_', '4DSG_'];
         return list.map((res) => {

+ 2 - 0
src/views/product/firmware/AddModal.vue

@@ -219,6 +219,8 @@
             return t('routes.product.type.3');
           case 11:
             return t('routes.product.type.11');
+          case 12:
+            return t('routes.product.type.12');
           default:
             return '';
         }

+ 2 - 0
src/views/product/firmware/EditModal.vue

@@ -193,6 +193,8 @@
             return t('routes.product.type.3');
           case 11:
             return t('routes.product.type.11');
+          case 12:
+            return t('routes.product.type.12');
           default:
             return '';
         }

+ 1 - 0
src/views/product/firmware/index.vue

@@ -6,6 +6,7 @@
         <a-tab-pane :key="9" :tab="t('routes.product.type.2')" />
         <a-tab-pane :key="10" :tab="t('routes.product.type.3')" />
         <a-tab-pane :key="11" :tab="t('routes.product.type.11')" />
+        <a-tab-pane :key="12" :tab="t('routes.product.type.12')" />
       </a-tabs>
     </template>
     <div class="desc-wrap-BasicTable">

+ 1 - 0
src/views/productOperation/cameraScene.vue

@@ -8,6 +8,7 @@
         <a-tab-pane :key="5" tab="深时Mesh场景" :disabled="loading" />
         <a-tab-pane :key="6" tab="深光点云场景" :disabled="loading" />
         <a-tab-pane :key="7" tab="深光Mesh场景" :disabled="loading" />
+        <a-tab-pane :key="8" tab="深巡点云场景" :disabled="loading" />
         <a-tab-pane :key="57" tab="其他点云场景" :disabled="loading" />
         <a-tab-pane :key="58" tab="其他Mesh场景" :disabled="loading" />
         <a-tab-pane :key="3" tab="四维双目Lite" :disabled="loading" />

+ 1 - 1
src/views/productOperation/data.ts

@@ -99,7 +99,7 @@ export const getSchemas = (val, userName) => {
       field: 'shootCounts',
       component: 'NumberRange',
       label: '点位数量',
-      ifShow: val != 3,
+      ifShow: val != 3 && val != 8,
       componentProps: {
         min: 0,
       },