123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <template>
- <el-card shadow="nover">
- <div class="search">
- <el-form :inline="true" ref="queryRef" @keyup.enter="getList(1)">
- <el-form-item label="名称:" prop="keyWord">
- <el-input v-model="params.keyWord" placeholder="请输入名称" clearable size="default" style="width: 240px" />
- </el-form-item>
- <el-form-item>
- <el-button size="default" type="primary" class="ml10" @click="getList(1)">
- <el-icon>
- <ele-Search />
- </el-icon>
- 查询
- </el-button>
- </el-form-item>
- <el-form-item>
- <el-button type="success" @click="addOrEdit()" v-if="productIno">
- <el-icon>
- <ele-FolderAdd />
- </el-icon>
- 新增档案
- </el-button>
- <!-- <el-button type="primary" @click="addOrEdit()" v-if="productIno">
- <el-icon>
- <ele-FolderAdd />
- </el-icon>
- 批量添加
- </el-button> -->
- <!-- <el-button type="danger" @click="addOrEdit()">
- <el-icon>
- <ele-FolderAdd />
- </el-icon>
- 批量删除
- </el-button> -->
- </el-form-item>
- </el-form>
- </div>
- <el-row>
- <el-col :span="6">
- <el-tree
- :data="mergedData"
- :props="defaultProps"
- accordion
- default-expand-all
- @node-click="handleNodeClick"
- style="border: 1px solid #eee; padding: 10px; margin-right: 10px"
- >
- <template #default="{ node, data }">
- <span :style="data.is_type === '2' ? { color: '#409eff' } : {}">
- <el-icon v-if="data.is_type == '2'"><Check /></el-icon>
- {{ node.label }}
- </span>
- </template>
- </el-tree>
- </el-col>
- <el-col :span="18"
- ><el-table :data="tableData" style="width: 100%" row-key="id" v-loading="loading">
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column prop="deviceName" label="设备名称" min-width="100" show-overflow-tooltip></el-table-column>
- <el-table-column prop="deviceKey" label="设备KEY" show-overflow-tooltip></el-table-column>
- <el-table-column prop="deviceNumber" label="设备编码" show-overflow-tooltip></el-table-column>
- <el-table-column prop="deviceCategory" label="设备类型" show-overflow-tooltip></el-table-column>
- <el-table-column prop="installTime" label="安装时间" width="160" align="center"></el-table-column>
- <el-table-column label="操作" width="200" 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()" />
- </el-col>
- </el-row>
- <EditForm ref="editFormRef" @getList="getList(1)"></EditForm>
- </el-card>
- </template>
- <script lang="ts" setup>
- import device from '/@/api/device'
- import { useSearch } from '/@/hooks/useCommon'
- import { Check } 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 { params, tableData, getList, loading } = useSearch<any[]>(device.dev_asset.getList, 'Data', { keyWord: '' })
- getList()
- 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: [],
- }
- 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 del = (row: any) => {
- ElMessageBox.confirm('是否确认删除名称为:"' + row.deviceName + '"的数据项?', '提示', {
- confirmButtonText: '确认',
- cancelButtonText: '取消',
- type: 'warning',
- }).then(async () => {
- await device.dev_asset.delete({ids:row.id})
- ElMessage.success('删除成功')
- getList()
- })
- }
- getCateList()
- </script>
|