123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <template>
- <div class="page page-full border bg padding">
- <el-form inline ref="queryRef" @keyup.enter="getList(1)">
- <el-form-item label="名称" prop="keyWord">
- <el-input v-model="params.keyWord" placeholder="请输入名称" clearable style="width: 240px" />
- </el-form-item>
- <el-form-item>
- <el-button type="primary" class="ml10" @click="getList(1)">
- <el-icon>
- <ele-Search />
- </el-icon>
- 查询
- </el-button>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" @click="addOrEdit()" v-auth="'add'" v-if="productIno">
- <el-icon>
- <ele-FolderAdd />
- </el-icon>
- 新增档案
- </el-button>
- <el-button type="info" @click="batchdel()" v-auth="'batchdel'">
- <el-icon>
- <ele-FolderAdd />
- </el-icon>
- 删除
- </el-button>
- </el-form-item>
- </el-form>
- <div class="page page-full-part flex-row gap-4">
- <el-card style="width: 250px;" shadow="nover">
- <el-tree :data="mergedData" :props="defaultProps" accordion default-expand-all @node-click="handleNodeClick" :node-key="'id'" highlight-current>
- <template #default="{ node, data }">
- <div class="custom-tree-node">
- <span class="tree-label">
- <el-icon v-if="data.is_type != '2'">
- <Folder />
- </el-icon>
- <SvgIcon name="iconfont icon-siweidaotu" v-if="data.is_type == '2'"></SvgIcon>
- {{ node.label }}
- </span>
- </div>
- </template>
- </el-tree>
- </el-card>
- <el-card class="flex1" shadow="nover">
- <div class="page page-full">
- <el-table :data="tableData" style="width: 100%" @selection-change="handleSelectionChange" row-key="id" v-loading="loading">
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column prop="deviceName" v-col="'deviceName'" label="设备名称" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column prop="deviceKey" v-col="'deviceKey'" label="设备KEY" show-overflow-tooltip></el-table-column>
- <el-table-column prop="deviceNumber" v-col="'deviceNumber'" label="设备编码" show-overflow-tooltip></el-table-column>
- <el-table-column prop="deviceCategory" v-col="'deviceCategory'" label="设备类型" show-overflow-tooltip></el-table-column>
- <el-table-column prop="installTime" v-col="'installTime'" label="安装时间" width="160" align="center"></el-table-column>
- <el-table-column label="操作" width="120" align="center">
- <template #default="scope">
- <el-button size="small" text type="warning" v-auth="'edit'" @click="addOrEdit(scope.row)">编辑</el-button>
- <el-button size="small" text type="info" v-auth="'del'" @click="del(scope.row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination v-if="params.total" :total="params.total" v-model:page="params.pageNum" v-model:limit="params.pageSize" @pagination="getList()" />
- </div>
- </el-card>
- </div>
- <EditForm ref="editFormRef" @getList="getList(1)"></EditForm>
- </div>
- </template>
- <script lang="ts" setup>
- import device from '/@/api/device'
- import { useSearch } from '/@/hooks/useCommon'
- import { Folder } from '@element-plus/icons-vue'
- import { ElMessageBox, ElMessage } from 'element-plus'
- import EditForm from './edit.vue'
- interface Tree {
- label: string
- children?: Tree[]
- }
- import { ref, onMounted } from 'vue'
- const defaultProps = {
- children: 'children',
- label: 'label',
- }
- const queryRef = ref()
- const productData = ref([])
- const mergedData = ref()
- const cateData = ref()
- const editFormRef = ref()
- const productIno = ref()
- const deviceKeys = ref<number[]>([])
- const { params, tableData, getList, loading } = useSearch<any[]>(device.dev_asset.getList, 'Data', { keyWord: '' })
- getList()
- const handleSelectionChange = (selection: any[]) => {
- deviceKeys.value = selection.map((item) => item.deviceKey);
- };
- onMounted(() => {
- getCateList()
- })
- const addOrEdit = async (row?: any) => {
- if (row) {
- editFormRef.value.open(row, productIno.value)
- return
- } else {
- editFormRef.value.open({}, productIno.value)
- }
- }
- const getCateList = () => {
- device.category.getList({}).then((res: any) => {
- cateData.value = res.category
- device.product.getLists({}).then((res: any) => {
- productData.value = res.product
- mergedData.value = matchProductsToCategories(productData.value, cateData.value)
- })
- })
- }
- const handleNodeClick = (data: any) => {
- if (data.is_type === '2') {
- productIno.value = data
- params.productKey = data.key
- getList()
- } else {
- productIno.value = ''
- }
- }
- const matchProductsToCategories = (productData: any, cateData: any) => {
- const treeData = []
- for (let category of cateData) {
- const treeNode = buildTree(category, productData)
- treeData.push(treeNode)
- }
- return treeData
- }
- const buildTree = (category: any, productData: any) => {
- const treeNode = {
- id: category.id,
- label: category.name,
- key: category.key,
- is_type: '1', // 1是分类
- children: [] as any[],
- }
- if (category.children && category.children.length > 0) {
- for (let child of category.children) {
- const childNode = buildTree(child, productData)
- treeNode.children.push(childNode)
- }
- } else {
- const products = productData.filter((product: any) => product.categoryId === category.id)
- for (let product of products) {
- const productNode = {
- id: product.id,
- label: product.name,
- key: product.key,
- is_type: '2', // 2是产品
- }
- treeNode.children.push(productNode)
- }
- }
- return treeNode
- }
- const batchdel = () => {
- ElMessageBox.confirm('是否确认要批量删除这些数据吗?', '提示', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(async () => {
- await device.dev_asset.delete({ deviceKeys: deviceKeys.value })
- ElMessage.success('删除成功')
- getList()
- })
- }
- const del = (row: any) => {
- ElMessageBox.confirm('是否确认删除名称为:"' + row.deviceName + '"的数据项?', '提示', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(async () => {
- await device.dev_asset.delete({ deviceKeys: [row.deviceKey] })
- ElMessage.success('删除成功')
- getList()
- })
- }
- // getCateList()
- </script>
- <style scoped lang="scss">
- .custom-tree-node {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 14px;
- padding-right: 8px;
- overflow: hidden;
- .tree-label {
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-right: 10px;
- }
- &:hover {
- .tree-options {
- display: block;
- }
- }
- }
- </style>
|