| | |
| | | <el-table-column prop="manufacturer" show-overflow-tooltip label="生产厂商" /> |
| | | <el-table-column prop="belongDeptName" show-overflow-tooltip label="所属部门" /> |
| | | <el-table-column prop="charger" show-overflow-tooltip label="负责人" /> |
| | | <el-table-column prop="maintainReminder" show-overflow-tooltip label="维护提醒" /> |
| | | <el-table-column prop="maintainStatus" show-overflow-tooltip label="维护提醒"> |
| | | <template v-slot="{ row }"> |
| | | {{ row.maintainStatus === 1 ? '已维修' : '未维修' }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="planCycleType" show-overflow-tooltip label="维护计划"> |
| | | <template v-slot="{ row }"> |
| | | {{ getPlanCycleLabel(row) }} |