2025-08-01 15:14:24 +08:00
|
|
|
<template>
|
|
|
|
<div class="equipment-search-container">
|
|
|
|
<a-card class="search-card" :bordered="false">
|
|
|
|
<template #title>
|
|
|
|
<div class="search-title">
|
|
|
|
<IconSearch />
|
|
|
|
<span>设备搜索</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2025-08-01 16:24:33 +08:00
|
|
|
<a-form layout="inline" :model="searchForm">
|
2025-08-01 15:14:24 +08:00
|
|
|
<div class="search-row">
|
|
|
|
<a-form-item label="设备名称">
|
|
|
|
<a-input
|
2025-08-01 16:24:33 +08:00
|
|
|
v-model="searchForm.equipmentName"
|
2025-08-01 15:14:24 +08:00
|
|
|
placeholder="请输入设备名称"
|
|
|
|
allow-clear
|
|
|
|
style="width: 200px"
|
2025-08-01 16:24:33 +08:00
|
|
|
@input="debouncedSearch"
|
2025-08-01 15:14:24 +08:00
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="设备类型">
|
|
|
|
<a-select
|
2025-08-01 16:24:33 +08:00
|
|
|
v-model="searchForm.equipmentType"
|
2025-08-01 15:14:24 +08:00
|
|
|
:options="equipmentTypeOptions"
|
|
|
|
placeholder="请选择设备类型"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
2025-08-01 16:24:33 +08:00
|
|
|
@change="debouncedSearch"
|
2025-08-01 15:14:24 +08:00
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="设备状态">
|
|
|
|
<a-select
|
2025-08-01 16:24:33 +08:00
|
|
|
v-model="searchForm.equipmentStatus"
|
2025-08-01 15:14:24 +08:00
|
|
|
:options="equipmentStatusOptions"
|
|
|
|
placeholder="请选择设备状态"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
2025-08-01 16:24:33 +08:00
|
|
|
@change="debouncedSearch"
|
2025-08-01 15:14:24 +08:00
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="位置状态">
|
|
|
|
<a-select
|
2025-08-01 16:24:33 +08:00
|
|
|
v-model="searchForm.locationStatus"
|
2025-08-01 15:14:24 +08:00
|
|
|
:options="locationStatusOptions"
|
|
|
|
placeholder="请选择位置状态"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
2025-08-01 16:24:33 +08:00
|
|
|
@change="debouncedSearch"
|
2025-08-01 15:14:24 +08:00
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="search-row">
|
|
|
|
<a-form-item label="健康状态">
|
|
|
|
<a-select
|
2025-08-01 16:24:33 +08:00
|
|
|
v-model="searchForm.healthStatus"
|
2025-08-01 15:14:24 +08:00
|
|
|
:options="healthStatusOptions"
|
|
|
|
placeholder="请选择健康状态"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
2025-08-01 16:24:33 +08:00
|
|
|
@change="debouncedSearch"
|
2025-08-01 15:14:24 +08:00
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="使用部门/人">
|
|
|
|
<a-input
|
2025-08-01 16:24:33 +08:00
|
|
|
v-model="searchForm.usingDepartment"
|
2025-08-01 15:14:24 +08:00
|
|
|
placeholder="请输入使用部门/人"
|
|
|
|
allow-clear
|
|
|
|
style="width: 200px"
|
2025-08-01 16:24:33 +08:00
|
|
|
@input="debouncedSearch"
|
2025-08-01 15:14:24 +08:00
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="发票">
|
|
|
|
<a-input
|
2025-08-01 16:24:33 +08:00
|
|
|
v-model="searchForm.invoice"
|
2025-08-01 15:14:24 +08:00
|
|
|
placeholder="请输入发票"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
2025-08-01 16:24:33 +08:00
|
|
|
@input="debouncedSearch"
|
2025-08-01 15:14:24 +08:00
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="条码">
|
|
|
|
<a-input
|
2025-08-01 16:24:33 +08:00
|
|
|
v-model="searchForm.barcode"
|
2025-08-01 15:14:24 +08:00
|
|
|
placeholder="请输入条码"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
2025-08-01 16:24:33 +08:00
|
|
|
@input="debouncedSearch"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="search-row">
|
|
|
|
<a-form-item label="序列号">
|
|
|
|
<a-input
|
|
|
|
v-model="searchForm.equipmentSn"
|
|
|
|
placeholder="请输入序列号"
|
|
|
|
allow-clear
|
|
|
|
style="width: 200px"
|
|
|
|
@input="debouncedSearch"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="资产编号">
|
|
|
|
<a-input
|
|
|
|
v-model="searchForm.assetCode"
|
|
|
|
placeholder="请输入资产编号"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
|
|
|
@input="debouncedSearch"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="品牌">
|
|
|
|
<a-input
|
|
|
|
v-model="searchForm.brand"
|
|
|
|
placeholder="请输入品牌"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
|
|
|
@input="debouncedSearch"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="负责人">
|
|
|
|
<a-input
|
|
|
|
v-model="searchForm.responsiblePerson"
|
|
|
|
placeholder="请输入负责人"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
|
|
|
@input="debouncedSearch"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="search-row">
|
|
|
|
<a-form-item label="使用状态">
|
|
|
|
<a-select
|
|
|
|
v-model="searchForm.useStatus"
|
|
|
|
:options="useStatusOptions"
|
|
|
|
placeholder="请选择使用状态"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
|
|
|
@change="debouncedSearch"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="设备型号">
|
|
|
|
<a-input
|
|
|
|
v-model="searchForm.equipmentModel"
|
|
|
|
placeholder="请输入设备型号"
|
|
|
|
allow-clear
|
|
|
|
style="width: 200px"
|
|
|
|
@input="debouncedSearch"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="物理位置">
|
|
|
|
<a-input
|
|
|
|
v-model="searchForm.physicalLocation"
|
|
|
|
placeholder="请输入物理位置"
|
|
|
|
allow-clear
|
|
|
|
style="width: 200px"
|
|
|
|
@input="debouncedSearch"
|
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
|
|
|
|
<a-form-item label="供应商">
|
|
|
|
<a-input
|
|
|
|
v-model="searchForm.supplierName"
|
|
|
|
placeholder="请输入供应商"
|
|
|
|
allow-clear
|
|
|
|
style="width: 150px"
|
|
|
|
@input="debouncedSearch"
|
2025-08-01 15:14:24 +08:00
|
|
|
/>
|
|
|
|
</a-form-item>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="search-actions">
|
2025-08-01 16:24:33 +08:00
|
|
|
<a-button type="primary" :loading="loading" @click="handleSearch">
|
2025-08-01 15:14:24 +08:00
|
|
|
<template #icon>
|
|
|
|
<IconSearch />
|
|
|
|
</template>
|
|
|
|
搜索
|
|
|
|
</a-button>
|
|
|
|
<a-button style="margin-left: 8px" @click="handleReset">
|
|
|
|
<template #icon>
|
|
|
|
<IconRefresh />
|
|
|
|
</template>
|
|
|
|
重置
|
|
|
|
</a-button>
|
|
|
|
</div>
|
|
|
|
</a-form>
|
|
|
|
</a-card>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { reactive } from 'vue'
|
|
|
|
import { IconRefresh, IconSearch } from '@arco-design/web-vue/es/icon'
|
|
|
|
import type { EquipmentPageQuery } from '@/types/equipment.d'
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
loading?: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
// eslint-disable-next-line unused-imports/no-unused-vars
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
|
|
loading: false,
|
|
|
|
})
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
search: [params: EquipmentPageQuery]
|
|
|
|
reset: []
|
|
|
|
}>()
|
|
|
|
|
2025-08-01 16:24:33 +08:00
|
|
|
// 防抖函数
|
|
|
|
// eslint-disable-next-line ts/no-unsafe-function-type
|
|
|
|
const debounce = (func: Function, delay: number) => {
|
|
|
|
let timeoutId: NodeJS.Timeout
|
|
|
|
return (...args: any[]) => {
|
|
|
|
clearTimeout(timeoutId)
|
|
|
|
// eslint-disable-next-line prefer-spread
|
|
|
|
timeoutId = setTimeout(() => func.apply(null, args), delay)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-08-01 15:14:24 +08:00
|
|
|
const searchForm = reactive<EquipmentPageQuery>({
|
|
|
|
equipmentName: '',
|
|
|
|
equipmentType: '',
|
|
|
|
equipmentStatus: '',
|
|
|
|
locationStatus: '',
|
|
|
|
healthStatus: '',
|
|
|
|
usingDepartment: '',
|
|
|
|
invoice: '',
|
|
|
|
barcode: '',
|
|
|
|
importer: '',
|
2025-08-01 16:24:33 +08:00
|
|
|
equipmentSn: '',
|
|
|
|
assetCode: '',
|
|
|
|
brand: '',
|
|
|
|
responsiblePerson: '',
|
|
|
|
useStatus: '',
|
|
|
|
equipmentModel: '',
|
|
|
|
specification: '',
|
|
|
|
physicalLocation: '',
|
|
|
|
supplierName: '',
|
|
|
|
maintenancePerson: '',
|
|
|
|
inventoryBarcode: '',
|
|
|
|
assetRemark: '',
|
2025-08-01 15:14:24 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
const equipmentTypeOptions = [
|
|
|
|
{ label: '计算机设备', value: 'computer' },
|
|
|
|
{ label: '网络设备', value: 'network' },
|
|
|
|
{ label: '存储设备', value: 'storage' },
|
|
|
|
{ label: '安全设备', value: 'security' },
|
|
|
|
{ label: '办公设备', value: 'office' },
|
|
|
|
{ label: '其他设备', value: 'other' },
|
|
|
|
]
|
|
|
|
|
|
|
|
const equipmentStatusOptions = [
|
|
|
|
{ label: '正常', value: 'normal' },
|
|
|
|
{ label: '维修中', value: 'repair' },
|
|
|
|
{ label: '报废', value: 'scrap' },
|
|
|
|
{ label: '闲置', value: 'idle' },
|
|
|
|
]
|
|
|
|
|
|
|
|
const locationStatusOptions = [
|
|
|
|
{ label: '在库', value: 'in_stock' },
|
|
|
|
{ label: '已分配', value: 'allocated' },
|
|
|
|
{ label: '外借中', value: 'borrowed' },
|
|
|
|
{ label: '维修中', value: 'repair' },
|
|
|
|
{ label: '已报废', value: 'scrapped' },
|
|
|
|
]
|
|
|
|
|
|
|
|
const healthStatusOptions = [
|
|
|
|
{ label: '良好', value: 'good' },
|
|
|
|
{ label: '一般', value: 'normal' },
|
|
|
|
{ label: '较差', value: 'poor' },
|
|
|
|
{ label: '故障', value: 'fault' },
|
|
|
|
]
|
|
|
|
|
2025-08-01 16:24:33 +08:00
|
|
|
const useStatusOptions = [
|
|
|
|
{ label: '空闲中', value: '0' },
|
|
|
|
{ label: '使用中', value: '1' },
|
|
|
|
]
|
|
|
|
|
|
|
|
// 防抖搜索函数
|
|
|
|
const debouncedSearch = debounce(() => {
|
|
|
|
console.log('🔍 EquipmentSearch - 防抖搜索触发')
|
|
|
|
console.log('🔍 EquipmentSearch - 搜索表单数据:', searchForm)
|
|
|
|
emit('search', { ...searchForm })
|
|
|
|
}, 300)
|
|
|
|
|
2025-08-01 15:14:24 +08:00
|
|
|
const handleSearch = () => {
|
2025-08-01 16:24:33 +08:00
|
|
|
console.log('🔍 EquipmentSearch - 搜索按钮被点击')
|
|
|
|
console.log('🔍 EquipmentSearch - 搜索表单数据:', searchForm)
|
|
|
|
console.log('🔍 EquipmentSearch - 发送的搜索参数:', { ...searchForm })
|
2025-08-01 15:14:24 +08:00
|
|
|
emit('search', { ...searchForm })
|
|
|
|
}
|
|
|
|
|
|
|
|
const handleReset = () => {
|
2025-08-01 16:24:33 +08:00
|
|
|
console.log('🔄 EquipmentSearch - 重置按钮被点击')
|
|
|
|
console.log('🔄 EquipmentSearch - 重置前的表单数据:', { ...searchForm })
|
2025-08-01 15:14:24 +08:00
|
|
|
Object.keys(searchForm).forEach((key) => {
|
|
|
|
searchForm[key as keyof EquipmentPageQuery] = '' as any
|
|
|
|
})
|
2025-08-01 16:24:33 +08:00
|
|
|
console.log('🔄 EquipmentSearch - 重置后的表单数据:', { ...searchForm })
|
2025-08-01 15:14:24 +08:00
|
|
|
emit('reset')
|
|
|
|
}
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
reset: handleReset,
|
|
|
|
getSearchForm: () => ({ ...searchForm }),
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.equipment-search-container {
|
|
|
|
.search-card {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
|
|
.search-title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 8px;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-row {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 16px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
|
|
.arco-form-item {
|
|
|
|
margin-bottom: 0;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.search-actions {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 16px;
|
|
|
|
padding-top: 16px;
|
|
|
|
border-top: 1px solid #f0f0f0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|