瀏覽代碼

[Mod 0000] 为均压添加参数保留功能

houzekong 3 天之前
父節點
當前提交
bdb87abc14

+ 13 - 0
src/views/vent/monitorManager/balancePressMonitor/balancePress.data.ts

@@ -99,21 +99,25 @@ export const monitorParam = [
 export const settingParam1 = [
   {
     title: 'CO浓度限值',
+    code: 'a',
     value: '',
     unit: '%',
   },
   {
     title: 'O2浓度限值',
+    code: 'b',
     value: '',
     unit: '%',
   },
   {
     title: '30min CO下降梯度',
+    code: 'c',
     value: '',
     unit: '%',
   },
   {
     title: '30min O2下降梯度',
+    code: 'd',
     value: '',
     unit: '%',
   },
@@ -121,21 +125,25 @@ export const settingParam1 = [
 export const settingParam2 = [
   {
     title: '风窗面积调整梯度',
+    code: 'e',
     value: '',
     unit: '㎡',
   },
   {
     title: '风窗调节判定时间',
+    code: 'f',
     value: '',
     unit: 'min',
   },
   {
     title: '最小风窗面积',
+    code: 'g',
     value: '',
     unit: '㎡',
   },
   {
     title: '默认风窗面积',
+    code: 'h',
     value: '',
     unit: '㎡',
   },
@@ -144,26 +152,31 @@ export const settingParam2 = [
 export const settingParam3 = [
   {
     title: '调节最短持续时间',
+    code: 'i',
     value: '',
     unit: 'min',
   },
   {
     title: 'CO浓度不高于',
+    code: 'j',
     value: '',
     unit: '㎡',
   },
   {
     title: 'CO最高限值持续时间',
+    code: 'k',
     value: '',
     unit: 'min',
   },
   {
     title: 'O2浓度不低于',
+    code: 'l',
     value: '',
     unit: '㎡',
   },
   {
     title: 'O2最低限值持续时间',
+    code: 'm',
     value: '',
     unit: 'min',
   },

+ 23 - 4
src/views/vent/monitorManager/balancePressMonitor/components/balancePressHome.vue

@@ -19,19 +19,19 @@
                 <div class="divider-line">开始条件</div>
                 <div v-for="(item, index) in settingParam1" class="input-item" :key="index">
                   <div class="title">{{ item.title }}:</div>
-                  <a-input-number class="input-value" v-model="item.value" placeholder="" />
+                  <a-input-number class="input-value" v-model:value="formData[item.code]" placeholder="" />
                   <div class="unit">{{ item.unit }}</div>
                 </div>
                 <div class="divider-line">调节参数</div>
                 <div v-for="(item, index) in settingParam2" class="input-item" :key="index">
                   <div class="title">{{ item.title }}:</div>
-                  <a-input-number class="input-value" v-model="item.value" placeholder="" />
+                  <a-input-number class="input-value" v-model:value="formData[item.code]" placeholder="" />
                   <div class="unit">{{ item.unit }}</div>
                 </div>
                 <div class="divider-line">结束时间</div>
                 <div v-for="(item, index) in settingParam3" class="input-item" :key="index">
                   <div class="title">{{ item.title }}:</div>
-                  <a-input-number class="input-value" v-model="item.value" placeholder="" />
+                  <a-input-number class="input-value" v-model:value="formData[item.code]" placeholder="" />
                   <div class="unit">{{ item.unit }}</div>
                 </div>
               </div>
@@ -106,7 +106,7 @@
   import ventBox1 from '/@/components/vent/ventBox1.vue';
   import { SvgIcon } from '/@/components/Icon';
   import { mountedThree, destroy, setModelType, updateText, play } from '../balancePress.threejs';
-  import { settingParam1, settingParam2, settingParam3, windowParam, localFanParam, monitorParam, o2Param } from '../balancePress.data';
+  import { settingParam1, settingParam2, settingParam3, windowParam, localFanParam, monitorParam } from '../balancePress.data';
   import { list } from '../balancePress.api';
   import { message } from 'ant-design-vue';
   import { get } from 'lodash-es';
@@ -184,6 +184,7 @@
 
   // 喷粉操作
   function onSubmit() {
+    sessionStorage.setItem('lalance-press-formdata', JSON.stringify(formData.value));
     message.success('提交成功');
   }
 
@@ -198,11 +199,29 @@
     }
   );
 
+  const formData = ref({
+    a: 0,
+    b: 0,
+    c: 0,
+    d: 0,
+    e: 0,
+    f: 0,
+    g: 0,
+    h: 0,
+    i: 0,
+    j: 0,
+    k: 0,
+    l: 0,
+    m: 0,
+  });
+
   onBeforeMount(() => {});
 
   onMounted(() => {
     // getMonitor()
     loading.value = true;
+    const storage = sessionStorage.getItem('lalance-press-formdata');
+    if (storage) formData.value = JSON.parse(storage);
     mountedThree().then(async () => {
       await setModelType('balancePressBase');
       loading.value = false;