|
@@ -102,6 +102,9 @@
|
|
|
<template #containChangeTotal="{ row }">
|
|
|
<hc-table-input v-model="row.containChangeTotal" :disabled="isView" @blur="containChangeTotalBlur(row)" />
|
|
|
</template>
|
|
|
+ <template #upPayRatio="{ row }">
|
|
|
+ <hc-table-input v-model="row.upPayRatio" :disabled="isView" />
|
|
|
+ </template>
|
|
|
<template #currentMeterMoney="{ row }">
|
|
|
<hc-table-input v-model="row.currentMeterMoney" disabled />
|
|
|
</template>
|
|
@@ -419,6 +422,7 @@ const addTableColumn = ref([
|
|
|
{ key: 'resolveTotal', name: '分解数量', width: '100' },
|
|
|
{ key: 'changeTotal', name: '变更后数量', width: '100' },
|
|
|
{ key: 'currentMeterTotal', name: '本期计量数量', width: '140' },
|
|
|
+ { key: 'upPayRatio', name: '支付比例', width: '140' },
|
|
|
{ key: 'containChangeTotal', name: '含变更数量', width: '100' },
|
|
|
{ key: 'currentMeterMoney', name: '本期计量金额', width: '120' },
|
|
|
{ key: 'allMeterTotal', name: '累计计量量', width: '100' },
|