|
|
|
|
@ -126,10 +126,10 @@ type="danger" plain @click="handleBatchDelete"
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
:label="t('EquipmentManagement.EquipmentLedger.isSchedueld')"
|
|
|
|
|
align="center" prop="isSchedueld" min-width="100px">
|
|
|
|
|
align="center" prop="isScheduled" min-width="100px">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<el-tag :type="Number(scope.row.isSchedueld ?? scope.row.isScheduled) === 1 ? 'success' : 'info'" effect="light">
|
|
|
|
|
{{ formatScheduleLabel(scope.row.isSchedueld ?? scope.row.isScheduled) }}
|
|
|
|
|
<el-tag :type="Number(scope.row.isScheduled ?? scope.row.isSchedueld) === 1 ? 'success' : 'info'" effect="light">
|
|
|
|
|
{{ formatScheduleLabel(scope.row.isScheduled ?? scope.row.isSchedueld) }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|