mt-yd-ui/src/views/modules/monitoring/equipment.vue

272 lines
7.5 KiB
Vue
Raw Normal View History

2022-08-04 13:45:49 +08:00
<template>
2022-08-04 15:42:36 +08:00
<div class="mod-config">
<el-form :inline="true" :model="dataForm" @keyup.enter.native="getDataList()">
<el-form-item>
<el-input v-model="dataForm.key" placeholder="参数名" clearable></el-input>
</el-form-item>
<el-form-item>
<el-button @click="getDataList()">查询</el-button>
2022-08-16 14:07:33 +08:00
<el-button @click="test()">test</el-button>
2022-08-04 15:42:36 +08:00
<el-button v-if="$hasPermission('monitoring:equipment:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button>
</el-form-item>
</el-form>
2022-08-05 16:03:38 +08:00
2022-08-16 14:07:33 +08:00
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" @operate-event="handleOperations" @refreshDataList="getDataList" />
2022-08-04 15:42:36 +08:00
<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"
2022-08-04 16:13:20 +08:00
></el-pagination>
2022-08-04 15:42:36 +08:00
<!-- 弹窗, 新增 / 修改 -->
2022-08-16 14:07:33 +08:00
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" :configs="addOrUpdateConfigs" @refreshDataList="getDataList" @destory-dialog="addOrUpdateVisible = false" />
2022-08-04 15:42:36 +08:00
</div>
2022-08-04 13:45:49 +08:00
</template>
<script>
2022-08-16 14:07:33 +08:00
import AddOrUpdate from '@/components/base-dialog/addOrUpdate'
// import AddOrUpdate from './equipment-add-or-update'
2022-08-05 16:03:38 +08:00
import BaseTable from '@/components/base-table'
2022-08-08 10:54:23 +08:00
import TableOperateComponent from '@/components/base-table/components/operationComponent'
import TableTextComponent from '@/components/base-table/components/detailComponent'
2022-08-16 14:07:33 +08:00
import moment from 'moment'
import CKEditor from 'ckeditor4-vue'
2022-08-05 16:03:38 +08:00
const tableConfigs = [
2022-08-08 10:07:15 +08:00
{
type: 'index',
2022-08-16 14:07:33 +08:00
name: '序号'
// more: {
// index: function(index) {
// return (index + 1) * 2
// }
// }
2022-08-08 10:07:15 +08:00
},
2022-08-16 14:07:33 +08:00
{ prop: 'createTime', name: '添加时间', filter: val => moment(val).format('YYYY-MM-DD HH:mm:ss') },
2022-08-05 16:03:38 +08:00
{ prop: 'name', name: '设备名称' },
2022-08-08 10:54:23 +08:00
{ prop: 'code', name: '设备编码' },
2022-08-16 14:07:33 +08:00
{ prop: 'equipmentTypeName', name: '设备类型' },
{ prop: 'groupName', name: '设备分组' },
2022-08-05 16:03:38 +08:00
{ prop: 'enName', name: '英文名称' },
{ prop: 'abbr', name: '缩写' },
2022-08-16 14:07:33 +08:00
{ prop: 'details', name: '详情', subcomponent: TableTextComponent, actionName: 'view-detail' },
2022-08-08 13:47:56 +08:00
{ prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
2022-08-05 16:03:38 +08:00
]
2022-08-16 14:07:33 +08:00
const addOrUpdateConfigs = {
type: 'dialog',
infoUrl: '/monitoring/equipment',
fields: [
{ name: 'name', label: '设备名称' },
{ name: 'code', label: '设备编码' },
{ name: 'enName', label: '英文名称' },
{ name: 'abbr', label: '缩写' },
{ name: 'equipmentTypeId', label: '设备类型', type: 'select', options: [] },
{ name: 'groupId', label: '设备分组', required: true, type: 'select', options: [{ label: 1, value: 1 }] },
{ name: 'productionTime', label: '生产日期' },
{ name: 'enterTime', label: '进厂日期' },
{ name: 'tvalue', label: '设备TT值', required: true },
{ name: 'processingTime', label: '单件产品加工时间' },
{ name: 'manufacturer', label: '制造商' },
{ name: 'spec', label: '设备规格' },
{ name: 'remark', label: '备注 ', span: 24 }
],
// TODO: 富文本
// TODO: 设备资料上传
// TODO: 设备图片上传
extraComponents: [
{
name: 'description',
hasModel: true,
label: '功能描述',
fieldType: 'string',
component: CKEditor.component,
props: {
value: 'tests',
config: {
// ckeditor 的配置: https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html
// toolbar: [['Bold']]
}
}
},
{
name: 'files',
label: '上传资料',
fieldType: 'array',
component: () => import('@/components/base-upload'),
props: {
// 上传组件需要的 props
url: '/monitoring/attachment/uploadFileFormData',
extraParams: { typeCode: 'EquipmentTypeFile' },
buttonContent: '点击上传',
tip: '上传文件大小不要超过 2mb (2048kb)'
},
validators: {
size: () => {}, // 上传大小设置
image: () => {} // 上传图片认证
}
},
{
name: 'files',
label: '设备图片',
fieldType: 'array',
component: () => import('@/components/base-upload'),
props: {
// 上传组件需要的 props
url: '/monitoring/attachment/uploadFileFormData',
extraParams: { typeCode: 'EquipmentTypeImage' },
buttonContent: '点击上传',
tip: '上传文件大小不要超过 2mb (2048kb)'
},
validators: {
size: () => {}, // 上传大小设置
image: () => {} // 上传图片认证
}
}
],
operations: [
{ name: 'cancel', showAlways: true },
{ name: 'save', url: '/monitoring/equipmentGroup', permission: '', showOnEdit: false },
{ name: 'update', url: '/monitoring/equipmentGroup', permission: '', showOnEdit: true }
]
}
2022-08-04 15:42:36 +08:00
export default {
data() {
return {
2022-08-05 16:03:38 +08:00
tableConfigs,
2022-08-16 14:07:33 +08:00
addOrUpdateConfigs,
2022-08-04 15:42:36 +08:00
dataForm: {
key: ''
},
dataList: [],
pageIndex: 1,
pageSize: 10,
totalPage: 0,
dataListLoading: false,
dataListSelections: [],
addOrUpdateVisible: false
}
},
components: {
2022-08-05 16:03:38 +08:00
AddOrUpdate,
BaseTable
2022-08-04 15:42:36 +08:00
},
activated() {
console.log('activated')
this.getDataList()
},
methods: {
// 获取数据列表
getDataList() {
this.dataListLoading = true
this.$http({
url: this.$http.adornUrl('/monitoring/equipment/page'),
method: 'get',
params: this.$http.adornParams({
page: this.pageIndex,
limit: this.pageSize,
key: this.dataForm.key
})
}).then(({ data }) => {
if (data && data.code === 0) {
2022-08-04 16:13:20 +08:00
this.dataList = data.data.list
this.totalPage = data.data.total
2022-08-04 15:42:36 +08:00
} 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-16 14:07:33 +08:00
handleOperations({ type, data: id }) {
switch (type) {
case 'view-detail':
// const { name, code } = this.dataList.find(item => item.id === id)
this.$router.push({
name: 'monitoring-equipmentAdd',
params: {
isdetail: true,
equipmentId: id
}
})
break
case 'edit':
return this.addOrUpdateHandle(id)
case 'delete':
return this.deleteHandle(id)
}
},
test() {
2022-08-04 15:42:36 +08:00
this.addOrUpdateVisible = true
this.$nextTick(() => {
2022-08-16 14:07:33 +08:00
this.$refs.addOrUpdate.init()
})
},
// 新增 / 修改
addOrUpdateHandle(id) {
// this.addOrUpdateVisible = true
// this.$nextTick(() => {
// this.$refs.addOrUpdate.init(id)
// })
this.$router.push({
name: 'monitoring-equipmentAdd',
params: {
equipmentId: id
}
2022-08-04 15:42:36 +08:00
})
},
// 删除
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/equipment'),
method: 'delete',
2022-08-11 14:22:23 +08:00
data: this.$http.adornData(ids, false, 'raw')
2022-08-04 15:42:36 +08:00
}).then(({ data }) => {
if (data && data.code === 0) {
this.$message({
message: '操作成功',
type: 'success',
duration: 1500,
onClose: () => {
this.getDataList()
}
})
} else {
this.$message.error(data.msg)
}
})
})
}
}
}
2022-08-04 13:45:49 +08:00
</script>