<!-- 智能模型分组 - 智能模型信息 --> <script lang="ts" setup name="DeviceGroupTable"> import { ElMessage, ElMessageBox } from 'element-plus' import selectDevice from './selectDevice.vue' import SelectDeviceMultiple from '@/views/tested/MeasurementPlan/plan/components/selectDevice.vue' import { useCheckList } from '@/utils/useCheckList' const $props = defineProps({ data: { type: Array, default: () => ([]), }, }) // 表头显示标题 const columns = ref([ { text: '智能模型名称', value: 'equipmentName', required: true, isSelect: false, // 是否下拉框 isClick: true, }, { text: '型号规格', value: 'model', required: false, isSelect: false, // 是否下拉框 }, { text: '出厂编号', value: 'manufactureNo', required: false, isSelect: false, // 是否下拉框 isClick: false, }, { text: '厂商', value: 'manufacturer', required: false, isSelect: false, // 是否下拉框 }, { text: '负责人', value: 'directorName', required: false, isSelect: false, // 是否下拉框 }, { text: '计量标识', value: 'meterIdentifyName', required: false, isSelect: false, // 是否下拉框 }, { text: '使用状态', value: 'usageStatusName', required: false, isSelect: false, // 是否下拉框 }, { text: '证书有效期', value: 'certificateValid', required: false, isSelect: false, // 是否下拉框 }, { text: '安装位置', value: 'installLocation', required: false, isSelect: false, // 是否下拉框 }, // { // text: '统一编号', // value: 'equipmentNo', // required: false, // isSelect: false, // 是否下拉框 // }, // { // text: '规格型号', // value: 'model', // required: false, // isSelect: false, // 是否下拉框 // }, // { // text: '负责人', // value: 'directorName', // required: false, // isSelect: false, // 是否下拉框 // }, // { // text: '计量标识', // value: 'meterIdentifyName', // required: false, // isSelect: false, // 是否下拉框 // }, // { // text: '证书有效期', // value: 'certificateValid', // required: false, // isSelect: true, // 是否下拉框 // }, // { // text: '安装位置', // value: 'installLocation', // required: false, // isSelect: false, // 是否下拉框 // }, ]) const $route = useRoute() const list = ref<any[]>([]) // 检查数据列表 function checkCertificateList() { return useCheckList(list.value, columns.value as any, '智能模型信息') } // 将列表置为不可编辑状态 function setAllRowReadable() { for (const item of list.value) { item.editable = false } } // 双击行显示输入框 const dblclickRow = (row: any) => { if ($route.path.includes('detail')) { return } setAllRowReadable() row.editable = true } const SelectionList = ref() // 表格选中 const handleSelectionChange = (e: any[]) => { SelectionList.value = e } // 添加行 const addRow = () => { // certificateRef.value.initDialog({ title: '添加' }) if (checkCertificateList()) { setAllRowReadable() list.value.push({ equipmentNo: '', equipmentName: '', model: '', directorName: '', meterIdentify: '', certificateValid: '', installLocation: '', editable: true, }) } } // 删除行 const removeRow = () => { list.value = list.value.filter((item) => { return !SelectionList.value.includes(item) }) } // 点击智能模型名称输入框 const deviceRef = ref() // 选中的行 const selectRow = ref() const select = (text: string, index: any) => { if (text === '智能模型名称') { deviceRef.value.initDialog() selectRow.value = index } } // 选择智能模型 const confirm = (device: any) => { console.log(device, '选中的智能模型') if (device.constructor === Object) { // 判断是否重复 if (list.value.every(item => item.equipmentId !== device.id)) { const row = { ...device, equipmentId: device.id, id: null, groupId: null, } list.value[selectRow.value] = row } else { ElMessage.warning('选择智能模型重复') } } else { device.forEach((item: any) => { if (list.value.every(citem => citem.equipmentId !== item.id)) { list.value.push({ ...item, equipmentId: item.id, id: null, groupId: null, }) } }) } } const initDialog = () => { list.value = $props.data } watch(() => $props.data, (newVal) => { if (newVal) { list.value = newVal } }, { deep: true, // immediate: true, }) initDialog() defineExpose({ list, checkCertificateList, }) const $router = useRouter() const detail = (row: any) => { console.log(row, 'row') $router.push({ path: '/info/detail', query: { row: JSON.stringify(row), id: row.equipmentId, statusName: '全部', equipmentType: '1', }, }) } const deviceMultRef = ref() const addRowBatch = () => { deviceMultRef.value.initDialog(true) } </script> <template> <detail-block-switch title="智能模型信息"> <select-device ref="deviceRef" @add="confirm" /> <select-device-multiple ref="deviceMultRef" @add="confirm" /> <template v-if="!$route.path.includes('detail')" #btns> <!-- <el-button type="primary"> 扫描增加 </el-button> --> <el-button type="primary" @click="addRowBatch"> 批量增加 </el-button> <el-button type="primary" @click="addRow"> 增加行 </el-button> <el-button type="info" @click="removeRow"> 删除行 </el-button> </template> <el-table ref="multipleTableRef" :data="list" style="width: 100%;" border @selection-change="handleSelectionChange" @row-dblclick="dblclickRow" > <el-table-column v-if="!$route.path.includes('detail')" type="selection" width="38" /> <el-table-column align="center" label="序号" width="80" type="index" /> <el-table-column v-for="item in columns" :key="item.value" :prop="item.value" :label="item.text" align="center" > <template #header> <span v-show="item.required && !$route.path.includes('detail')" style="color: red;">*</span><span>{{ item.text }}</span> </template> <template #default="scope"> <span v-if="!scope.row.editable && (item.text !== '智能模型名称' || !$route.path.includes('detail'))">{{ scope.row[item.value] }}</span> <el-input v-if="scope.row.editable && !item.isSelect && item.text === '智能模型名称'" v-model="scope.row[item.value]" :autofocus="true" :placeholder="`${item.text}`" class="input" @focus="select(item.text, scope.$index)" > <template #append> <span @click="select(item.text, scope.$index)">选择</span> </template> </el-input> <el-input v-if="scope.row.editable && !item.isSelect && item.text !== '智能模型名称'" v-model="scope.row[item.value]" :autofocus="true" :placeholder="`${item.text}`" class="input" @focus="select(item.text, scope.$index)" /> <!-- <el-date-picker v-if="scope.row.editable && item.isSelect" v-model="scope.row[item.value]" type="date" format="YYYY-MM-DD" value-format="YYYY-MM-DD HH:mm:ss" :placeholder="`${item.text}`" /> --> <el-button v-if="item.isClick && $route.path.includes('detail')" link type="primary" size="large" @click="detail(scope.row)" > {{ scope.row[item.value] }} </el-button> </template> </el-table-column> </el-table> </detail-block-switch> </template> <style lang="scss" scoped> .el-dialog { width: 700px; } .el-select { width: 100%; } </style>