|
@@ -313,11 +313,11 @@
|
|
|
:min-width="columnWidths.contractName.width"
|
|
:min-width="columnWidths.contractName.width"
|
|
|
resizable
|
|
resizable
|
|
|
/>
|
|
/>
|
|
|
- <el-table-column label="累计" align="center">
|
|
|
|
|
|
|
+ <el-table-column label="年累计" align="center">
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
label="注气量(万方)"
|
|
label="注气量(万方)"
|
|
|
align="center"
|
|
align="center"
|
|
|
- prop="totalGasInjection"
|
|
|
|
|
|
|
+ prop="yearTotalGasInjection"
|
|
|
:formatter="gasInjectionFormatter"
|
|
:formatter="gasInjectionFormatter"
|
|
|
:min-width="columnWidths.totalGasInjection.width"
|
|
:min-width="columnWidths.totalGasInjection.width"
|
|
|
resizable
|
|
resizable
|
|
@@ -325,14 +325,54 @@
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
label="注水量(方)"
|
|
label="注水量(方)"
|
|
|
align="center"
|
|
align="center"
|
|
|
- prop="totalWaterInjection"
|
|
|
|
|
|
|
+ prop="yearTotalWaterInjection"
|
|
|
:min-width="columnWidths.totalWaterInjection.width"
|
|
:min-width="columnWidths.totalWaterInjection.width"
|
|
|
resizable
|
|
resizable
|
|
|
/>
|
|
/>
|
|
|
<el-table-column
|
|
<el-table-column
|
|
|
- label="完工井次"
|
|
|
|
|
|
|
+ label="用电量(万千瓦时)"
|
|
|
align="center"
|
|
align="center"
|
|
|
- prop="cumulativeCompletion"
|
|
|
|
|
|
|
+ prop="yearTotalPower"
|
|
|
|
|
+ :formatter="gasInjectionFormatter"
|
|
|
|
|
+ :min-width="columnWidths.yearTotalPower.width"
|
|
|
|
|
+ resizable
|
|
|
|
|
+ />
|
|
|
|
|
+ <el-table-column
|
|
|
|
|
+ label="油耗(L)"
|
|
|
|
|
+ align="center"
|
|
|
|
|
+ prop="yearTotalFuel"
|
|
|
|
|
+ :min-width="columnWidths.cumulativeCompletion.width"
|
|
|
|
|
+ resizable
|
|
|
|
|
+ />
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column label="井累计" align="center">
|
|
|
|
|
+ <el-table-column
|
|
|
|
|
+ label="注气量(万方)"
|
|
|
|
|
+ align="center"
|
|
|
|
|
+ prop="wellTotalGasInjection"
|
|
|
|
|
+ :formatter="gasInjectionFormatter"
|
|
|
|
|
+ :min-width="columnWidths.totalGasInjection.width"
|
|
|
|
|
+ resizable
|
|
|
|
|
+ />
|
|
|
|
|
+ <el-table-column
|
|
|
|
|
+ label="注水量(方)"
|
|
|
|
|
+ align="center"
|
|
|
|
|
+ prop="wellTotalWaterInjection"
|
|
|
|
|
+ :min-width="columnWidths.totalWaterInjection.width"
|
|
|
|
|
+ resizable
|
|
|
|
|
+ />
|
|
|
|
|
+ <el-table-column
|
|
|
|
|
+ label="用电量(万千瓦时)"
|
|
|
|
|
+ align="center"
|
|
|
|
|
+ prop="wellTotalPower"
|
|
|
|
|
+ :formatter="gasInjectionFormatter"
|
|
|
|
|
+ :min-width="columnWidths.yearTotalPower.width"
|
|
|
|
|
+ resizable
|
|
|
|
|
+ />
|
|
|
|
|
+ <el-table-column
|
|
|
|
|
+ label="油耗(L)"
|
|
|
|
|
+ align="center"
|
|
|
|
|
+ prop="wellTotalFuel"
|
|
|
:min-width="columnWidths.cumulativeCompletion.width"
|
|
:min-width="columnWidths.cumulativeCompletion.width"
|
|
|
resizable
|
|
resizable
|
|
|
/>
|
|
/>
|
|
@@ -603,6 +643,11 @@ const columnWidths = ref<
|
|
|
prop: 'totalWaterInjection',
|
|
prop: 'totalWaterInjection',
|
|
|
width: '120px'
|
|
width: '120px'
|
|
|
},
|
|
},
|
|
|
|
|
+ yearTotalPower: {
|
|
|
|
|
+ label: '用电量(万千瓦时)',
|
|
|
|
|
+ prop: 'yearTotalPower',
|
|
|
|
|
+ width: '120px'
|
|
|
|
|
+ },
|
|
|
cumulativeCompletion: {
|
|
cumulativeCompletion: {
|
|
|
label: '完工井次',
|
|
label: '完工井次',
|
|
|
prop: 'cumulativeCompletion',
|
|
prop: 'cumulativeCompletion',
|