<!--路灯列表--> <template> <app-container> <search-area :need-clear="true" :need-search-more="false" type="seperate" size="small" search-more-type="default" @search="fetchData" @clear="clearInput"> <!--一般查询条件--> <search-item> <el-input v-model.trim="listQuery.keyword" size="small" placeholder="关键词" clearable /> </search-item> <search-item> <el-select v-model="listQuery.lampType" size="small" placeholder="路灯类型" clearable> <el-option v-for="item in typeList" :key="item.id" :label="item.typeName" :value="item.id"/> </el-select> </search-item> <search-item> <el-select v-model="listQuery.streetId" size="small" placeholder="所在道路" filterable clearable> <el-option v-for="item in streetList" :key="item.id" :label="item.streetName" :value="item.id"/> </el-select> </search-item> <search-item> <el-select v-model="listQuery.status" size="small" placeholder="路灯状态" clearable> <el-option v-for="item in statusList" :key="item.value" :label="item.name" :value="item.value"/> </el-select> </search-item> </search-area> <normal-table :data="list" :head="tableOption.head" :query="listQuery" :total="total" :columns="columns" :list-loading="listLoading" :options="tableOption.options" :tools-option="tableOption.toolsOption" size="small" @selectionChange="handleSelectionChange" @change="changePage"> <template slot="btns"> <el-upload :limit="1" :show-file-list="false" :http-request="uploadFile" :file-list="fileList" class="edit_btn" style="display: inline;" action="string" accept=".xls,.xlsx"> <el-button size="small">批量导入</el-button> </el-upload> <el-button size="small" class="edit_btn" @click="batchExport">导出</el-button> <el-button size="small" class="edit_btn" @click="add">新增</el-button> <el-button size="small" class="edit_btn" @click="del">删除</el-button> </template> <template slot="columns"> <el-table-column label="操作" align="center" width="160"> <template slot-scope="scope"> <el-button type="text" size="small" @click="detail(scope.row)">详情</el-button> <el-button type="text" size="small" @click.stop="edit(scope.row)">编辑</el-button> <el-button v-if="hasPerm('/lamp/remoteOn')" type="text" size="small">开灯</el-button> <el-button v-if="hasPerm('/lamp/remoteOff')" type="text" size="small">关灯</el-button> </template> </el-table-column> </template> </normal-table> <edit-Lamp ref="editLamp" @watchChild="fetchData"/> </app-container> </template> <script> import DeptSelect from '@/components/DeptSelect' import EditLamp from '@/views/deviceManage/editLamp' import { getLampList, batchDelLamp, batchExportLamp } from '@/api/system/device' import { getAllLampType } from '@/api/system/base' import { getAllStreet } from '@/api/system/area' import { batchImportLamp } from '@/api/system/fileImport' export default { name: 'BusLamp', components: { EditLamp, DeptSelect }, data() { return { fileList: [], // 批量导入 listQuery: { keyword: '', lampType: '', streetId: '', status: '', offset: 1, limit: 20, sort: '', order: '' }, // 筛选条件 columns: [ { text: '路灯编号', value: 'lampCode', align: 'center', width: 140 }, { text: '路灯名称', value: 'lampName', align: 'center' }, { text: '路灯类型', value: 'lampTypeName', align: 'center' }, // { // text: '电信设备编号', // value: 'teleId', // align: 'center' // }, { text: '所在道路', value: 'streetName', align: 'center' }, { text: '关联控制器', value: 'controllerCode', align: 'center' }, { text: '关联灯杆', value: 'lamppostName', align: 'center' }, { text: '路灯状态', value: 'statusName', align: 'center' } ], // 显示列 list: [], // 列表数据 total: 0, // 数据总数 typeList: [], // 灯杆类型列表 streetList: [], // 道路列表 multipleSelection: [], // 多选选中项 statusList: [{ value: '1', name: '开灯' }, { value: '2', name: '关灯' }, { value: '3', name: '报警' }, { value: '4', name: '离线' }], listLoading: false, // 加载动画 fullscreenLoading: false, // 全屏加载动画 dialogFormVisible: false, tableOption: { head: { show: true, // 是否需要标题栏, text: '数据列表' // 标题名称 }, options: { needIndex: true, // 是否需要序号列 needMultSelect: true }, toolsOption: { selectColumns: false, // 是否需要筛选列 refresh: false // 是否需要刷新按钮 } } // 表格属性 } }, created() { this.fetchLampType()// 获取设备类别 this.fetchStreetList() // 获取道路列表 this.fetchData()// 获取数据 }, methods: { // 批量导入 uploadFile(param) { // 判断文件大小是否符合要求 const _file = param.file const isLt5M = _file.size / 1024 / 1024 < 5 if (!isLt5M) { this.$message.error('请上传5M以下的excel文件') return false } // 全屏加载动画 const loading = this.$loading({ lock: true, text: '导入中,请稍后...', spinner: 'el-icon-loading', background: 'rgba(0, 0, 0, 0.7)' }) // 批量导入上传请求 batchImportLamp(_file).then(res => { loading.close() // 关闭加载动画 if (res.code === 200) { this.$message.success('导入成功') this.fileList = [] this.fetchData() } else { this.$message.error(res.message) } }).catch(err => { loading.close() this.$message.error(err.message) }) this.fileList = [] }, batchExport() { // 全屏加载动画 const loading = this.$loading({ lock: true, text: '下载中,请稍后...', spinner: 'el-icon-loading', background: 'rgba(0, 0, 0, 0.7)' }) batchExportLamp(this.listQuery).then(res => { loading.close() // 关闭加载动画 console.log('download===', res) const blob = new Blob([res.data]) const downloadElement = document.createElement('a') const href = window.URL.createObjectURL(blob) // 创建下载的链接 downloadElement.href = href downloadElement.download = `路灯列表.xlsx` // 下载后文件名 document.body.appendChild(downloadElement) downloadElement.click() // 点击下载 document.body.removeChild(downloadElement) // 下载完成移除元素 window.URL.revokeObjectURL(href) // 释放blob对象 }).catch((res) => { loading.close() this.$message.error(res.message) }) }, // 检查选择情况 checkSelection() { if (this.multipleSelection.length === 0) { return false } else { return true } }, // 重置 clearInput() { this.listQuery = { keyword: '', lampType: '', streetId: '', status: '', offset: 1, limit: 20, sort: '', order: '' } this.fetchData(false) }, // 新增设备 add() { this.dialogFormVisible = true this.$refs.editLamp.initDialog('create', this.dialogFormVisible) }, detail(row) { this.dialogFormVisible = true this.$refs.editLamp.initDialog('detail', this.dialogFormVisible, row) }, // 编辑设备信息 edit(row) { this.dialogFormVisible = true this.$refs.editLamp.initDialog('update', this.dialogFormVisible, row) }, // 删除设备 del() { if (this.checkSelection()) { const devIds = [] this.multipleSelection.forEach(function(value, index) { devIds.push(value.id) }) this.$confirm( '确定要删除所选路灯吗?', '确认操作', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' } ).then(() => { batchDelLamp(devIds).then(response => { if (response.code === 200) { this.$message.success('删除成功') this.fetchData() } }) }) } else { this.$message.error('至少选中一项') } }, // 查询数据 search() { this.fetchData(false) }, // 获取设备列表 fetchData(isNowPage = true) { this.listLoading = true if (!isNowPage) { // 是否显示当前页,否则跳转第一页 this.listQuery.offset = 1 } getLampList(this.listQuery).then(response => { if (response.code === 200) { this.list = response.data.rows this.total = parseInt(response.data.total) } else { this.$message.error(response.message) } this.listLoading = false }) }, fetchLampType() { getAllLampType().then(response => { if (response.code === 200) { this.typeList = response.data } }) }, fetchStreetList() { getAllStreet().then(response => { if (response.code === 200) { this.streetList = response.data } }) }, changePage(val) { if (val && val.size) { this.listQuery.limit = val.size } if (val && val.page) { this.listQuery.offset = val.page } this.fetchData() }, // 多选触发方法 handleSelectionChange(val) { this.multipleSelection = val } } } </script> <style rel="stylesheet/scss" lang="scss" scoped> $tableTitleHeight:46px; .app-container{ margin-bottom:20px } .table{ margin-bottom: 20px; } .pagination-container{ margin-bottom: 50px; } .table-title{ background-color:rgba(243, 243, 243, 1); height: $tableTitleHeight; .title-header{ line-height:$tableTitleHeight; color: #606266; font-size: 15px; i{ margin-left: 5px; margin-right: 5px; } } } .edit_btns{ .edit_btn{ float:right; margin:7px 3px;//为了需要居中显示margin-top和bottom要用$tableTitleHeight减去按钮原高度除以2 } } </style>