2022-08-19 16:06:51 +08:00
|
|
|
<template>
|
|
|
|
<div class="mod-config">
|
|
|
|
<el-form :inline="true" :model="dataForm" @keyup.enter.native="getDataList()">
|
|
|
|
<el-form-item>
|
2022-08-29 09:36:42 +08:00
|
|
|
<el-input v-model="dataForm.name" placeholder="报表名称" clearable></el-input>
|
2022-08-19 16:06:51 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button @click="getDataList()">查询</el-button>
|
2022-08-22 10:28:58 +08:00
|
|
|
<!-- <el-button v-if="$hasPermission('')" type="primary" @click="addOrUpdateHandle()">新增(跳到设计)</el-button> -->
|
|
|
|
<el-button type="primary" @click="handleAdd()">新增</el-button>
|
2022-08-19 16:06:51 +08:00
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" @operate-event="handleOperations" @refreshDataList="getDataList" />
|
|
|
|
|
|
|
|
<el-pagination
|
|
|
|
@size-change="sizeChangeHandle"
|
|
|
|
@current-change="currentChangeHandle"
|
|
|
|
:current-page="pageIndex"
|
|
|
|
:page-sizes="[10, 20, 50, 100]"
|
|
|
|
:page-size="pageSize"
|
|
|
|
:total="totalPage"
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
>
|
|
|
|
</el-pagination>
|
|
|
|
<!-- 弹窗, 新增 / 修改 -->
|
|
|
|
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" :configs="addOrUpdateConfigs" @refreshDataList="getDataList" @destory-dialog="addOrUpdateVisible = false" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-08-31 11:32:50 +08:00
|
|
|
import { calcMaxHeight } from '@/utils'
|
2022-09-01 09:16:51 +08:00
|
|
|
import { timeFilter } from '@/utils/filters'
|
2022-08-19 16:06:51 +08:00
|
|
|
// import AddOrUpdate from './equipmentPlcConnect-add-or-update'
|
|
|
|
import AddOrUpdate from '@/components/base-dialog/addOrUpdate'
|
|
|
|
import BaseTable from '@/components/base-table'
|
|
|
|
import TableOperateComponent from '@/components/base-table/components/operationComponent'
|
2022-08-19 17:02:38 +08:00
|
|
|
import axios from '@/utils/request'
|
2022-08-19 16:06:51 +08:00
|
|
|
|
|
|
|
const CategoryList = {
|
2022-08-19 17:02:38 +08:00
|
|
|
name: 'CategoryList',
|
2022-08-19 16:06:51 +08:00
|
|
|
props: {
|
2022-08-19 17:02:38 +08:00
|
|
|
injectData: {
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
default: () => ({})
|
2022-08-19 16:06:51 +08:00
|
|
|
}
|
|
|
|
},
|
2022-08-19 17:02:38 +08:00
|
|
|
data() {
|
2022-09-01 08:50:46 +08:00
|
|
|
return { calcMaxHeight, pickedId: null }
|
2022-08-19 17:02:38 +08:00
|
|
|
},
|
|
|
|
mounted() {
|
2022-08-22 10:28:58 +08:00
|
|
|
console.log(this.injectData)
|
2022-08-19 17:02:38 +08:00
|
|
|
this.pickedId = this.injectData[this.injectData.head.prop]
|
|
|
|
},
|
2022-08-19 16:06:51 +08:00
|
|
|
methods: {
|
|
|
|
handleChange(id) {
|
2022-08-19 17:02:38 +08:00
|
|
|
this.pickedId = id
|
2022-08-22 10:28:58 +08:00
|
|
|
this.$emit('emit-data', {
|
|
|
|
type: 'change-category',
|
|
|
|
data: { id: this.injectData.id, fileName: this.injectData.fileName, name: this.injectData.name, url: this.injectData.url, categoryId: id }
|
|
|
|
})
|
2022-08-19 16:06:51 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
render: function(h) {
|
|
|
|
const childOptions = []
|
2022-08-19 17:02:38 +08:00
|
|
|
this.injectData.head.options?.forEach(item => {
|
2022-08-22 10:28:58 +08:00
|
|
|
console.log('item', item.value)
|
|
|
|
childOptions.push(h('el-option', { props: { label: item.label, value: item.value } }, null))
|
2022-08-19 16:06:51 +08:00
|
|
|
})
|
2022-08-22 10:28:58 +08:00
|
|
|
return h('el-select', { props: { value: this.pickedId }, on: { change: this.handleChange } }, childOptions)
|
2022-08-19 16:06:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const addOrUpdateConfigs = {
|
|
|
|
type: 'dialog',
|
2022-08-22 10:28:58 +08:00
|
|
|
infoUrl: '/monitoring/reportSheet',
|
|
|
|
fields: [{ name: 'fileName', label: '报表名称', required: true, span: 24 }],
|
2022-08-19 16:06:51 +08:00
|
|
|
operations: [
|
|
|
|
{ name: 'cancel', url: true, showAlways: true },
|
2022-08-22 10:28:58 +08:00
|
|
|
{ name: 'save', url: '/monitoring/reportSheet', permission: '', showOnEdit: false },
|
|
|
|
{ name: 'update', url: '/monitoring/reportSheet', permission: '', showOnEdit: true }
|
|
|
|
]
|
2022-08-19 16:06:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
addOrUpdateConfigs,
|
2022-08-19 17:02:38 +08:00
|
|
|
tableConfigs: [],
|
2022-08-19 16:06:51 +08:00
|
|
|
dataForm: {
|
2022-08-29 09:36:42 +08:00
|
|
|
name: ''
|
2022-08-19 16:06:51 +08:00
|
|
|
},
|
|
|
|
dataList: [],
|
|
|
|
pageIndex: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
totalPage: 0,
|
|
|
|
dataListLoading: false,
|
|
|
|
dataListSelections: [],
|
|
|
|
addOrUpdateVisible: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
AddOrUpdate,
|
|
|
|
BaseTable
|
|
|
|
},
|
|
|
|
activated() {
|
2022-08-22 10:28:58 +08:00
|
|
|
this.dataList.splice(0)
|
2022-08-19 17:02:38 +08:00
|
|
|
this.getAllCategories()
|
2022-08-19 16:06:51 +08:00
|
|
|
this.getDataList()
|
|
|
|
},
|
2022-08-22 10:28:58 +08:00
|
|
|
computed: {},
|
2022-08-19 16:06:51 +08:00
|
|
|
methods: {
|
2022-08-19 17:02:38 +08:00
|
|
|
getAllCategories() {
|
|
|
|
axios.get(axios.adornUrl('/monitoring/reportSheetCategory/page')).then(({ data: res }) => {
|
|
|
|
if (res.data && res.data.list) {
|
|
|
|
const categories = res.data.list.map(item => ({ label: item.name, value: item.id }))
|
|
|
|
this.tableConfigs = [
|
|
|
|
{ type: 'index', name: '序号' },
|
2022-09-01 09:16:51 +08:00
|
|
|
{ prop: 'createTime', name: '创建时间', filter: timeFilter, width: 200 },
|
2022-08-19 17:02:38 +08:00
|
|
|
{ prop: 'fileName', name: '报表名称' },
|
|
|
|
{ prop: 'category', name: '报表分类', subcomponent: CategoryList, options: categories },
|
2022-08-22 11:26:57 +08:00
|
|
|
{
|
|
|
|
prop: 'operations',
|
|
|
|
name: '操作',
|
|
|
|
fixed: 'right',
|
|
|
|
width: 180,
|
|
|
|
subcomponent: TableOperateComponent,
|
|
|
|
options: [{ name: 'preview', emitField: 'fileName' }, { name: 'design', emitField: 'name' }, 'edit', 'delete']
|
|
|
|
}
|
2022-08-19 17:02:38 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
2022-08-22 10:28:58 +08:00
|
|
|
handleOperations({ type, data }) {
|
2022-08-22 11:26:57 +08:00
|
|
|
console.log('operation data: ', data)
|
2022-08-22 10:28:58 +08:00
|
|
|
let id = data
|
2022-08-19 16:06:51 +08:00
|
|
|
switch (type) {
|
2022-08-22 10:28:58 +08:00
|
|
|
case 'change-category':
|
|
|
|
return this.updateCategory(data)
|
2022-08-19 16:06:51 +08:00
|
|
|
case 'edit':
|
|
|
|
return this.addOrUpdateHandle(id)
|
|
|
|
case 'delete':
|
|
|
|
return this.deleteHandle(id)
|
2022-08-22 11:26:57 +08:00
|
|
|
case 'design':
|
|
|
|
return this.$router.push({
|
|
|
|
name: 'monitoring-reportDesign',
|
|
|
|
query: {
|
|
|
|
// data 的数据是 emitField 的值
|
|
|
|
name: data
|
|
|
|
}
|
|
|
|
})
|
|
|
|
case 'preview':
|
|
|
|
return this.$router.push({
|
|
|
|
name: 'monitoring-reportPreview',
|
|
|
|
query: {
|
|
|
|
name: data
|
|
|
|
}
|
|
|
|
})
|
2022-08-19 16:06:51 +08:00
|
|
|
}
|
|
|
|
},
|
2022-08-22 10:28:58 +08:00
|
|
|
updateCategory({ id, fileName, categoryId }) {
|
|
|
|
this.$http({
|
|
|
|
url: this.$http.adornUrl('/monitoring/reportSheet'),
|
|
|
|
method: 'put',
|
|
|
|
data: {
|
|
|
|
id,
|
|
|
|
fileName,
|
|
|
|
category: categoryId
|
|
|
|
}
|
|
|
|
}).then(({ data: res }) => {
|
|
|
|
this.$message.success('修改成功!')
|
|
|
|
})
|
|
|
|
},
|
2022-08-19 16:06:51 +08:00
|
|
|
// 获取数据列表
|
|
|
|
getDataList() {
|
|
|
|
this.dataListLoading = true
|
2022-08-22 10:28:58 +08:00
|
|
|
|
|
|
|
const queries = {
|
|
|
|
page: this.pageIndex,
|
|
|
|
limit: this.pageSize,
|
2022-08-29 09:36:42 +08:00
|
|
|
name: this.dataForm.name
|
2022-08-22 10:28:58 +08:00
|
|
|
}
|
|
|
|
if (this.$route.query.category) {
|
|
|
|
queries['category'] = this.$route.query.category
|
|
|
|
}
|
2022-08-19 16:06:51 +08:00
|
|
|
this.$http({
|
|
|
|
url: this.$http.adornUrl('/monitoring/reportSheet/page'),
|
|
|
|
method: 'get',
|
2022-08-22 10:28:58 +08:00
|
|
|
params: this.$http.adornParams(queries)
|
2022-08-19 16:06:51 +08:00
|
|
|
}).then(({ data }) => {
|
|
|
|
if (data && data.code === 0) {
|
|
|
|
this.dataList = data.data.list
|
|
|
|
this.totalPage = data.data.total
|
|
|
|
} else {
|
|
|
|
this.dataList = []
|
|
|
|
this.totalPage = 0
|
|
|
|
}
|
|
|
|
this.dataListLoading = false
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// 每页数
|
|
|
|
sizeChangeHandle(val) {
|
|
|
|
this.pageSize = val
|
|
|
|
this.pageIndex = 1
|
|
|
|
this.getDataList()
|
|
|
|
},
|
|
|
|
// 当前页
|
|
|
|
currentChangeHandle(val) {
|
|
|
|
this.pageIndex = val
|
|
|
|
this.getDataList()
|
|
|
|
},
|
|
|
|
// 多选
|
|
|
|
selectionChangeHandle(val) {
|
|
|
|
this.dataListSelections = val
|
|
|
|
},
|
2022-08-22 10:28:58 +08:00
|
|
|
// 新增 - 跳转到设计
|
|
|
|
handleAdd() {
|
|
|
|
this.$router.push({
|
|
|
|
name: 'monitoring-reportDesign'
|
|
|
|
})
|
|
|
|
},
|
2022-08-19 16:06:51 +08:00
|
|
|
addOrUpdateHandle(id) {
|
2022-08-22 10:28:58 +08:00
|
|
|
console.log('edit:', id)
|
2022-08-19 16:06:51 +08:00
|
|
|
this.addOrUpdateVisible = true
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.$refs.addOrUpdate.init(id)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
// 删除
|
|
|
|
deleteHandle(id) {
|
|
|
|
var ids = id
|
|
|
|
? [id]
|
|
|
|
: this.dataListSelections.map(item => {
|
|
|
|
return item.id
|
|
|
|
})
|
|
|
|
this.$confirm(`确定对[id=${ids.join(',')}]进行[${id ? '删除' : '批量删除'}]操作?`, '提示', {
|
|
|
|
confirmButtonText: '确定',
|
|
|
|
cancelButtonText: '取消',
|
|
|
|
type: 'warning'
|
|
|
|
}).then(() => {
|
|
|
|
this.$http({
|
|
|
|
url: this.$http.adornUrl('/monitoring/equipmentPlcConnect'),
|
|
|
|
method: 'delete',
|
|
|
|
data: this.$http.adornData(ids, false, 'raw')
|
|
|
|
}).then(({ data }) => {
|
|
|
|
if (data && data.code === 0) {
|
|
|
|
this.$message({
|
|
|
|
message: '操作成功',
|
|
|
|
type: 'success',
|
|
|
|
duration: 1500,
|
|
|
|
onClose: () => {
|
|
|
|
this.getDataList()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.$message.error(data.msg)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|