| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- 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: 'mineRelativeGasEmission',
- component: 'Input',
- helpMessage: '矿井相对瓦斯涌出量',
- },
- {
- label: 'η(%)',
- field: 'mineGasExtractionRate',
- component: 'Input',
- helpMessage: '矿井瓦斯抽采率',
- },
- {
- label: 'C1(%)',
- field: 'mineTotalReturnAirGasConcentration',
- component: 'Input',
- helpMessage: '矿井总回风巷瓦斯浓度',
- },
- {
- label: '当地大气压(kPa)',
- field: 'localAtmosphericPressure',
- component: 'Input',
- helpMessage: '',
- },
- {
- label: '标准大气压(kPa)',
- field: 'standardAtmosphericPressure',
- component: 'Input',
- helpMessage: '',
- },
- {
- label: 'Qf(m³/min)',
- field: 'mineMaxTotalReturnAirVolume',
- component: 'Input',
- helpMessage: '矿井最大总回风风量',
- },
- ];
- /** 瓦斯抽采量表单配置项 */
- export const valFormSchema: FormSchema[] = [
- {
- label: 'Qs(m³)',
- field: 'minePreviousYearActualGasExtraction',
- component: 'Input',
- helpMessage: '矿井上年度实际抽采瓦斯量',
- },
- {
- label: 'q0',
- field: 'maxGasContentCoalSeamToBeExtracted',
- component: 'Input',
- helpMessage: '预开采区域瓦斯含量最大煤层应抽瓦斯吨煤含量',
- },
- {
- label: '超前抽采系数',
- field: 'mineAdvanceExtractionCoefficient',
- component: 'Input',
- },
- ];
- /** 瓦斯抽采率表单配置项 */
- export const rateFormSchema: FormSchema[] = [
- {
- label: 'η(%)',
- field: 'mineGasExtractionRate',
- component: 'Input',
- helpMessage: '上年度矿井瓦斯抽采率',
- },
- {
- label: 'Q(m³/min)',
- field: 'maxAllowableAbsoluteGasEmission',
- 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 pipeFormSchema: FormSchema[] = [
- {
- label: '',
- field: 'id',
- show: false,
- component: 'Input',
- },
- {
- label: '抽采泵站',
- field: 'extractionPumpStation',
- component: 'Input',
- },
- {
- label: '抽采系统',
- field: 'extractionSystem',
- component: 'Input',
- },
- {
- label: '主管内径D(m)',
- field: 'mainPipeInnerDiameterD',
- component: 'Input',
- },
- {
- label: '经济流速v(m/s)',
- field: 'economicFlowRateV',
- component: 'Input',
- },
- {
- label: '赋予系数k',
- field: 'surplusCoefficientK',
- component: 'Input',
- },
- {
- label: '平均抽采瓦斯浓度C2(%)',
- field: 'averagegasconcentrationc2',
- component: 'Input',
- },
- {
- label: '年均运行负压Pb(kPa)',
- field: 'annualaveragenegativepressurepb',
- component: 'Input',
- },
- ];
- /** 装机能力核定表单 */
- export const pumpFormSchema: FormSchema[] = [
- {
- label: '',
- field: 'id',
- show: false,
- component: 'Input',
- },
- {
- label: '抽采泵站',
- field: 'pumpstation',
- component: 'Input',
- },
- {
- label: '单台泵',
- field: 'singlepump',
- component: 'Input',
- },
- {
- label: '装机能力Qbe(m³/min)',
- field: 'installedcapacityqbe',
- component: 'Input',
- },
- {
- label: '平均抽采瓦斯浓度C2(%)',
- field: 'averagegasconcentrationc2',
- component: 'Input',
- },
- {
- label: '年均运行负压Pb(kPa)',
- field: 'annualaveragenegativepressurepb',
- component: 'Input',
- },
- {
- label: '抽采工况系数',
- field: 'extractionconditioncoefficient',
- component: 'Input',
- },
- ];
- /** 装机能力核定表 */
- export const pumpTableColumns: BasicColumn[] = [
- {
- title: '抽采泵站',
- dataIndex: 'pumpstation',
- key: 'pumpstation',
- },
- {
- title: '单台泵',
- dataIndex: 'singlepump',
- key: 'singlepump',
- },
- {
- title: '装机能力Qbe(m³/min)',
- dataIndex: 'installedcapacityqbe',
- key: 'installedcapacityqbe',
- },
- {
- title: '平均抽采瓦斯浓度C2(%)',
- dataIndex: 'averagegasconcentrationc2',
- key: 'averagegasconcentrationc2',
- },
- {
- title: '年均运行负压Pb(kPa)',
- dataIndex: 'annualaveragenegativepressurepb',
- key: 'annualaveragenegativepressurepb',
- },
- {
- title: '抽采工况系数',
- dataIndex: 'extractionconditioncoefficient',
- key: 'extractionconditioncoefficient',
- },
- {
- width: 120,
- title: '操作',
- fixed: false,
- dataIndex: 'action',
- slots: { customRender: 'action' },
- },
- ];
- /** 管道系统能力核定表 */
- export const pipeTableColumns: BasicColumn[] = [
- {
- title: '抽采泵站',
- dataIndex: 'extractionPumpStation',
- key: 'extractionPumpStation',
- },
- {
- title: '抽采系统',
- dataIndex: 'extractionSystem',
- key: 'extractionSystem',
- },
- {
- title: '主管内径D(m)',
- dataIndex: 'mainPipeInnerDiameterD',
- key: 'mainPipeInnerDiameterD',
- },
- {
- title: '经济流速v(m/s)',
- dataIndex: 'economicFlowRateV',
- key: 'economicFlowRateV',
- },
- {
- title: '赋予系数k',
- dataIndex: 'surplusCoefficientK',
- key: 'surplusCoefficientK',
- },
- {
- title: '平均抽采瓦斯浓度C2(%)',
- dataIndex: 'averagegasconcentrationc2',
- key: 'averagegasconcentrationc2',
- },
- {
- title: '年均运行负压Pb(kPa)',
- dataIndex: 'annualaveragenegativepressurepb',
- key: 'annualaveragenegativepressurepb',
- },
- {
- 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' },
- },
- ];
|