| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822 |
- <template>
- <Dialog
- v-model="dialogVisible"
- :title="t('deviceList.selectDevice')"
- :style="{ width: dialogWidth }"
- :body-style="{ height: '100%' }"
- class="device-select-dialog"
- @close="handleClose"
- :close-on-click-modal="false">
- <ContentWrap class="dialog-top">
- <el-form
- class="-mb-15px"
- :model="queryParams"
- ref="queryFormRef"
- :inline="true"
- label-width="68px"
- @submit.prevent>
- <el-form-item :label="t('deviceList.deviceName')" prop="deviceName">
- <el-input
- @keyup.enter="handleQuery"
- v-model="queryParams.deviceName"
- :placeholder="t('deviceList.nameHolder')"
- clearable
- class="!w-200px" />
- </el-form-item>
- <el-form-item :label="t('deviceList.deviceCode')" prop="deviceCode">
- <el-input
- @keyup.enter="handleQuery"
- v-model="queryParams.deviceCode"
- :placeholder="t('deviceList.codeHolder')"
- clearable
- class="!w-200px" />
- </el-form-item>
- <el-form-item>
- <el-button @click="handleQuery"
- ><Icon icon="ep:search" class="mr-5px" /> {{ t('deviceList.search') }}</el-button
- >
- <el-button @click="resetQuery"
- ><Icon icon="ep:refresh" class="mr-5px" /> {{ t('deviceList.reset') }}</el-button
- >
- <el-button @click="handleConfirm" class="custom-green-button"
- ><Icon icon="ep:check" class="mr-5px" /> {{ t('workOrderMaterial.confirm') }}</el-button
- >
- </el-form-item>
- </el-form>
- </ContentWrap>
- <ContentWrap class="table-container">
- <div class="table-wrapper">
- <el-table
- v-loading="loading"
- :data="list"
- :stripe="true"
- ref="tableRef"
- :show-overflow-tooltip="false"
- @row-click="handleRowClick"
- :max-height="effectiveTableHeight"
- style="width: 100%; min-width: 100%"
- class="fixed-layout-table">
- <el-table-column width="60" :label="t('workOrderMaterial.select')">
- <template #default="{ row }">
- <el-checkbox
- :model-value="selectedRows.some((item) => item.id === row.id)"
- @click.stop="toggleRow(row)"
- class="no-label-radio" />
- </template>
- </el-table-column>
- <el-table-column
- :label="t('chooseMaintain.deviceCode')"
- align="center"
- prop="deviceCode"
- :min-width="flexColumnMinWidths.deviceCode" />
- <el-table-column
- :label="t('deviceList.deviceName')"
- align="center"
- prop="deviceName"
- width="320"
- show-overflow-tooltip
- class-name="device-name-column">
- <template #default="{ row }">
- <div class="device-name-cell">
- {{ row.deviceName }}
- </div>
- </template>
- </el-table-column>
- <el-table-column
- :label="t('faultForm.deptId')"
- align="center"
- prop="deptId"
- v-if="false" />
- <el-table-column
- :label="t('iotDevice.dept')"
- align="center"
- prop="deptName"
- :min-width="flexColumnMinWidths.deptName" />
- <el-table-column
- :label="t('iotDevice.status')"
- align="center"
- prop="deviceStatus"
- :min-width="flexColumnMinWidths.deviceStatus">
- <template #default="scope">
- <dict-tag :type="DICT_TYPE.PMS_DEVICE_STATUS" :value="scope.row.deviceStatus" />
- </template>
- </el-table-column>
- <el-table-column
- :label="t('deviceInfo.deviceBOM')"
- align="center"
- prop="hasSetMaintenanceBom"
- :min-width="flexColumnMinWidths.createTime">
- <template #header>
- <div class="column-header">
- {{ t('deviceInfo.deviceBOM') }}
- <!-- 添加感叹号图标,并使用 el-tooltip 显示提示 -->
- <el-tooltip effect="dark" content="请选择有保养项的设备" placement="top">
- <el-icon :size="12" color="#e6a23c" style="margin-left: 3px; cursor: pointer">
- <WarningFilled />
- </el-icon>
- </el-tooltip>
- </div>
- </template>
- <template #default="{ row }">
- <div
- :class="{
- 'no-maintenance': !row.hasSetMaintenanceBom,
- 'has-maintenance': row.hasSetMaintenanceBom
- }">
- {{
- row.hasSetMaintenanceBom
- ? t('mainPlan.haveMaintItems')
- : t('mainPlan.noMaintItems')
- }}
- </div>
- </template>
- </el-table-column>
- <!-- <el-table-column
- :label="t('deviceList.createTime')"
- align="center"
- prop="createTime"
- :min-width="flexColumnMinWidths.createTime"
- >
- <template #default="{ row }">
- <div class="date-cell">
- {{ formatDateTime(row.createTime) }}
- </div>
- </template>
- </el-table-column> -->
- </el-table>
- </div>
- <!-- 分页 -->
- <Pagination
- v-if="showPagination"
- :total="total"
- v-model:page="queryParams.pageNo"
- v-model:limit="queryParams.pageSize"
- @pagination="getList" />
- </ContentWrap>
- </Dialog>
- </template>
- <script setup lang="ts">
- import { IotDeviceApi, IotDeviceVO } from '@/api/pms/device'
- import { DICT_TYPE } from '@/utils/dict'
- import { useCache } from '@/hooks/web/useCache'
- import { WarningFilled } from '@element-plus/icons-vue'
- const dialogVisible = ref(false) // 弹窗的是否展示
- const loading = ref(true) // 列表的加载中
- const queryFormRef = ref() // 搜索的表单
- const list = ref<IotDeviceVO[]>([]) // 列表的数据
- const total = ref(0) // 列表的总页数
- const tableRef = ref()
- const selectedRows = ref<IotDeviceVO[]>([]) // 多选数据(存储所有选中行的数组)
- const { t } = useI18n() // 国际化
- // 调整 emit 类型
- const emit = defineEmits<{
- (e: 'choose', value: IotDeviceVO[]): void
- (e: 'close'): void
- }>()
- const queryParams = reactive({
- pageNo: 1,
- pageSize: 10,
- label: '',
- status: undefined,
- deptId: undefined,
- assetClass: undefined,
- deviceName: undefined,
- deviceCode: undefined,
- name: undefined,
- code: undefined
- })
- // 响应式变量
- const dialogWidth = ref('1100px')
- const tableMinHeight = ref(400) // 初始最小高度
- const effectiveTableHeight = ref<number | null>(null) // 单一高度变量
- const dialogTopRef = ref<HTMLElement | null>(null)
- const showPagination = ref(false) // 控制分页显示
- const tableContainerWidth = ref(0) // 表格容器宽度
- // 弹性列最小宽度记录
- const flexColumnMinWidths = reactive({
- deviceCode: 0,
- deviceName: 0,
- deptName: 0,
- deviceStatus: 0,
- createTime: 0
- })
- // 点击整行选中
- const handleRowClick = (row) => {
- toggleRow(row)
- }
- const open = async () => {
- dialogVisible.value = true
- // 重置为初始参数(保留分页设置)
- Object.assign(queryParams, initialQueryParams)
- queryFormRef.value?.resetFields()
- // 初始隐藏分页组件
- showPagination.value = false
- await getList()
- // 动态计算宽度
- await nextTick()
- const viewportWidth = window.innerWidth
- if (viewportWidth < 1200) {
- // 小屏幕自适应
- dialogWidth.value = Math.min(1100, viewportWidth - 40) + 'px'
- } else {
- // 大屏幕保持固定
- dialogWidth.value = '1100px'
- }
- // 确保计算高度的DOM已渲染
- await nextTick()
- calculateTableHeight()
- }
- defineExpose({ open })
- const { wsCache } = useCache()
- // 文本测量工具函数
- const measureText = (
- text: string,
- fontSize: string = '14px',
- fontWeight: string = 'normal',
- extraStyles: Record<string, string> = {}
- ): number => {
- const span = document.createElement('span')
- span.style.visibility = 'hidden'
- span.style.position = 'absolute'
- span.style.fontSize = fontSize
- span.style.fontWeight = fontWeight
- span.style.fontFamily = "'Microsoft YaHei', sans-serif"
- span.style.whiteSpace = 'nowrap'
- span.textContent = text
- // 应用额外样式
- Object.keys(extraStyles).forEach((key) => {
- span.style[key as any] = extraStyles[key]
- })
- document.body.appendChild(span)
- const width = span.offsetWidth
- document.body.removeChild(span)
- return width
- }
- // 自定义日期时间格式化函数
- const formatDateTime = (dateString: string | Date) => {
- if (!dateString) return ''
- const date = new Date(dateString)
- // 确保日期有效
- if (isNaN(date.getTime())) {
- return String(dateString).replace(/[\r\n]/g, '')
- }
- const year = date.getFullYear()
- const month = String(date.getMonth() + 1).padStart(2, '0')
- const day = String(date.getDate()).padStart(2, '0')
- const hours = String(date.getHours()).padStart(2, '0')
- const minutes = String(date.getMinutes()).padStart(2, '0')
- const seconds = String(date.getSeconds()).padStart(2, '0')
- return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`.replace(/[\r\n]/g, '')
- }
- // 列宽计算函数
- const calculateColumnWidths = async () => {
- await nextTick()
- if (!tableRef.value || !list.value.length) return
- const table = tableRef.value
- const columns = table.columns
- const rows = list.value
- // 获取表格容器宽度
- const tableContainer = tableRef.value?.$el?.closest('.table-wrapper')
- if (tableContainer) {
- tableContainerWidth.value = tableContainer.clientWidth
- }
- // 计算各列所需最小宽度
- const columnMinWidths = columns.map((col, colIndex) => {
- if (colIndex === 0) return 60 // 选择列固定宽度
- // 测量表头宽度
- // 测量表头宽度 - 使用表头实际样式
- const headerWidth = col.label
- ? measureText(col.label, '14px', 'bold', {
- padding: '0 12px', // 表头实际内边距
- boxSizing: 'border-box'
- }) + 0 // 安全边距
- : 0
- // 测量单元格内容宽度
- let maxCellWidth = 0
- rows.forEach((row) => {
- let cellValue = ''
- let cellWidth = 0
- if (col.property === 'createTime') {
- // 特殊处理:使用格式化后的日期文本
- cellValue = formatDateTime(row[col.property])
- // 使用完整时间样本确保宽度足够
- const sampleText = '2024-12-31 23:59:59'
- const sampleWidth = measureText(sampleText, '14px', 'normal', {
- padding: '0 12px',
- boxSizing: 'border-box'
- })
- // 时间列额外增加安全边距
- cellWidth =
- Math.max(
- measureText(cellValue, '14px', 'normal', {
- padding: '0 12px',
- boxSizing: 'border-box'
- }),
- sampleWidth
- ) + 0 // 安全边距
- // if (cellWidth > maxCellWidth) maxCellWidth = cellWidth
- } else if (col.property === 'deviceStatus') {
- // 特殊处理:字典标签文本
- const statusText = row.deviceStatusLabel || row[col.property] || ''
- // 模拟el-tag样式进行测量
- cellWidth =
- measureText(statusText, '12px', 'normal', {
- padding: '2px 7px',
- border: '1px solid #dcdfe6',
- borderRadius: '4px',
- display: 'inline-block',
- lineHeight: '1.5',
- boxSizing: 'border-box'
- }) + 0 // 20px安全边距
- } else {
- cellValue = row[col.property] || ''
- cellWidth =
- measureText(cellValue, '14px', 'normal', {
- padding: '0 12px',
- boxSizing: 'border-box'
- }) + 0 // 安全边距
- }
- if (cellWidth > maxCellWidth) maxCellWidth = cellWidth
- })
- // 取标题和内容的最大值,并设置最小宽度
- let minWidth = 100 // 默认最小宽度
- if (col.property === 'createTime') {
- minWidth = 100 // 时间列最小宽度设为180px
- }
- // 取标题和内容的最大值
- return Math.max(headerWidth, maxCellWidth, minWidth)
- })
- // 记录弹性列的最小宽度
- flexColumnMinWidths.deviceCode = columnMinWidths[1]
- flexColumnMinWidths.deviceName = columnMinWidths[2]
- flexColumnMinWidths.deptName = columnMinWidths[4]
- flexColumnMinWidths.deviceStatus = columnMinWidths[5]
- flexColumnMinWidths.createTime = columnMinWidths[6]
- // 触发表格重新布局
- table.doLayout()
- }
- const getList = async () => {
- loading.value = true
- try {
- // const user = wsCache.get(CACHE_KEY.USER)
- // queryParams.deptId = user.user.deptId
- const data = await IotDeviceApi.getIotDevicePage(queryParams)
- list.value = data.list
- total.value = data.total
- // 只有在需要时才显示分页
- showPagination.value = total.value > queryParams.pageSize
- // 数据加载完成后重新计算高度
- await nextTick()
- calculateTableHeight()
- calculateColumnWidths()
- } finally {
- loading.value = false
- // 数据加载完成后计算列宽
- await nextTick()
- calculateColumnWidths()
- }
- }
- // 计算表格最大高度
- const calculateTableHeight = () => {
- nextTick(() => {
- try {
- // 获取对话框实际可用空间
- const dialogBody = document.querySelector('.el-dialog__body')
- if (!dialogBody || !dialogTopRef.value) return
- const dialogBodyRect = dialogBody.getBoundingClientRect()
- // 计算可用高度 = 对话框body高度 - 顶部表单高度 - 内边距
- const dialogPadding = 20 // 上下内边距
- const topHeight = dialogTopRef.value.offsetHeight
- const availableHeight = dialogBodyRect.height - topHeight - dialogPadding
- // 保证最小高度
- let calculatedHeight = Math.max(availableHeight, tableMinHeight.value)
- // 根据记录数量计算所需高度(考虑表头和行高)
- const headerHeight = 40 // 表头高度估算
- const rowHeight = 48 // 行高估算(增加8px用于行间分割线)
- const totalRowsHeight = headerHeight + list.value.length * rowHeight
- // 如果所需高度小于可用高度,则按实际高度显示
- if (totalRowsHeight < availableHeight) {
- calculatedHeight = totalRowsHeight
- }
- // 确保高度合理
- effectiveTableHeight.value = Math.max(calculatedHeight, 300)
- } catch (e) {
- console.error('高度计算错误:', e)
- // 设置回退高度
- effectiveTableHeight.value = 500
- }
- })
- }
- const initialQueryParams = {
- pageNo: 1,
- pageSize: 10,
- label: '',
- status: undefined,
- deptId: undefined,
- assetClass: undefined,
- deviceName: undefined,
- deviceCode: undefined,
- name: undefined,
- code: undefined
- }
- // 多选 切换行选中状态
- const toggleRow = (row) => {
- const index = selectedRows.value.findIndex((item) => item.id === row.id)
- if (index > -1) {
- selectedRows.value.splice(index, 1) // 取消选中
- } else {
- selectedRows.value.push(row) // 选中
- }
- }
- // 关闭时清空选择
- const handleClose = () => {
- tableRef.value?.clearSelection()
- selectedRows.value = []
- emit('close')
- }
- // 确认选择
- const handleConfirm = () => {
- if (selectedRows.value.length === 0) {
- ElMessage.warning('请至少选择一个设备')
- return
- }
- // 检查是否有设备没有保养项
- const hasInvalidDevice = selectedRows.value.some((row) => row.hasSetMaintenanceBom === false)
- if (hasInvalidDevice) {
- // 显示警告信息
- ElMessage.warning({
- message: '请选择有保养项的设备',
- duration: 3000,
- grouping: true
- })
- return // 不关闭弹窗
- }
- emit(
- 'choose',
- selectedRows.value.map((row) => ({
- ...row,
- // 确保返回必要字段
- id: row.id,
- deviceCode: row.deviceCode,
- deviceName: row.deviceName,
- deviceStatus: row.deviceStatus,
- deptName: row.deptName,
- assetProperty: row.assetProperty,
- name: row.name,
- code: row.code
- }))
- )
- dialogVisible.value = false
- handleClose()
- }
- /** 搜索按钮操作 */
- const handleQuery = () => {
- queryParams.pageNo = 1
- getList()
- }
- const choose = (row: DictDataVO) => {
- emit('choose', row)
- dialogVisible.value = false
- }
- /** 重置按钮操作 */
- const resetQuery = () => {
- // 重置为初始参数
- Object.assign(queryParams, initialQueryParams)
- queryFormRef.value?.resetFields()
- handleQuery()
- }
- // 监听列表变化动态调整高度
- watch(list, () => {
- calculateTableHeight()
- if (dialogVisible.value) {
- calculateColumnWidths()
- }
- })
- // 监听窗口大小变化
- onMounted(() => {
- window.addEventListener('resize', calculateTableHeight)
- window.addEventListener('resize', calculateColumnWidths)
- })
- onUnmounted(() => {
- window.removeEventListener('resize', calculateTableHeight)
- window.removeEventListener('resize', calculateColumnWidths)
- })
- </script>
- <style lang="scss" scoped>
- .device-select-dialog {
- display: flex;
- flex-direction: column;
- height: 100%;
- // 增强弹窗高度利用
- ::v-deep(.el-dialog) {
- display: flex;
- max-height: 85vh;
- flex-direction: column;
- .el-dialog__header {
- padding: 15px 20px;
- }
- .el-dialog__body {
- display: flex;
- flex-direction: column;
- flex: 1;
- padding: 15px;
- overflow: hidden;
- }
- }
- }
- /* 列宽度保证 - 防止挤压 */
- .el-table {
- /* 确保所有列头文字居中 */
- ::v-deep(.el-table__header) th > .cell {
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- }
- /* 所有内容列居中对齐 */
- ::v-deep(.el-table__body) td {
- text-align: center !important;
- .cell {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- // 行高增加,提升可读性
- ::v-deep(.el-table__row) {
- height: 40px;
- }
- }
- /* 列宽自适应样式 */
- ::v-deep(.el-table) {
- .el-table__header th {
- padding: 0 !important;
- .cell {
- display: flex;
- height: 100%;
- padding: 0 !important;
- font-weight: bold !important;
- box-sizing: border-box !important;
- justify-content: center;
- align-items: center;
- }
- }
- .el-table__body td {
- padding: 0 !important;
- .cell {
- display: flex;
- height: 100%;
- padding: 0 !important;
- box-sizing: border-box !important;
- justify-content: center;
- align-items: center;
- }
- }
- /* 特定列额外修正 */
- .el-table__cell:nth-child(4), /* 部门列 */
- .el-table__cell:nth-child(5), /* 状态列 */
- .el-table__cell:nth-child(6) /* 时间列 */ {
- .date-cell {
- overflow: visible !important;
- text-overflow: clip !important;
- white-space: nowrap !important;
- justify-content: center;
- }
- }
- }
- /* 固定表格布局 */
- .fixed-layout-table {
- ::v-deep(table) {
- width: auto !important;
- min-width: 100%;
- table-layout: fixed !important; /* 固定列宽 */
- }
- ::v-deep(.el-table__header),
- ::v-deep(.el-table__body) {
- width: auto !important; /* 允许宽度扩展 */
- }
- ::v-deep(.el-table__cell) {
- overflow: visible !important; /* 禁用裁剪 */
- text-overflow: unset !important; /* 移除省略号 */
- white-space: nowrap !important; /* 禁止换行 */
- &:nth-child(4) {
- /* 部门 */
- min-width: v-bind('flexColumnMinWidths.deptName + "px"');
- text-align: center;
- }
- &:nth-child(5) {
- /* 状态 */
- min-width: v-bind('flexColumnMinWidths.deviceStatus + "px"');
- text-align: center;
- }
- &:nth-child(6) {
- /* 创建时间 */
- min-width: v-bind('(flexColumnMinWidths.createTime) + "px"');
- overflow: visible !important;
- text-align: center;
- }
- }
- }
- .dialog-top {
- flex-shrink: 0;
- margin-bottom: 15px;
- .el-form {
- padding: 5px 0; // 减少表单内边距
- }
- }
- .table-container {
- display: flex;
- max-height: 100%;
- min-height: 0;
- flex: 1;
- flex-direction: column;
- .table-wrapper {
- overflow: auto !important;
- .el-table {
- // 表格自带的滚动机制
- ::v-deep(.el-table__body-wrapper) {
- overflow: auto !important;
- }
- }
- }
- }
- .no-maintenance {
- font-weight: bold;
- color: red; /* 无保养项文本为红色 */
- }
- .has-maintenance {
- font-weight: bold;
- color: #67c23a; /* 有保养项文本为淡绿色 */
- }
- .table-wrapper {
- width: 100%;
- overflow: auto hidden !important;
- }
- .no-label-radio .el-radio__label {
- display: none;
- }
- .no-label-radio .el-radio__inner {
- margin-right: 0;
- }
- .fixed-layout-table {
- ::v-deep(.device-name-column) {
- overflow: hidden !important;
- text-overflow: ellipsis !important;
- }
- ::v-deep(.device-name-column .cell) {
- display: block !important;
- overflow: hidden !important;
- text-overflow: ellipsis !important;
- white-space: nowrap !important;
- }
- }
- .device-name-cell {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- /* 自定义淡绿色按钮 */
- :deep(.custom-green-button) {
- color: #67c23a;
- background-color: #e1f3d8;
- border-color: #e1f3d8;
- }
- /* 悬停效果 */
- :deep(.custom-green-button:hover) {
- color: #5daf34;
- background-color: #d1e8c0;
- border-color: #d1e8c0;
- }
- /* 点击效果 */
- :deep(.custom-green-button:active) {
- background-color: #c2dca8;
- border-color: #c2dca8;
- }
- // 分页样式优化 - 弹性位置
- .pagination-container {
- z-index: 10;
- padding: 15px 0 5px;
- margin-top: auto; // 将分页推到底部
- background: white; // 防止内容重叠
- }
- /* 使感叹号图标与标题对齐 */
- .column-header {
- display: flex;
- align-items: center;
- justify-content: center;
- .el-tooltip {
- display: inline-flex;
- margin-left: 3px;
- align-items: center;
- .el-icon {
- font-size: 12px;
- color: #e6a23c;
- cursor: pointer;
- transition: color 0.3s;
- &:hover {
- color: #d48816;
- }
- }
- }
- }
- .el-tooltip {
- cursor: pointer;
- }
- /* 优化图标样式 */
- .el-tooltip .el-icon-warning {
- font-size: 18px;
- color: #e6a23c; /* 使感叹号图标有明显的颜色 */
- }
- </style>
|