|
@@ -24,28 +24,30 @@
|
|
<div class="flex flex-justify-between flex-items-center">
|
|
<div class="flex flex-justify-between flex-items-center">
|
|
<FormTitle class="flex-grow-1" icon="pump" title="矿井基本信息" />
|
|
<FormTitle class="flex-grow-1" icon="pump" title="矿井基本信息" />
|
|
<Button class="mr-10px" @click="addPubFormSchema">添加回风井</Button>
|
|
<Button class="mr-10px" @click="addPubFormSchema">添加回风井</Button>
|
|
- <Button type="primary" @click="submitBasicForm">计算</Button>
|
|
|
|
|
|
+ <Button class="mr-10px" @click="calculateBasicForm">计算</Button>
|
|
|
|
+ <Button type="primary" @click="submitBasicForm">提交</Button>
|
|
</div>
|
|
</div>
|
|
<BasicForm :model="basicFormModel" :schemas="pubFormSchema" @register="regBasicForm" />
|
|
<BasicForm :model="basicFormModel" :schemas="pubFormSchema" @register="regBasicForm" />
|
|
</template>
|
|
</template>
|
|
<template v-if="actived === 'product'">
|
|
<template v-if="actived === 'product'">
|
|
<div class="flex flex-justify-between flex-items-center">
|
|
<div class="flex flex-justify-between flex-items-center">
|
|
<FormTitle class="flex-grow-1" icon="pump" title="根据矿井实际抽采瓦斯量核定" />
|
|
<FormTitle class="flex-grow-1" icon="pump" title="根据矿井实际抽采瓦斯量核定" />
|
|
- <Button type="primary" @click="submitGasvalForm">计算</Button>
|
|
|
|
|
|
+ <Button type="primary" @click="submitGasvalForm">提交</Button>
|
|
</div>
|
|
</div>
|
|
<BasicForm :model="basicFormModel" :schemas="valFormSchema" @register="regGasvalForm" />
|
|
<BasicForm :model="basicFormModel" :schemas="valFormSchema" @register="regGasvalForm" />
|
|
</template>
|
|
</template>
|
|
<template v-if="actived === 'product'">
|
|
<template v-if="actived === 'product'">
|
|
<div class="flex flex-justify-between flex-items-center">
|
|
<div class="flex flex-justify-between flex-items-center">
|
|
<FormTitle class="flex-grow-1" icon="pump" title="根据矿井瓦斯抽采率核定" />
|
|
<FormTitle class="flex-grow-1" icon="pump" title="根据矿井瓦斯抽采率核定" />
|
|
- <Button type="primary" @click="submitGasrateForm">计算</Button>
|
|
|
|
|
|
+ <Button class="mr-10px" @click="calculateGasrateForm">计算</Button>
|
|
|
|
+ <Button type="primary" @click="submitGasrateForm">提交</Button>
|
|
</div>
|
|
</div>
|
|
<BasicForm :model="basicFormModel" :schemas="rateFormSchema" @register="regGasrateForm" />
|
|
<BasicForm :model="basicFormModel" :schemas="rateFormSchema" @register="regGasrateForm" />
|
|
</template>
|
|
</template>
|
|
<template v-if="false">
|
|
<template v-if="false">
|
|
<div class="flex flex-justify-between flex-items-center">
|
|
<div class="flex flex-justify-between flex-items-center">
|
|
<FormTitle class="flex-grow-1" icon="pump" title="核定区域信息" />
|
|
<FormTitle class="flex-grow-1" icon="pump" title="核定区域信息" />
|
|
- <Button type="primary" @click="submitCheckForm">计算</Button>
|
|
|
|
|
|
+ <Button type="primary" @click="submitCheckForm">提交</Button>
|
|
</div>
|
|
</div>
|
|
<BasicForm :model="basicFormModel" :schemas="checkFormSchema" @register="regCheckForm" />
|
|
<BasicForm :model="basicFormModel" :schemas="checkFormSchema" @register="regCheckForm" />
|
|
</template>
|
|
</template>
|
|
@@ -138,7 +140,7 @@
|
|
} from './gasPumpSetting.data';
|
|
} from './gasPumpSetting.data';
|
|
import { BasicTable, useTable } from '/@/components/Table';
|
|
import { BasicTable, useTable } from '/@/components/Table';
|
|
import { BasicModal, useModal } from '/@/components/Modal';
|
|
import { BasicModal, useModal } from '/@/components/Modal';
|
|
- import { get } from 'lodash-es';
|
|
|
|
|
|
+ import { get, inRange } from 'lodash-es';
|
|
|
|
|
|
const actived = ref<'extract' | 'product'>('product');
|
|
const actived = ref<'extract' | 'product'>('product');
|
|
|
|
|
|
@@ -153,13 +155,7 @@
|
|
},
|
|
},
|
|
};
|
|
};
|
|
|
|
|
|
- const [regBasicForm, ctxBasicForm] = useForm(formProps);
|
|
|
|
- function submitBasicForm() {
|
|
|
|
- ctxBasicForm.validate().then(() => {
|
|
|
|
- calculateHandler();
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- function calculateHandler() {
|
|
|
|
|
|
+ function submitHandler() {
|
|
const airVolumeStr = get(basicFormModel.value, 'returnAirVolume', []).join(',');
|
|
const airVolumeStr = get(basicFormModel.value, 'returnAirVolume', []).join(',');
|
|
updateGasMain({
|
|
updateGasMain({
|
|
...basicFormModel.value,
|
|
...basicFormModel.value,
|
|
@@ -173,12 +169,50 @@
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ const [regBasicForm, ctxBasicForm] = useForm(formProps);
|
|
|
|
+ function submitBasicForm() {
|
|
|
|
+ ctxBasicForm.validate().then(() => {
|
|
|
|
+ submitHandler();
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ /** 计算部分可以自动计算的参数 */
|
|
|
|
+ function calculateBasicForm() {
|
|
|
|
+ const field1 = data.value.returnAirVolume;
|
|
|
|
+ const field2 = data.value.mineGasExtractionRate;
|
|
|
|
+ if (field1 && Array.isArray(field1)) {
|
|
|
|
+ const airVolumeArr = field1.map((e) => parseFloat(e));
|
|
|
|
+ ctxBasicForm.setFieldsValue({
|
|
|
|
+ mineMaxTotalReturnAirVolume: airVolumeArr.reduce((t, n) => t + n, 0),
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ // 根据抽采率生成总回瓦斯浓度
|
|
|
|
+ if (field2) {
|
|
|
|
+ const n = parseInt(field2);
|
|
|
|
+ const config: [[number, number], number][] = [
|
|
|
|
+ [[0, 35], 0.35],
|
|
|
|
+ [[34.99, 40], 0.375],
|
|
|
|
+ [[39.99, 45], 0.425],
|
|
|
|
+ [[44.99, 50], 0.475],
|
|
|
|
+ [[49.99, 55], 0.525],
|
|
|
|
+ [[54.99, 60], 0.575],
|
|
|
|
+ [[59.99, 100], 0.7],
|
|
|
|
+ ];
|
|
|
|
+ config.forEach((e) => {
|
|
|
|
+ if (inRange(n, e[0][0], e[0][1])) {
|
|
|
|
+ ctxBasicForm.setFieldsValue({
|
|
|
|
+ mineTotalReturnAirGasConcentration: e[1],
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
/** 根据矿井实际抽采瓦斯量核定的表单数据 */
|
|
/** 根据矿井实际抽采瓦斯量核定的表单数据 */
|
|
// const gasvalFormModel = ref<any>({});
|
|
// const gasvalFormModel = ref<any>({});
|
|
const [regGasvalForm, ctxGasvalForm] = useForm(formProps);
|
|
const [regGasvalForm, ctxGasvalForm] = useForm(formProps);
|
|
function submitGasvalForm() {
|
|
function submitGasvalForm() {
|
|
ctxGasvalForm.validate().then(() => {
|
|
ctxGasvalForm.validate().then(() => {
|
|
- calculateHandler();
|
|
|
|
|
|
+ submitHandler();
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -187,16 +221,41 @@
|
|
const [regGasrateForm, ctxGasrateForm] = useForm(formProps);
|
|
const [regGasrateForm, ctxGasrateForm] = useForm(formProps);
|
|
function submitGasrateForm() {
|
|
function submitGasrateForm() {
|
|
ctxGasrateForm.validate().then(() => {
|
|
ctxGasrateForm.validate().then(() => {
|
|
- calculateHandler();
|
|
|
|
|
|
+ submitHandler();
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
+ /** 计算部分可以自动计算的参数 */
|
|
|
|
+ function calculateGasrateForm() {
|
|
|
|
+ const field1 = data.value.mineGasExtractionRate;
|
|
|
|
+
|
|
|
|
+ // 根据抽采率生成最大绝对涌出量
|
|
|
|
+ if (field1) {
|
|
|
|
+ const n = parseInt(field1);
|
|
|
|
+ const config: [[number, number], number][] = [
|
|
|
|
+ [[0, 35], 20],
|
|
|
|
+ [[34.99, 40], 30],
|
|
|
|
+ [[39.99, 45], 60],
|
|
|
|
+ [[44.99, 50], 120],
|
|
|
|
+ [[49.99, 55], 230],
|
|
|
|
+ [[54.99, 60], 400],
|
|
|
|
+ [[59.99, 100], 500],
|
|
|
|
+ ];
|
|
|
|
+ config.forEach((e) => {
|
|
|
|
+ if (inRange(n, e[0][0], e[0][1])) {
|
|
|
|
+ ctxBasicForm.setFieldsValue({
|
|
|
|
+ maxAllowableAbsoluteGasEmission: e[1],
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
/** 核定区域信息的表单数据 */
|
|
/** 核定区域信息的表单数据 */
|
|
// const checkFormModel = ref<any>({});
|
|
// const checkFormModel = ref<any>({});
|
|
const [regCheckForm, ctxCheckForm] = useForm(formProps);
|
|
const [regCheckForm, ctxCheckForm] = useForm(formProps);
|
|
function submitCheckForm() {
|
|
function submitCheckForm() {
|
|
ctxCheckForm.validate().then(() => {
|
|
ctxCheckForm.validate().then(() => {
|
|
- calculateHandler();
|
|
|
|
|
|
+ submitHandler();
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
@@ -219,15 +278,9 @@
|
|
},
|
|
},
|
|
};
|
|
};
|
|
});
|
|
});
|
|
- const total: FormSchema = {
|
|
|
|
- label: 'Qf(m³/min)',
|
|
|
|
- field: 'mine_max_total_returnAirVolume',
|
|
|
|
- component: 'Input',
|
|
|
|
- helpMessage: '矿井最大总回风风量',
|
|
|
|
- defaultValue: 0,
|
|
|
|
- };
|
|
|
|
|
|
+
|
|
// @ts-ignore-next-line
|
|
// @ts-ignore-next-line
|
|
- pubFormSchema.value = publicFormSchema.concat(...extra, total);
|
|
|
|
|
|
+ pubFormSchema.value = publicFormSchema.concat(...extra);
|
|
}
|
|
}
|
|
/** 添加一项公用参数表单项 */
|
|
/** 添加一项公用参数表单项 */
|
|
function addPubFormSchema() {
|
|
function addPubFormSchema() {
|
|
@@ -333,7 +386,6 @@
|
|
pipeTableData.value = r2;
|
|
pipeTableData.value = r2;
|
|
pumpTableData.value = r3;
|
|
pumpTableData.value = r3;
|
|
data.value = r1[0];
|
|
data.value = r1[0];
|
|
- console.log('debug', r1[0]);
|
|
|
|
initPubFormSchema();
|
|
initPubFormSchema();
|
|
});
|
|
});
|
|
}
|
|
}
|