2022-08-04 13:45:49 +08:00
|
|
|
|
<template>
|
2022-08-04 16:25:49 +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>
|
|
|
|
|
<el-button v-if="$hasPermission('monitoring:workshopsection:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button>
|
|
|
|
|
<el-button v-if="$hasPermission('monitoring:workshopsection:delete')" type="danger" @click="deleteHandle()" :disabled="dataListSelections.length <= 0">批量删除</el-button>
|
|
|
|
|
</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:25:49 +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="productionLineId" 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="enabled" header-align="center" align="center" label="启用状态:0 、停用,1、启用"> </el-table-column>
|
|
|
|
|
<el-table-column prop="sort" header-align="center" align="center" label="排序"> </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 prop="externalCode" 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> -->
|
|
|
|
|
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="500" />
|
2022-08-04 16:25:49 +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>
|
|
|
|
|
<!-- 弹窗, 新增 / 修改 -->
|
|
|
|
|
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
|
|
|
|
|
</div>
|
2022-08-04 13:45:49 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-08-05 10:07:53 +08:00
|
|
|
|
import AddOrUpdate from './workshopSection-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'
|
|
|
|
|
import TableTextComponent from '@/components/base-table/components/detailComponent'
|
|
|
|
|
|
|
|
|
|
const tableConfigs = [
|
|
|
|
|
{ "prop": "id", "name": "id" },
|
|
|
|
|
{ "prop": "productionLineId", "name": "产线ID" },
|
|
|
|
|
{ "prop": "code", "name": "编码" },
|
|
|
|
|
{ "prop": "name", "name": "名称" },
|
|
|
|
|
{ "prop": "description", "name": "描述" },
|
|
|
|
|
{ "prop": "enabled", "name": "启用状态:0 、停用,1、启用" },
|
|
|
|
|
{ "prop": "sort", "name": "排序" },
|
|
|
|
|
{ "prop": "remark", "name": "备注" },
|
|
|
|
|
{ "prop": "valid", "name": "删除标志,是否有效:1 可用 0不可用" },
|
|
|
|
|
{ "prop": "creatorId", "name": "创建人" },
|
|
|
|
|
{ "prop": "creatorName", "name": "创建人姓名" },
|
|
|
|
|
{ "prop": "createTime", "name": "创建时间" },
|
|
|
|
|
{ "prop": "updaterId", "name": "更新人" },
|
|
|
|
|
{ "prop": "updaterName", "name": "更新人姓名" },
|
|
|
|
|
{ "prop": "updateTime", "name": "更新时间" },
|
|
|
|
|
{ "prop": "version", "name": "版本号" },
|
2022-08-08 13:47:56 +08:00
|
|
|
|
{ "prop": "externalCode", "name": "外部系统编码" }, { prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
|
2022-08-08 13:18:17 +08:00
|
|
|
|
]
|
|
|
|
|
|
2022-08-04 16:25:49 +08:00
|
|
|
|
export default {
|
|
|
|
|
data() {
|
2022-08-08 13:47:56 +08:00
|
|
|
|
return {tableConfigs,
|
2022-08-04 16:25:49 +08:00
|
|
|
|
dataForm: {
|
|
|
|
|
key: ''
|
|
|
|
|
},
|
|
|
|
|
dataList: [],
|
|
|
|
|
pageIndex: 1,
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
totalPage: 0,
|
|
|
|
|
dataListLoading: false,
|
|
|
|
|
dataListSelections: [],
|
|
|
|
|
addOrUpdateVisible: false
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {
|
2022-08-08 13:47:56 +08:00
|
|
|
|
AddOrUpdate,BaseTable
|
2022-08-04 16:25:49 +08:00
|
|
|
|
},
|
|
|
|
|
activated() {
|
|
|
|
|
this.getDataList()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 获取数据列表
|
|
|
|
|
getDataList() {
|
|
|
|
|
this.dataListLoading = true
|
|
|
|
|
this.$http({
|
2022-08-05 10:07:53 +08:00
|
|
|
|
url: this.$http.adornUrl('/monitoring/workshopSection/page'),
|
2022-08-04 16:25:49 +08:00
|
|
|
|
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)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 删除
|
|
|
|
|
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({
|
2022-08-05 10:07:53 +08:00
|
|
|
|
url: this.$http.adornUrl('/monitoring/workshopSection'),
|
2022-08-05 09:25:15 +08:00
|
|
|
|
method: 'delete',
|
2022-08-04 16:25:49 +08:00
|
|
|
|
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 13:45:49 +08:00
|
|
|
|
</script>
|