| | |
| | | <template> |
| | | <basic-container> |
| | | <div class="chart"> |
| | | <DeviceChart1 :key="updateKey"/> |
| | | <DeviceChart2 :key="updateKey"/> |
| | | <DeviceChart3 :key="updateKey"/> |
| | | <DeviceChart1 :key="updateKey" /> |
| | | <DeviceChart2 :key="updateKey" /> |
| | | <DeviceChart3 :key="updateKey" /> |
| | | </div> |
| | | |
| | | <el-form ref="queryParamsRef" :model="searchParams" class="command-page-history-search"> |
| | |
| | | <div class="command-table-content command-table-content-bg"> |
| | | <el-table class="command-table" :data="list" @selection-change="handleSelectionChange"> |
| | | <el-table-column type="index" show-overflow-tooltip width="64" label="序号" /> |
| | | <el-table-column prop="deviceName" show-overflow-tooltip width="130" label="设备名称" /> |
| | | <el-table-column prop="deviceType" show-overflow-tooltip width="130" label="设备类型"> |
| | | <el-table-column prop="deviceName" show-overflow-tooltip label="设备名称" /> |
| | | <el-table-column prop="deviceType" show-overflow-tooltip width="100" label="设备类型"> |
| | | <template v-slot="{ row }"> |
| | | {{ getDictLabel(row.deviceType, dictObj.deviceType) }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="deviceModel" show-overflow-tooltip width="98" label="型号" /> |
| | | <el-table-column prop="deviceSpecification" show-overflow-tooltip width="112" label="规格" /> |
| | | <el-table-column prop="manufacturer" show-overflow-tooltip width="130" label="生产厂商" /> |
| | | <el-table-column prop="deviceModel" show-overflow-tooltip width="110" label="型号" /> |
| | | <el-table-column prop="deviceSpecification" show-overflow-tooltip width="142" label="规格" /> |
| | | <el-table-column prop="manufacturer" show-overflow-tooltip width="140" label="生产厂商" /> |
| | | <el-table-column prop="createTime" show-overflow-tooltip width="96" label="入库时间"> |
| | | <template v-slot="{ row }"> |
| | | {{ dayjs(row.createTime).format('YYYY-MM-DD') }} |
| | |
| | | </el-table-column> |
| | | <el-table-column prop="source" show-overflow-tooltip width="120" label="来源" /> |
| | | <el-table-column prop="purpose" show-overflow-tooltip width="130" label="用途" /> |
| | | <el-table-column prop="belongDeptName" show-overflow-tooltip width="160" label="所属部门" /> |
| | | <el-table-column prop="charger" show-overflow-tooltip width="100" label="负责人" /> |
| | | <el-table-column prop="yxzt" show-overflow-tooltip width="116" label="运行状态"> |
| | | <el-table-column prop="belongDeptName" show-overflow-tooltip width="130" label="所属部门" /> |
| | | <el-table-column prop="charger" show-overflow-tooltip width="130" label="负责人" /> |
| | | <el-table-column prop="yxzt" show-overflow-tooltip width="96" label="运行状态"> |
| | | <template v-slot="{ row }"> |
| | | {{ getDictLabel(row.status, dictObj.deviceStatus) }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="yxzt" show-overflow-tooltip width="116" label="出库状态"> |
| | | <el-table-column prop="yxzt" show-overflow-tooltip width="96" label="出库状态"> |
| | | <template v-slot="{ row }"> |
| | | {{ getDictLabel(row.trackStatus, trackStatusOptions) }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作" class-name="operation-btns" width="140"> |
| | | <el-table-column prop="maintenanceStatus" show-overflow-tooltip width="96" label="报废预警"> |
| | | <template v-slot="{ row }"> |
| | | <span :style="{ color: row.maintenanceStatus === 0 ? 'inherit' : 'red' }"> |
| | | {{ row.maintenanceStatus === 0 ? '正常' : '临近报废' }} |
| | | </span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="操作" class-name="operation-btns" width="196" fixed="right"> |
| | | <template v-slot="{ row }"> |
| | | <el-link @click="handleView(row)">查看</el-link> |
| | | <el-link @click="handleEdit(row)">编辑</el-link> |
| | |
| | | // 出库状态 |
| | | const trackStatusOptions = ref([ |
| | | { dictKey: 0, dictValue: '未出库' }, |
| | | { dictKey: 1, dictValue: '已出库' } |
| | | { dictKey: 1, dictValue: '已出库' }, |
| | | ]) |
| | | |
| | | const updateKey = ref(0) |
| | |
| | | cancelButtonClass: 'command-message-box-cancel', |
| | | }) |
| | | const payload = { |
| | | deviceId: row.id |
| | | deviceId: row.id, |
| | | } |
| | | await fwDeviceUpdateTrackStatusApi(payload) |
| | | ElMessage.success('归还成功') |
| | |
| | | } |
| | | } |
| | | } |
| | | .danger-text { |
| | | color: red; /* 或者直接用 red */ |
| | | } |
| | | </style> |