|
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
|
<!-- <el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
plain
|
|
|
|
|
|
@click="handleSummary"
|
|
|
|
|
|
:loading="loading"
|
|
|
|
|
|
v-hasPermi="['warehouse:WmsImportResult:query']"
|
|
|
|
|
|
>获取维修汇总</el-button>
|
|
|
|
|
|
</el-col> -->
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
|
:data="repairSummaryList"
|
|
|
|
|
|
element-loading-text="正在加载数据..."
|
|
|
|
|
|
border
|
|
|
|
|
|
stripe
|
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-table-column prop="equipment_code" label="设备编号" align="center" width="120">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<span class="equipment-code-link" @click="showRepairRecords(scope.row.equipment_code)">
|
|
|
|
|
|
{{ scope.row.equipment_code }}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column prop="equipment_name" label="设备名称" align="center" min-width="200" />
|
|
|
|
|
|
<el-table-column prop="record_count" label="维修次数" align="center" width="100" />
|
|
|
|
|
|
<el-table-column prop="first_apply_time" label="首次维修时间" align="center" min-width="180" />
|
|
|
|
|
|
<el-table-column prop="last_apply_time" label="最近维修时间" align="center" min-width="180" />
|
|
|
|
|
|
<el-table-column label="距离上次维修天数" align="center" width="150">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<el-tag
|
|
|
|
|
|
:type="getDaysTagType(scope.row.days_since_last_repair)"
|
|
|
|
|
|
effect="dark"
|
|
|
|
|
|
>
|
|
|
|
|
|
{{ scope.row.days_since_last_repair }} 天
|
|
|
|
|
|
</el-tag>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 设备维修记录对话框 -->
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
|
v-model="repairRecordsDialogVisible"
|
|
|
|
|
|
:title="`${selectedEquipmentCode} 维修记录`"
|
|
|
|
|
|
width="80%"
|
|
|
|
|
|
:before-close="handleRepairRecordsClose">
|
|
|
|
|
|
<div v-loading="repairRecordsLoading" class="repair-records-container">
|
|
|
|
|
|
<div v-if="selectedRepairRecords.length > 0">
|
|
|
|
|
|
<el-table
|
|
|
|
|
|
:data="selectedRepairRecords"
|
|
|
|
|
|
stripe
|
|
|
|
|
|
border
|
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
|
max-height="60vh">
|
|
|
|
|
|
<el-table-column prop="id" label="维修编号" width="80" align="center" />
|
|
|
|
|
|
<el-table-column prop="breakdown_name" label="故障名称" width="120" align="center" />
|
|
|
|
|
|
<el-table-column prop="breakdown_description" label="故障描述" min-width="150" show-overflow-tooltip />
|
|
|
|
|
|
<el-table-column prop="repair_method" label="维修方法" min-width="150" show-overflow-tooltip />
|
|
|
|
|
|
<el-table-column prop="apply_time" label="报修时间" width="160" align="center">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<span :class="{ 'recent': isRecent(scope.row.repair_time) }">
|
|
|
|
|
|
{{ scope.row.apply_time || '无' }}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column prop="repair_time" label="维修时间" width="160" align="center">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<span :class="{ 'recent': isRecent(scope.row.repair_time) }">
|
|
|
|
|
|
{{ scope.row.repair_time || '无' }}
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="维修时长" width="100" align="center">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
{{ calculateRepairDuration(scope.row.apply_time, scope.row.repair_time) }}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div v-else-if="!repairRecordsLoading" class="no-records">
|
|
|
|
|
|
暂无维修记录
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<template #footer>
|
|
|
|
|
|
<span class="dialog-footer">
|
|
|
|
|
|
<el-button @click="repairRecordsDialogVisible = false">关闭</el-button>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
|
import { ref, onMounted, watch } from 'vue'
|
|
|
|
|
|
import { API_CONFIG } from "@/config/api"
|
|
|
|
|
|
|
|
|
|
|
|
// 接收父组件传递的props
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
|
selectedEquipmentType: {
|
|
|
|
|
|
type: String,
|
|
|
|
|
|
default: '漆包机'
|
|
|
|
|
|
},
|
|
|
|
|
|
dateRange: {
|
|
|
|
|
|
type: Object,
|
|
|
|
|
|
default: () => ({
|
|
|
|
|
|
start_date: '',
|
|
|
|
|
|
end_date: ''
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const loading = ref(false)
|
|
|
|
|
|
const repairSummaryList = ref([])
|
|
|
|
|
|
|
|
|
|
|
|
// 维修记录对话框相关状态
|
|
|
|
|
|
const repairRecordsDialogVisible = ref(false)
|
|
|
|
|
|
const repairRecordsLoading = ref(false)
|
|
|
|
|
|
const selectedRepairRecords = ref([])
|
|
|
|
|
|
const selectedEquipmentCode = ref('')
|
|
|
|
|
|
|
|
|
|
|
|
// 监听设备类型变化
|
|
|
|
|
|
watch(() => props.selectedEquipmentType, (newVal, oldVal) => {
|
|
|
|
|
|
console.log('设备类型从', oldVal, '变化为', newVal);
|
|
|
|
|
|
// 如果当前是维修汇总组件,则重新获取数据
|
|
|
|
|
|
if (newVal) {
|
|
|
|
|
|
handleSummary();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// 监听日期范围变化
|
|
|
|
|
|
watch(() => props.dateRange, (newVal, oldVal) => {
|
|
|
|
|
|
console.log('日期范围从', oldVal, '变化为', newVal);
|
|
|
|
|
|
// 如果日期范围发生变化,则重新获取数据
|
|
|
|
|
|
if (newVal && newVal.start_date && newVal.end_date) {
|
|
|
|
|
|
handleSummary();
|
|
|
|
|
|
}
|
|
|
|
|
|
}, { deep: true });
|
|
|
|
|
|
|
|
|
|
|
|
// 组件加载时自动获取数据
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
console.log('组件加载,设备类型:', props.selectedEquipmentType);
|
|
|
|
|
|
handleSummary();
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
// 根据天数获取标签类型
|
|
|
|
|
|
const getDaysTagType = (days) => {
|
|
|
|
|
|
if (days > 300) return 'danger'
|
|
|
|
|
|
if (days > 180) return 'warning'
|
|
|
|
|
|
if (days > 90) return 'success'
|
|
|
|
|
|
return 'info'
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取维修汇总数据
|
|
|
|
|
|
function handleSummary() {
|
|
|
|
|
|
console.log('设备类型:', props.selectedEquipmentType);
|
|
|
|
|
|
console.log('日期范围:', props.dateRange);
|
|
|
|
|
|
loading.value = true
|
|
|
|
|
|
|
|
|
|
|
|
// 构建API URL,包含设备类型和日期范围参数
|
|
|
|
|
|
let apiUrl = `${API_CONFIG.BASE_URL}/api/eq-repair/enamelling-repair-summary?equipment_type=${props.selectedEquipmentType}`;
|
|
|
|
|
|
|
|
|
|
|
|
// 如果有日期范围,则添加到URL中
|
|
|
|
|
|
if (props.dateRange && props.dateRange.start_date && props.dateRange.end_date) {
|
|
|
|
|
|
apiUrl += `&start_date=${props.dateRange.start_date}&end_date=${props.dateRange.end_date}`;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fetch(apiUrl)
|
|
|
|
|
|
.then(response => response.json())
|
|
|
|
|
|
.then(data => {
|
|
|
|
|
|
if (data.code === 200 && data.data) {
|
|
|
|
|
|
repairSummaryList.value = data.data
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
.catch(error => {
|
|
|
|
|
|
console.error('维修汇总API调用失败:', error)
|
|
|
|
|
|
})
|
|
|
|
|
|
.finally(() => {
|
|
|
|
|
|
loading.value = false
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 显示设备维修记录
|
|
|
|
|
|
const showRepairRecords = (equipmentCode) => {
|
|
|
|
|
|
selectedEquipmentCode.value = equipmentCode
|
|
|
|
|
|
repairRecordsDialogVisible.value = true
|
|
|
|
|
|
fetchRepairRecords(equipmentCode)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 获取设备维修记录
|
|
|
|
|
|
const fetchRepairRecords = (equipmentCode) => {
|
|
|
|
|
|
repairRecordsLoading.value = true
|
|
|
|
|
|
|
|
|
|
|
|
// 构建API URL
|
|
|
|
|
|
let apiUrl = `${API_CONFIG.BASE_URL}/api/eq-repair/repair-records/${equipmentCode}`;
|
|
|
|
|
|
|
|
|
|
|
|
fetch(apiUrl)
|
|
|
|
|
|
.then(response => response.json())
|
|
|
|
|
|
.then(data => {
|
|
|
|
|
|
if (data.code === 200 && data.data) {
|
|
|
|
|
|
selectedRepairRecords.value = data.data
|
|
|
|
|
|
} else {
|
|
|
|
|
|
selectedRepairRecords.value = []
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
.catch(error => {
|
|
|
|
|
|
console.error('维修记录API调用失败:', error)
|
|
|
|
|
|
selectedRepairRecords.value = []
|
|
|
|
|
|
})
|
|
|
|
|
|
.finally(() => {
|
|
|
|
|
|
repairRecordsLoading.value = false
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 关闭维修记录对话框
|
|
|
|
|
|
const handleRepairRecordsClose = () => {
|
|
|
|
|
|
repairRecordsDialogVisible.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 检查维修日期是否是最近的(30天内)
|
|
|
|
|
|
const isRecent = (repairDate) => {
|
|
|
|
|
|
if (!repairDate) return false
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const repairDateObj = new Date(repairDate)
|
|
|
|
|
|
const currentDate = new Date()
|
|
|
|
|
|
const timeDiff = currentDate - repairDateObj
|
|
|
|
|
|
const daysDiff = Math.ceil(timeDiff / (1000 * 3600 * 24))
|
|
|
|
|
|
|
|
|
|
|
|
return daysDiff <= 30
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
return false
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 计算维修时长
|
|
|
|
|
|
const calculateRepairDuration = (applyTime, repairTime) => {
|
|
|
|
|
|
if (!applyTime || !repairTime) return '无'
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const applyDate = new Date(applyTime)
|
|
|
|
|
|
const repairDate = new Date(repairTime)
|
|
|
|
|
|
const timeDiff = repairDate - applyDate
|
|
|
|
|
|
|
|
|
|
|
|
if (timeDiff < 0) return '无效时间'
|
|
|
|
|
|
|
|
|
|
|
|
const hours = Math.floor(timeDiff / (1000 * 60 * 60))
|
|
|
|
|
|
const minutes = Math.floor((timeDiff % (1000 * 60 * 60)) / (1000 * 60))
|
|
|
|
|
|
|
|
|
|
|
|
if (hours > 24) {
|
|
|
|
|
|
const days = Math.floor(hours / 24)
|
|
|
|
|
|
const remainingHours = hours % 24
|
|
|
|
|
|
return `${days}天${remainingHours}小时`
|
|
|
|
|
|
} else if (hours > 0) {
|
|
|
|
|
|
return `${hours}小时${minutes}分钟`
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return `${minutes}分钟`
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
return '计算错误'
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.app-container {
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mb8 {
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 设备编号链接样式 */
|
|
|
|
|
|
.equipment-code-link {
|
|
|
|
|
|
color: #409EFF;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.equipment-code-link:hover {
|
|
|
|
|
|
color: #66b1ff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 维修记录对话框样式 */
|
|
|
|
|
|
.repair-records-container {
|
|
|
|
|
|
padding: 10px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.no-records {
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
color: #909399;
|
|
|
|
|
|
padding: 20px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 最近维修记录高亮样式 */
|
|
|
|
|
|
.recent {
|
|
|
|
|
|
color: #F56C6C;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|