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>
|
2022-08-29 09:36:42 +08:00
|
|
|
|
<el-input v-model="dataForm.key" placeholder="产品编号/产品名称" clearable></el-input>
|
2022-08-04 16:20:07 +08:00
|
|
|
|
</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
|
|
|
|
|
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
|
|
|
|
|
2022-08-11 15:23:48 +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-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-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-09-01 09:16:51 +08:00
|
|
|
|
{ prop: 'createTime', name: '添加时间', filter: timeFilter },
|
2022-08-10 14:12:23 +08:00
|
|
|
|
{ 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',
|
2022-08-17 17:02:58 +08:00
|
|
|
|
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-09-01 08:50:46 +08:00
|
|
|
|
calcMaxHeight,
|
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) {
|
2022-08-10 14:12:23 +08:00
|
|
|
|
console.log('id is: ', id)
|
2022-08-04 16:20:07 +08:00
|
|
|
|
var ids = id
|
|
|
|
|
? [id]
|
2022-08-10 14:12:23 +08:00
|
|
|
|
: // ? [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({
|
2022-08-05 09:25:15 +08:00
|
|
|
|
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>
|