Kaynağa Gözat

[Wip 0000] 瓦斯核定页面开发及数据对接模拟

houzekong 1 ay önce
ebeveyn
işleme
ca05a843aa

BIN
src/assets/images/vent/gas/verify-nav-bg-l.png


BIN
src/assets/images/vent/gas/verify-nav-bg-r.png


BIN
src/assets/images/vent/gas/verify-nav-bg.png


+ 69 - 0
src/views/vent/gas/gasVerify/gasPumpSetting.api.ts

@@ -0,0 +1,69 @@
+import { defHttp } from '/@/utils/http/axios';
+
+enum Api {
+  addGasDrainageParam = '/safety/gasDrainage/addGasDrainageParam',
+  createParam = '/safety/gasDrainage/createParam',
+  deleteGasDrainageParam = '/safety/gasDrainage/deleteGasDrainageParam',
+  getGasDrainageParamList = '/safety/gasDrainage/getGasDrainageParamList',
+  updateGasDrainageParam = '/safety/gasDrainage/updateGasDrainageParam',
+  getEvaluationUnitList = '/safety/evaluationUnit/getEvaluationUnitList',
+}
+/**
+ * 新增接口
+ * @param data
+ */
+export const addGasDrainageParam = (data) => {
+  return defHttp.post({
+    url: Api.addGasDrainageParam,
+    params: data,
+  });
+};
+/**
+ * 计算接口
+ * @param data
+ */
+export const createParam = (data) => {
+  return defHttp.post({
+    url: Api.createParam,
+    params: data,
+  });
+};
+/**
+ * 删除接口
+ * @param data
+ */
+export const deleteGasDrainageParam = (data) => {
+  return defHttp.get({
+    url: Api.deleteGasDrainageParam,
+    params: data,
+  });
+};
+/**
+ * 查询接口
+ * @param data
+ */
+export const getGasDrainageParamList = (data) => {
+  return defHttp.post({
+    url: Api.getGasDrainageParamList,
+    params: data,
+  });
+};
+/**
+ * 修改接口
+ * @param data
+ */
+export const updateGasDrainageParam = (data) => {
+  return defHttp.post({
+    url: Api.updateGasDrainageParam,
+    params: data,
+  });
+};
+/**
+ *
+ */
+export const getEvaluationUnitList = (data) => {
+  return defHttp.post({
+    url: Api.getEvaluationUnitList,
+    params: data,
+  });
+};

+ 324 - 0
src/views/vent/gas/gasVerify/gasPumpSetting.data.ts

@@ -0,0 +1,324 @@
+import { FormSchema } from '@/components/Form';
+import { BasicColumn } from '/@/components/Table';
+
+/** 公用参数表单配置项 */
+export const publicFormSchema: FormSchema[] = [
+  {
+    label: '',
+    field: 'id',
+    show: false,
+    component: 'Input',
+  },
+  {
+    label: 'q(m³/t)',
+    field: 'q',
+    component: 'Input',
+    helpMessage: '矿井相对瓦斯涌出量',
+  },
+  {
+    label: '矿井瓦斯抽采率',
+    field: 'ccl',
+    component: 'Input',
+    helpMessage: '',
+  },
+  {
+    label: 'C1(%)',
+    field: 'c1',
+    component: 'Input',
+    helpMessage: '矿井总回瓦斯浓度',
+  },
+  {
+    label: 'Qf(m³/min)',
+    field: 'qf',
+    component: 'Input',
+    helpMessage: '矿井最大总回风风量',
+  },
+  {
+    label: '当地大气压(kPa)',
+    field: 'lpa',
+    component: 'Input',
+    helpMessage: '',
+  },
+  {
+    label: '标准大气压(kPa)',
+    field: 'spa',
+    component: 'Input',
+    helpMessage: '',
+  },
+];
+
+/** 瓦斯抽采量表单配置项 */
+export const valFormSchema: FormSchema[] = [
+  {
+    label: '',
+    field: 'id',
+    show: false,
+    component: 'Input',
+  },
+  {
+    label: 'Qs(m³)',
+    field: 'qs',
+    component: 'Input',
+    helpMessage: '矿井上年度实际瓦斯抽采量',
+  },
+  {
+    label: 'q0',
+    field: 'q0',
+    component: 'Input',
+    helpMessage: '最大应抽煤瓦斯量',
+  },
+  {
+    label: '超前抽采系数',
+    field: 'over',
+    component: 'Input',
+  },
+];
+
+/** 瓦斯抽采率表单配置项 */
+export const rateFormSchema: FormSchema[] = [
+  {
+    label: '',
+    field: 'id',
+    show: false,
+    component: 'Input',
+  },
+  {
+    label: 'q(m³/t)',
+    field: 'q',
+    component: 'Input',
+    helpMessage: '矿井相对瓦斯涌出量',
+  },
+  {
+    label: 'η(%)',
+    field: 'n',
+    component: 'Input',
+    helpMessage: '上年度矿井瓦斯抽采率',
+  },
+  {
+    label: 'Q(m³/min)',
+    field: 'q',
+    component: 'Input',
+    helpMessage: '矿井抽采达标允许最大矿井绝对瓦斯涌出量',
+  },
+];
+
+/** 核定区域表单配置项 */
+export const checkFormSchema: FormSchema[] = [
+  {
+    label: '',
+    field: 'id',
+    show: false,
+    component: 'Input',
+  },
+  {
+    label: 'p1(m³/t)',
+    field: 'q',
+    component: 'Input',
+    helpMessage: '核定区域内煤层最大瓦斯含量',
+  },
+  {
+    label: 'p2(m³/t)',
+    field: 'n',
+    component: 'Input',
+    helpMessage: '抽采后满足残余要求的残余瓦斯含量',
+  },
+  {
+    label: '矿井回采率(%)',
+    field: 'q',
+    component: 'Input',
+    helpMessage: '',
+  },
+  {
+    label: 'p3(m³)',
+    field: 'q',
+    component: 'Input',
+    helpMessage: '矿井上一正常年度实际预抽瓦斯量',
+  },
+  {
+    label: 'k1',
+    field: 'q',
+    component: 'Input',
+    helpMessage: '邻近层和围岩瓦斯储量系数',
+  },
+  {
+    label: 'k2',
+    field: 'q',
+    component: 'Input',
+    helpMessage: '瓦斯掘金出煤系数',
+  },
+];
+
+export const tableFormSchema: FormSchema[] = [
+  {
+    label: '抽采泵站',
+    field: 'ccbz',
+    component: 'Input',
+  },
+  {
+    label: '单台泵',
+    field: 'ddb',
+    component: 'Input',
+  },
+  {
+    label: '装机能力Qbe(m³/min)',
+    field: 'zznl',
+    component: 'Input',
+  },
+  {
+    label: '平均抽采瓦斯浓度C2(%)',
+    field: 'wsnd',
+    component: 'Input',
+  },
+  {
+    label: '年均运行负压Pb(kPa)',
+    field: 'yxfy',
+    component: 'Input',
+  },
+  {
+    label: '抽采工况系数',
+    field: 'k',
+    component: 'Input',
+  },
+  {
+    label: '抽采系统',
+    field: 'ccxt',
+    component: 'Input',
+  },
+  {
+    label: '主管内径D(m)',
+    field: 'd',
+    component: 'Input',
+  },
+  {
+    label: '经济流速v(m/s)',
+    field: 'v',
+    component: 'Input',
+  },
+  {
+    label: '赋予系数k',
+    field: 'kk',
+    component: 'Input',
+  },
+];
+
+/** 装机能力核定表 */
+export const installTableColumns: BasicColumn[] = [
+  {
+    title: '抽采泵站',
+    dataIndex: 'ccbz',
+    key: 'ccbz',
+  },
+  {
+    title: '单台泵',
+    dataIndex: 'ddb',
+    key: 'ddb',
+  },
+  {
+    title: '装机能力Qbe(m³/min)',
+    dataIndex: 'zznl',
+    key: 'zznl',
+  },
+  {
+    title: '平均抽采瓦斯浓度C2(%)',
+    dataIndex: 'wsnd',
+    key: 'wsnd',
+  },
+  {
+    title: '年均运行负压Pb(kPa)',
+    dataIndex: 'yxfy',
+    key: 'yxfy',
+  },
+  {
+    title: '抽采工况系数',
+    dataIndex: 'k',
+    key: 'k',
+  },
+  {
+    width: 120,
+    title: '操作',
+    fixed: false,
+    dataIndex: 'action',
+    slots: { customRender: 'action' },
+  },
+];
+/** 管道系统能力核定表 */
+export const pipeTableColumns: BasicColumn[] = [
+  {
+    title: '抽采泵站',
+    dataIndex: 'ccbz',
+    key: 'ccbz',
+  },
+  {
+    title: '抽采系统',
+    dataIndex: 'ccxt',
+    key: 'ccxt',
+  },
+  {
+    title: '主管内径D(m)',
+    dataIndex: 'd',
+    key: 'd',
+  },
+  {
+    title: '经济流速v(m/s)',
+    dataIndex: 'v',
+    key: 'v',
+  },
+  {
+    title: '赋予系数k',
+    dataIndex: 'kk',
+    key: 'kk',
+  },
+  {
+    title: '平均抽采瓦斯浓度C2(%)',
+    dataIndex: 'wsnd2',
+    key: 'wsnd2',
+  },
+  {
+    width: 120,
+    title: '操作',
+    fixed: false,
+    dataIndex: 'action',
+    slots: { customRender: 'action' },
+  },
+];
+
+/** 工作面核定表 */
+export const workfaceTableColumns: BasicColumn[] = [
+  {
+    title: '工作面名称',
+    dataIndex: 'ccbz',
+    key: 'ccbz',
+  },
+  {
+    title: '工作面平均长度(m)',
+    dataIndex: 'ccxt',
+    key: 'ccxt',
+  },
+  {
+    title: '工作面煤层平均采高(m)',
+    dataIndex: 'd',
+    key: 'd',
+  },
+  {
+    title: '工作面原煤视密度(t/m³)',
+    dataIndex: 'v',
+    key: 'v',
+  },
+  {
+    title: '工作面平均日推进度(m/d)',
+    dataIndex: 'kk',
+    key: 'kk',
+  },
+  {
+    title: '工作面回采率(%)',
+    dataIndex: 'wsnd2',
+    key: 'wsnd2',
+  },
+  {
+    width: 120,
+    title: '操作',
+    fixed: false,
+    dataIndex: 'action',
+    slots: { customRender: 'action' },
+  },
+];

+ 367 - 0
src/views/vent/gas/gasVerify/index.vue

@@ -0,0 +1,367 @@
+<!-- eslint-disable vue/multi-word-component-names -->
+<template>
+  <div class="gas-verify">
+    <CustomHeader> 瓦斯抽采达标能力核定 </CustomHeader>
+    <div class="flex mt-90px">
+      <div class="nav-l"> 瓦斯抽采达标生产能力: {{ data.dbscnl }} t/a </div>
+      <div class="nav">
+        <Tabs v-model:active-key="actived" :tabBarStyle="{ color: 'red' }">
+          <TabPane key="product" tab="矿井瓦斯抽采达标生产能力核定" />
+          <TabPane key="extract" tab="矿井瓦斯抽采能力核定" />
+        </Tabs>
+      </div>
+      <div class="nav-r"> 瓦斯抽采能力: {{ data.ccnl }} m<sup>3</sup>/min </div>
+    </div>
+    <div class="flex">
+      <div :style="{ flex: 1 }">
+        矿井瓦斯抽采系统能力统计图
+        <Bar :chart-data="productChartData" x-axis-prop-type="x" series-prop-type="y" height="300px" />
+        矿井瓦斯抽采能力统计图
+        <Bar :chart-data="extractChartData" x-axis-prop-type="x" series-prop-type="y" height="300px" />
+      </div>
+      <div class="gas-verify__content">
+        <template v-if="true">
+          <div class="flex flex-justify-between flex-items-center">
+            <FormTitle class="flex-grow-1" icon="pump" title="矿井基本信息" />
+            <Button class="mr-10px" @click="addPubFormSchema">添加回风井</Button>
+            <Button type="primary" @click="submitBasicForm">计算</Button>
+          </div>
+          <BasicForm :model="basicFormModel" :schemas="pubFormSchema" @register="regBasicForm" />
+        </template>
+        <template v-if="actived === 'product'">
+          <div class="flex flex-justify-between flex-items-center">
+            <FormTitle class="flex-grow-1" icon="pump" title="根据矿井实际抽采瓦斯量核定" />
+            <Button type="primary" @click="submitGasvalForm">计算</Button>
+          </div>
+          <BasicForm :model="basicFormModel" :schemas="valFormSchema" @register="regGasvalForm" />
+        </template>
+        <template v-if="actived === 'product'">
+          <div class="flex flex-justify-between flex-items-center">
+            <FormTitle class="flex-grow-1" icon="pump" title="根据矿井瓦斯抽采率核定" />
+            <Button type="primary" @click="submitGasrateForm">计算</Button>
+          </div>
+          <BasicForm :model="basicFormModel" :schemas="rateFormSchema" @register="regGasrateForm" />
+        </template>
+        <template v-if="false">
+          <div class="flex flex-justify-between flex-items-center">
+            <FormTitle class="flex-grow-1" icon="pump" title="核定区域信息" />
+            <Button type="primary" @click="submitCheckForm">计算</Button>
+          </div>
+          <BasicForm :model="basicFormModel" :schemas="checkFormSchema" @register="regCheckForm" />
+        </template>
+
+        <template v-if="actived === 'product'">
+          <div class="flex flex-justify-between flex-items-center">
+            <FormTitle class="flex-grow-1" :title="`按矿井瓦斯抽采泵站装机能力核定:test`" />
+            <Button type="primary" @click="editHandler()">添加</Button>
+          </div>
+        </template>
+        <template v-if="actived === 'extract'">
+          <div class="flex flex-justify-between flex-items-center">
+            <FormTitle class="flex-grow-1" :title="`按瓦斯抽采泵站装机能力核定:test`" />
+            <Button type="primary" @click="editHandler()">添加</Button>
+          </div>
+        </template>
+        <BasicTable class="mb-20px" :columns="installTableColumns" :data-source="tableData" @register="regTable">
+          <template #action="{ record }">
+            <a class="mr-5px" @click.prevent="editHandler(record)">编辑</a>
+            <Popconfirm @confirm="deleteHandler(record)"><a>删除</a></Popconfirm>
+          </template>
+        </BasicTable>
+        <template v-if="actived === 'product'">
+          <div class="flex flex-justify-between flex-items-center">
+            <FormTitle class="flex-grow-1" :title="`按矿井瓦斯抽采主管道系统能力核定:test`" />
+            <Button type="primary" @click="editHandler()">添加</Button>
+          </div>
+        </template>
+        <template v-if="actived === 'extract'">
+          <div class="flex flex-justify-between flex-items-center">
+            <FormTitle class="flex-grow-1" :title="`按矿井瓦斯主管道系统能力核定:test`" />
+            <Button type="primary" @click="editHandler()">添加</Button>
+          </div>
+        </template>
+        <BasicTable :columns="pipeTableColumns" :data-source="tableData" @register="regTable">
+          <template #action="{ record }">
+            <a class="mr-5px" @click.prevent="editHandler(record)">编辑</a>
+            <Popconfirm @confirm="deleteHandler(record)"><a>删除</a></Popconfirm>
+          </template>
+        </BasicTable>
+        <!-- <BasicTable :columns="workfaceTableColumns" :data-source="[{ ccbz: `1111` }, { ccbz: `2222` }]" @register="regTable">
+          <template #action="{ record }">
+            <a class="mr-5px" @click.prevent="openModal()">编辑</a>
+            <a>删除</a>
+          </template>
+        </BasicTable> -->
+
+        <BasicModal @register="regModal" title="能力核定表单" @ok="submitCommonForm">
+          <BasicForm @register="regCommonForm" />
+        </BasicModal>
+      </div>
+    </div>
+  </div>
+</template>
+
+<script lang="ts" setup>
+  import CustomHeader from '/@/components/vent/customHeader.vue';
+  import { computed, ref } from 'vue';
+  import { message, TabPane, Tabs, Button, Popconfirm } from 'ant-design-vue';
+  import { onMounted } from 'vue';
+  import FormTitle from '@/views/vent/gas/components/form/formTitle.vue';
+  import { useForm, BasicForm, FormSchema } from '/@/components/Form';
+  import Bar from '/@/components/chart/Bar.vue';
+  import {} from './gasPumpSetting.api';
+  import {
+    publicFormSchema,
+    valFormSchema,
+    rateFormSchema,
+    installTableColumns,
+    pipeTableColumns,
+    tableFormSchema,
+    checkFormSchema,
+    // workfaceTableColumns,
+  } from './gasPumpSetting.data';
+  import { BasicTable, useTable } from '/@/components/Table';
+  import { BasicModal, useModal } from '/@/components/Modal';
+
+  const actived = ref<'extract' | 'product'>('product');
+
+  /** 矿井基本信息的表单数据 */
+  const basicFormModel = ref<any>({});
+  /** 计算参数相关的表单通用配置 */
+  const formProps = {
+    showActionButtonGroup: false,
+    labelCol: { span: 10 },
+    baseColProps: {
+      flex: '20%',
+    },
+  };
+  const [regBasicForm, ctxBasicForm] = useForm(formProps);
+  function submitBasicForm() {
+    ctxBasicForm.validate().then(() => {
+      calculate();
+    });
+  }
+
+  /** 根据矿井实际抽采瓦斯量核定的表单数据 */
+  // const gasvalFormModel = ref<any>({});
+  const [regGasvalForm, ctxGasvalForm] = useForm(formProps);
+  function submitGasvalForm() {
+    ctxGasvalForm.validate().then(() => {
+      calculate();
+    });
+  }
+
+  /** 根据矿井瓦斯抽采率核定的表单数据 */
+  // const gasrateFormModel = ref<any>({});
+  const [regGasrateForm, ctxGasrateForm] = useForm(formProps);
+  function submitGasrateForm() {
+    ctxGasrateForm.validate().then(() => {
+      calculate();
+    });
+  }
+
+  /** 核定区域信息的表单数据 */
+  // const checkFormModel = ref<any>({});
+  const [regCheckForm, ctxCheckForm] = useForm(formProps);
+  function submitCheckForm() {
+    ctxCheckForm.validate().then(() => {
+      calculate();
+    });
+  }
+
+  /** 两个表格对应的表单数据 */
+  const commonFormModel = ref<any>({});
+  const [regCommonForm, ctxCommonForm] = useForm({
+    model: commonFormModel,
+    schemas: tableFormSchema,
+    showActionButtonGroup: false,
+    labelCol: { span: 10 },
+  });
+  function submitCommonForm() {
+    ctxCommonForm.validate().then(() => {
+      calculate();
+    });
+  }
+
+  /** 矿井基本信息的表单配置,需要动态添加回风井 */
+  const pubFormSchema = ref<FormSchema[]>([]);
+  /** 根据表单数据设置矿井基本信息的表单配置 */
+  function initPubFormSchema() {
+    const extra: FormSchema[] = data.value.arr.map((num, inx) => {
+      return {
+        label: `回风井${inx + 1}`,
+        field: `__${inx + 1}`,
+        defaultValue: num,
+        component: 'Input',
+        componentProps: {
+          onChange: ({ target }) => {
+            data.value.arr[inx] = target.value;
+            ctxBasicForm.setFieldsValue({ total: data.value.arr.reduce((t, n) => t + parseFloat(n), 0) });
+          },
+        },
+      };
+    });
+    const total: FormSchema = {
+      label: '总计',
+      field: 'total',
+      defaultValue: 0,
+      component: 'Input',
+    };
+    // @ts-ignore-next-line
+    pubFormSchema.value = publicFormSchema.concat(...extra, total);
+  }
+  /** 添加一项公用参数表单项 */
+  function addPubFormSchema() {
+    data.value.arr.push(0);
+    initPubFormSchema();
+  }
+
+  /** 生产能力核定/抽采能力核定的数据,也是组件的数据依赖其一 */
+  const data = ref({
+    q: 1,
+    ccl: 1,
+    c1: 1,
+    qf: 1,
+    lpa: 1,
+    spa: 1,
+    total: 1,
+    arr: [1, 12],
+    dbscnl: 123,
+    ccnl: 321,
+    ccxtnl: 12,
+    sjccl: 13,
+    wsclv: 14,
+    ftcc: 11,
+    wsccbzznl: 20,
+    wscczgdxtnl: 10,
+  });
+  /** 两个表格依赖的数据,是组件的数据依赖其二,它们依赖相同的数据 */
+  const tableData = ref<any[]>([]);
+
+  const [regTable] = useTable({
+    pagination: false,
+  });
+  const [regModal, { openModal }] = useModal();
+
+  /** 表格编辑处理 */
+  function editHandler(record?: Record<string, any>) {
+    if (record) {
+      ctxCommonForm.setFieldsValue(record);
+      commonFormModel.value = record;
+      openModal();
+    } else {
+      ctxCommonForm.resetFields();
+      commonFormModel.value = {};
+      openModal();
+    }
+  }
+  /** 表格删除处理 */
+  function deleteHandler({ id }) {
+    message.info('提交删除请求');
+    console.log('debug', id);
+  }
+  function refresh() {
+    basicFormModel.value = data.value;
+    tableData.value = [{ ccbz: 1111 }, { ccbz: 2222 }];
+    initPubFormSchema();
+  }
+
+  /** 提交参数进行核定值计算 */
+  function calculate() {
+    message.info('提交计算请求');
+    refresh();
+  }
+
+  const productChartData = computed(() => {
+    return [
+      {
+        x: '抽采系统能力',
+        y: data.value.ccxtnl || 0,
+      },
+      {
+        x: '实际抽采量',
+        y: data.value.sjccl || 0,
+      },
+      {
+        x: '瓦斯抽采率',
+        y: data.value.wsclv || 0,
+      },
+      {
+        x: '防突抽采',
+        y: data.value.ftcc || 0,
+      },
+    ];
+  });
+  const extractChartData = computed(() => {
+    return [
+      {
+        x: '瓦斯抽采泵装机能力',
+        y: data.value.wsccbzznl || 0,
+      },
+      {
+        x: '瓦斯抽采主管道系统能力',
+        y: data.value.wscczgdxtnl || 0,
+      },
+    ];
+  });
+
+  onMounted(() => {
+    refresh();
+  });
+</script>
+
+<style lang="less" scoped>
+  @import '/@/design/theme.less';
+
+  .gas-verify {
+    --image-verify-nav-bg-l: url('/@/assets/images/vent/gas/verify-nav-bg-l.png');
+    --image-verify-nav-bg-r: url('/@/assets/images/vent/gas/verify-nav-bg-r.png');
+    --image-verify-nav-bg: url('/@/assets/images/vent/gas/verify-nav-bg.png');
+
+    color: var(--vent-font-color);
+    padding: 0 20px;
+
+    .nav-l {
+      flex: 1;
+      height: 83px;
+      padding-top: 31px;
+      text-align: center;
+      background-repeat: no-repeat;
+      background-size: 100% 85px;
+      background-position: center 12px;
+      background-image: var(--image-verify-nav-bg-l);
+    }
+    .nav {
+      flex: 3;
+      height: 83px;
+      padding: 20px 40px 0 40px;
+      background-repeat: no-repeat;
+      background-size: 100% 70px;
+      background-position: center 0;
+      background-image: var(--image-verify-nav-bg);
+    }
+    .nav-r {
+      flex: 1;
+      height: 83px;
+      padding-top: 31px;
+      text-align: center;
+      background-repeat: no-repeat;
+      background-size: 100% 85px;
+      background-position: center 12px;
+      background-image: var(--image-verify-nav-bg-r);
+    }
+
+    .gas-verify__content {
+      flex: 4;
+      height: 740px;
+      overflow-y: auto;
+    }
+  }
+
+  :deep(.zxm-tabs-ink-bar) {
+    display: none;
+  }
+  :deep(.form-title) {
+    background-size: 800px 100%;
+  }
+</style>