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

296 lines
10 KiB
Vue
Raw Normal View History

2022-08-04 13:45:49 +08:00
<template>
2022-08-04 16:20:07 +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-11 14:22:23 +08:00
<!-- <el-button @click="addOrEdit()">测试</el-button> -->
<!-- <el-button v-if="$hasPermission('monitoring:product:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button> -->
<el-button v-if="$hasPermission('monitoring:product:save')" type="primary" @click="addOrEdit()">新增</el-button>
2022-08-04 16:20:07 +08:00
</el-form-item>
</el-form>
2022-08-08 13:47:56 +08:00
<!-- <el-table :data="dataList" border v-loading="dataListLoading" @selection-change="selectionChangeHandle" style="width: 100%;">
2022-08-04 16:20:07 +08:00
<el-table-column type="selection" header-align="center" align="center" width="50"></el-table-column>
<el-table-column prop="id" header-align="center" align="center" label="ID"></el-table-column>
<el-table-column prop="code" header-align="center" align="center" label="编码"></el-table-column>
<el-table-column prop="name" header-align="center" align="center" label="名称"></el-table-column>
<el-table-column prop="description" header-align="center" align="center" label="描述"></el-table-column>
<el-table-column prop="externalCode" header-align="center" align="center" label="外部编码,用于对照外部系统的编码"></el-table-column>
<el-table-column prop="specifications" header-align="center" align="center" label="规格"></el-table-column>
<el-table-column prop="unitDictValue" header-align="center" align="center" label="单位value对应到数据字典label_value"></el-table-column>
<el-table-column prop="area" header-align="center" align="center" label="一单位的面积(平方米)"></el-table-column>
<el-table-column prop="processTime" header-align="center" align="center" label="加工一单位产品需要的时间"></el-table-column>
<el-table-column prop="typeDictValue" header-align="center" align="center" label="产品类型value对应到数据字典label_value"></el-table-column>
<el-table-column prop="enabled" header-align="center" align="center" label="启用状态:0 、停用1、启用"></el-table-column>
<el-table-column prop="remark" header-align="center" align="center" label="备注"></el-table-column>
<el-table-column prop="valid" header-align="center" align="center" label="删除标志,是否有效:1 可用 0不可用"></el-table-column>
<el-table-column prop="creatorId" header-align="center" align="center" label="创建人"></el-table-column>
<el-table-column prop="creatorName" header-align="center" align="center" label="创建人姓名"></el-table-column>
<el-table-column prop="createTime" header-align="center" align="center" label="创建时间"></el-table-column>
<el-table-column prop="updaterId" header-align="center" align="center" label="更新人"></el-table-column>
<el-table-column prop="updaterName" header-align="center" align="center" label="更新人姓名"></el-table-column>
<el-table-column prop="updateTime" header-align="center" align="center" label="更新时间"></el-table-column>
<el-table-column prop="version" header-align="center" align="center" label="版本号"></el-table-column>
<el-table-column fixed="right" header-align="center" align="center" width="150" label="操作">
<template slot-scope="scope">
<el-button type="text" size="small" @click="addOrUpdateHandle(scope.row.id)">修改</el-button>
<el-button type="text" size="small" @click="deleteHandle(scope.row.id)">删除</el-button>
</template>
</el-table-column>
2022-08-08 13:47:56 +08:00
</el-table> -->
2022-08-10 10:47:12 +08:00
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" @operate-event="handleOperations" @refreshDataList="getDataList" />
2022-08-08 13:47:56 +08:00
2022-08-04 16:20:07 +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"
></el-pagination>
<!-- 弹窗, 新增 / 修改 -->
2022-08-11 14:22:23 +08:00
<!-- <add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update> -->
2022-08-09 10:39:33 +08:00
<base-dialog v-if="showbasedialog" ref="basedialog" :configs="addOrUpdateConfigs" @refreshDataList="getDataList" @destory-dialog="showbasedialog = false" />
2022-08-04 16:20:07 +08:00
</div>
2022-08-04 13:45:49 +08:00
</template>
<script>
2022-08-11 14:22:23 +08:00
// import AddOrUpdate from './product-add-or-update'
2022-08-08 13:18:17 +08:00
import BaseTable from '@/components/base-table'
import TableOperateComponent from '@/components/base-table/components/operationComponent'
2022-08-11 14:22:23 +08:00
// import TableTextComponent from '@/components/base-table/components/detailComponent'
2022-08-09 10:39:33 +08:00
import BaseDialog from '@/components/base-dialog/addOrUpdate'
2022-08-10 09:43:17 +08:00
import moment from 'moment'
2022-08-10 10:47:12 +08:00
import dictListMixin from '@/mixins/dictlist-module'
2022-08-10 10:58:21 +08:00
import { dictFilter } from '@/utils/filters'
2022-08-10 09:43:17 +08:00
const UnitDictTypeId = '1557173812109242370'
2022-08-10 10:47:12 +08:00
const ProductTypeDictTypeId = '1557179530308616193'
2022-08-08 13:18:17 +08:00
const tableConfigs = [
2022-08-08 13:47:56 +08:00
{ type: 'index', name: '序号' },
2022-08-10 15:28:19 +08:00
{ prop: 'createTime', name: '添加时间', filter: val => (val ? moment(val).format('YYYY-MM-DD hh:mm:ss') : '-') },
{ prop: 'name', name: '产品名称' },
2022-08-08 13:47:56 +08:00
{ prop: 'code', name: '产品编码' },
{ prop: 'specifications', name: '规格' },
2022-08-10 10:58:21 +08:00
{ prop: 'unitDictValue', name: '单位', filter: dictFilter(UnitDictTypeId) },
2022-08-08 13:47:56 +08:00
{ prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['viewAttr', 'delete'] }
2022-08-08 13:18:17 +08:00
]
2022-08-08 16:22:04 +08:00
const addOrUpdateConfigs = {
type: 'dialog', // dialog | drawer | page
2022-08-10 15:54:41 +08:00
infoUrl: '/monitoring/product',
2022-08-08 16:22:04 +08:00
fields: [
'name',
{
name: 'code',
2022-08-09 16:45:16 +08:00
api: '/monitoring/product/getCode'
2022-08-08 16:22:04 +08:00
},
{
name: 'processTime',
2022-08-09 16:16:34 +08:00
label: '加工时间',
placeholder: '请输入加工时间',
2022-08-11 14:22:23 +08:00
type: 'number',
2022-08-08 16:22:04 +08:00
required: true,
2022-08-09 09:41:30 +08:00
rules: [
{
type: 'number',
trigger: 'blur',
transform: val => Number(val),
message: '必须输入数字'
}
]
2022-08-08 16:22:04 +08:00
},
{
name: 'typeDictValue',
2022-08-09 16:16:34 +08:00
label: '产品类型', // 对于非常见属性最好自己指定label
2022-08-08 16:22:04 +08:00
type: 'select',
options: [
// 动态获取
]
},
{
name: 'unitDictValue',
2022-08-09 16:16:34 +08:00
label: '单位',
2022-08-08 16:22:04 +08:00
type: 'select',
2022-08-10 13:42:46 +08:00
// placeholder: '请选择单位',
2022-08-08 16:22:04 +08:00
options: [
// 动态获取
]
2022-08-12 09:01:44 +08:00
},
{
name: 'area',
label: '单位平方数',
type: 'number',
rules: [{ type: 'number', transform: val => Number(val), message: '请输入数字', trigger: 'blur' }]
},
'specifications',
'remark'
2022-08-08 16:22:04 +08:00
],
operations: [
2022-08-10 16:28:39 +08:00
{ name: 'cancel', url: true, showAlways: true },
{ name: 'save', url: '/monitoring/product', permission: '', showOnEdit: false },
{ name: 'update', url: '/monitoring/product', permission: '', showOnEdit: true }
2022-08-10 15:28:19 +08:00
],
subtable: {
// for i18n
2022-08-10 16:49:42 +08:00
title: '动态属性',
2022-08-11 11:00:43 +08:00
url: '/monitoring/productArrt',
relatedField: 'productId',
2022-08-10 15:28:19 +08:00
tableConfigs: [
{ type: 'index', name: '序号' },
{ prop: 'createTime', name: '添加时间', filter: val => (val ? moment(val).format('YYYY-MM-DD hh:mm:ss') : '-') },
2022-08-11 11:00:43 +08:00
{ prop: 'name', name: '属性名', formField: true, rules: [{ required: true, message: '必填', trigger: 'blur' }] },
2022-08-10 17:01:51 +08:00
{ prop: 'code', name: '属性值', formField: true },
2022-08-10 16:49:42 +08:00
{ prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
2022-08-10 15:28:19 +08:00
]
}
2022-08-08 16:22:04 +08:00
}
2022-08-04 16:20:07 +08:00
export default {
2022-08-10 10:47:12 +08:00
mixins: [dictListMixin],
2022-08-04 16:20:07 +08:00
data() {
2022-08-08 16:22:04 +08:00
return {
2022-08-08 13:47:56 +08:00
tableConfigs,
2022-08-04 16:20:07 +08:00
dataForm: {
key: ''
},
dataList: [],
pageIndex: 1,
pageSize: 10,
totalPage: 0,
dataListLoading: false,
dataListSelections: [],
2022-08-09 10:39:33 +08:00
addOrUpdateVisible: false,
addOrUpdateConfigs,
showbasedialog: false
2022-08-04 16:20:07 +08:00
}
},
components: {
2022-08-11 14:22:23 +08:00
// AddOrUpdate,
2022-08-09 10:39:33 +08:00
BaseTable,
BaseDialog
2022-08-04 16:20:07 +08:00
},
2022-08-10 10:47:12 +08:00
created() {
this.initDictList([UnitDictTypeId, ProductTypeDictTypeId])
this.addOrUpdateConfigs.fields.forEach(item => {
if (item.name) {
if (item.name === 'typeDictValue') {
item.options = this.dictList[ProductTypeDictTypeId]
} else if (item.name === 'unitDictValue') {
item.options = this.dictList[UnitDictTypeId]
}
}
})
},
2022-08-04 16:20:07 +08:00
activated() {
this.getDataList()
},
methods: {
2022-08-09 10:39:33 +08:00
//
2022-08-10 15:54:41 +08:00
addOrEdit(id) {
2022-08-09 10:39:33 +08:00
this.showbasedialog = true
this.$nextTick(() => {
2022-08-10 15:54:41 +08:00
this.$refs.basedialog.init(id)
2022-08-09 10:39:33 +08:00
})
},
2022-08-04 16:20:07 +08:00
// 获取数据列表
getDataList() {
2022-08-10 15:54:41 +08:00
// console.log("after dialog close: ", this.showbasedialog)
this.showbasedialog = false // 清理弹窗
2022-08-04 16:20:07 +08:00
this.dataListLoading = true
this.$http({
url: this.$http.adornUrl('/monitoring/product/page'),
method: 'get',
params: this.$http.adornParams({
page: this.pageIndex,
limit: this.pageSize,
key: this.dataForm.key
})
}).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
},
// 新增 / 修改
addOrUpdateHandle(id) {
this.addOrUpdateVisible = true
this.$nextTick(() => {
this.$refs.addOrUpdate.init(id)
})
},
2022-08-10 10:47:12 +08:00
// 表格操作事件管理
2022-08-10 10:58:21 +08:00
handleOperations({ type, data }) {
switch (type) {
2022-08-10 10:47:12 +08:00
case 'viewAttr': // <== 对照 tableConfig
2022-08-10 15:54:41 +08:00
return this.addOrEdit(data)
2022-08-10 10:47:12 +08:00
case 'delete':
return this.deleteHandle(data)
}
},
2022-08-04 16:20:07 +08:00
// 删除
deleteHandle(id) {
console.log('id is: ', id)
2022-08-04 16:20:07 +08:00
var ids = id
? [id]
: // ? [1556817256347828335]
this.dataListSelections.map(item => {
2022-08-04 16:20:07 +08:00
return item.id
})
this.$confirm(`确定对[id=${ids.join(',')}]进行[${id ? '删除' : '批量删除'}]操作?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$http({
url: this.$http.adornUrl('/monitoring/product'),
method: 'delete',
2022-08-10 14:49:17 +08:00
data: ids
// or : data: this.$http.adornData(ids, false, 'raw')
2022-08-04 16:20:07 +08:00
})
2022-08-10 14:49:17 +08:00
// or: this.$http.delete(this.$http.adornUrl('/monitoring/product'), { data: this.$http.adornData(ids, false) })
.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 16:20:07 +08:00
})
}
}
}
2022-08-04 13:45:49 +08:00
</script>