|
|
@@ -190,6 +190,7 @@
|
|
|
:row-class-name="getRowClassName"
|
|
|
border
|
|
|
@row-click="handleRowClick"
|
|
|
+ :key="queryParams.pageNo + '-' + queryParams.pageSize"
|
|
|
>
|
|
|
<el-table-column v-if="source === 'pressure'" type="selection" width="40"/>
|
|
|
<el-table-column
|
|
|
@@ -595,7 +596,7 @@ const hasPlanSchedule = (row: EquipBoilerSchedulingVO, type: 'in' | 'out' | 'pre
|
|
|
}
|
|
|
|
|
|
/** 获取单元格样式 */
|
|
|
-const getCellStyle = ({ row, column, rowIndex, columnIndex }) => {
|
|
|
+const getCellStyle = ({ row, column }) => {
|
|
|
// 检查列是否为检验日期列
|
|
|
const checkColumns = ['nextInCheckDate', 'nextOutCheckDate', 'nextPressureCheckDate']
|
|
|
if (checkColumns.includes(column.property)) {
|