|
@@ -133,21 +133,21 @@
|
|
133
|
<el-card shadow="never" class="yak-detail__block">
|
133
|
<el-card shadow="never" class="yak-detail__block">
|
|
134
|
<div slot="header">{{ lfT("sectionReproduction") }}</div>
|
134
|
<div slot="header">{{ lfT("sectionReproduction") }}</div>
|
|
135
|
<el-table :data="reproductionRecords" border size="small" max-height="240">
|
135
|
<el-table :data="reproductionRecords" border size="small" max-height="240">
|
|
136
|
- <el-table-column :label="lfT('colDayAge')" prop="dayAge" align="center" width="80" />
|
|
|
|
137
|
- <el-table-column :label="lfT('colParity')" prop="parity" align="center" width="70" />
|
|
|
|
138
|
- <el-table-column :label="lfT('colCalvingInterval')" align="center" width="100">
|
|
|
|
|
|
136
|
+ <el-table-column :label="lfT('colDayAge')" prop="dayAge" align="center" />
|
|
|
|
137
|
+ <el-table-column :label="lfT('colParity')" prop="parity" align="center" />
|
|
|
|
138
|
+ <el-table-column :label="lfT('colCalvingInterval')" align="center" >
|
|
139
|
<template slot-scope="scope">{{ formatWithUnit(scope.row.calvingIntervalDays, lfCommon('unitDay')) }}</template>
|
139
|
<template slot-scope="scope">{{ formatWithUnit(scope.row.calvingIntervalDays, lfCommon('unitDay')) }}</template>
|
|
140
|
</el-table-column>
|
140
|
</el-table-column>
|
|
141
|
- <el-table-column :label="lfT('colCalfCount')" align="center" width="90">
|
|
|
|
|
|
141
|
+ <el-table-column :label="lfT('colCalfCount')" align="center" >
|
|
142
|
<template slot-scope="scope">{{ formatWithUnit(scope.row.calfCount, lfCommon('unitHead')) }}</template>
|
142
|
<template slot-scope="scope">{{ formatWithUnit(scope.row.calfCount, lfCommon('unitHead')) }}</template>
|
|
143
|
</el-table-column>
|
143
|
</el-table-column>
|
|
144
|
- <el-table-column :label="lfT('colCalfSurvivalRate')" align="center" width="100">
|
|
|
|
|
|
144
|
+ <el-table-column :label="lfT('colCalfSurvivalRate')" align="center" >
|
|
145
|
<template slot-scope="scope">{{ formatRate(scope.row.calfSurvivalRate) }}</template>
|
145
|
<template slot-scope="scope">{{ formatRate(scope.row.calfSurvivalRate) }}</template>
|
|
146
|
</el-table-column>
|
146
|
</el-table-column>
|
|
147
|
- <el-table-column :label="lfT('colCalfBirthWeight')" align="center" width="110">
|
|
|
|
|
|
147
|
+ <el-table-column :label="lfT('colCalfBirthWeight')" align="center" >
|
|
148
|
<template slot-scope="scope">{{ formatWithUnit(scope.row.calfBirthWeightKg, lfCommon('unitKg')) }}</template>
|
148
|
<template slot-scope="scope">{{ formatWithUnit(scope.row.calfBirthWeightKg, lfCommon('unitKg')) }}</template>
|
|
149
|
</el-table-column>
|
149
|
</el-table-column>
|
|
150
|
- <el-table-column :label="lfT('colDystocia')" align="center" width="90">
|
|
|
|
|
|
150
|
+ <el-table-column :label="lfT('colDystocia')" align="center" >
|
|
151
|
<template slot-scope="scope">{{ dystociaLabel(scope.row.dystociaFlag) }}</template>
|
151
|
<template slot-scope="scope">{{ dystociaLabel(scope.row.dystociaFlag) }}</template>
|
|
152
|
</el-table-column>
|
152
|
</el-table-column>
|
|
153
|
</el-table>
|
153
|
</el-table>
|