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>
|
2022-09-01 16:45:29 +08:00
|
|
|
<el-input v-model="dataForm.key" :placeholder="$t('factory.name') + ' / ' + $t('factory.code')" clearable></el-input>
|
2022-08-04 16:25:49 +08:00
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
2022-09-01 15:01:25 +08:00
|
|
|
<el-button @click="getDataList()">{{ $t('query') }}</el-button>
|
2022-09-01 16:45:29 +08:00
|
|
|
<el-button v-if="$hasPermission('monitoring:factory:save')" type="primary" @click="addOrUpdateHandle()">{{ $t('add') }}</el-button>
|
2022-08-04 16:25:49 +08:00
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
2022-08-31 11:32:50 +08:00
|
|
|
|
2022-09-01 09:30:44 +08:00
|
|
|
<base-table :data="dataList" :table-head-configs="tableConfigs" :max-height="calcMaxHeight(8)" @operate-event="handleOperations" @refreshDataList="getDataList" />
|
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>
|
|
|
|
<!-- 弹窗, 新增 / 修改 -->
|
2022-08-11 15:23:48 +08:00
|
|
|
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" :configs="addOrUpdateConfigs" @refreshDataList="getDataList" @destory-dialog="addOrUpdateVisible = false" />
|
2022-08-04 16:25:49 +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 15:23:48 +08:00
|
|
|
// import AddOrUpdate from './factory-add-or-update'
|
|
|
|
import AddOrUpdate from '@/components/base-dialog/addOrUpdate'
|
2022-09-01 15:01:25 +08:00
|
|
|
import i18n from '@/i18n'
|
2022-08-08 13:18:17 +08:00
|
|
|
import BaseTable from '@/components/base-table'
|
|
|
|
import TableOperateComponent from '@/components/base-table/components/operationComponent'
|
2022-09-02 10:59:44 +08:00
|
|
|
// import TableTextComponent from '@/components/base-table/components/detailComponent'
|
2022-08-08 13:18:17 +08:00
|
|
|
|
2022-08-08 13:54:23 +08:00
|
|
|
const tableConfigs = [
|
2022-09-07 15:02:05 +08:00
|
|
|
{
|
|
|
|
type: 'index',
|
|
|
|
name: i18n.t('index')
|
|
|
|
},
|
2022-09-01 15:01:25 +08:00
|
|
|
{ prop: 'createTime', name: i18n.t('createTime'), filter: timeFilter },
|
2022-09-02 10:59:44 +08:00
|
|
|
{ prop: 'name', name: i18n.t('factory.name') },
|
|
|
|
{ prop: 'code', name: i18n.t('factory.code') },
|
2022-09-01 15:44:04 +08:00
|
|
|
{ prop: 'address', name: i18n.t('addr') },
|
2022-09-01 15:01:25 +08:00
|
|
|
{ prop: 'remark', name: i18n.t('remark') },
|
|
|
|
{ prop: 'operations', name: i18n.t('handle'), fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
|
2022-08-08 13:18:17 +08:00
|
|
|
]
|
|
|
|
|
2022-08-11 15:23:48 +08:00
|
|
|
const addOrUpdateConfigs = {
|
|
|
|
type: 'dialog',
|
|
|
|
infoUrl: '/monitoring/factory',
|
|
|
|
fields: [
|
|
|
|
'name',
|
|
|
|
{
|
|
|
|
name: 'code',
|
|
|
|
api: '/monitoring/factory/getCode'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'address',
|
2022-09-01 15:44:04 +08:00
|
|
|
label: i18n.t('addr'),
|
2022-09-02 10:59:44 +08:00
|
|
|
placeholder: i18n.t('hints.addr')
|
2022-08-11 15:23:48 +08:00
|
|
|
},
|
|
|
|
'remark'
|
|
|
|
],
|
|
|
|
operations: [
|
|
|
|
{ name: 'reset', url: true, showAlways: true },
|
|
|
|
{ name: 'cancel', url: true, showAlways: true },
|
2022-09-01 13:24:00 +08:00
|
|
|
{ name: 'save', url: '/monitoring/factory', permission: 'monitoring:factory:save', showOnEdit: false },
|
|
|
|
{ name: 'update', url: '/monitoring/factory', permission: 'monitoring:factory:update', showOnEdit: true }
|
2022-08-11 15:23:48 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2022-08-04 16:25:49 +08:00
|
|
|
export default {
|
|
|
|
data() {
|
2022-08-08 13:54:23 +08:00
|
|
|
return {
|
2022-09-01 08:50:46 +08:00
|
|
|
calcMaxHeight,
|
2022-08-11 15:23:48 +08:00
|
|
|
addOrUpdateConfigs,
|
2022-08-08 13:54:23 +08:00
|
|
|
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:54:23 +08:00
|
|
|
AddOrUpdate,
|
|
|
|
BaseTable
|
2022-08-04 16:25:49 +08:00
|
|
|
},
|
|
|
|
activated() {
|
|
|
|
this.getDataList()
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
// 获取数据列表
|
|
|
|
getDataList() {
|
2022-08-11 15:23:48 +08:00
|
|
|
this.addOrUpdateVisible = false
|
2022-08-04 16:25:49 +08:00
|
|
|
this.dataListLoading = true
|
|
|
|
this.$http({
|
|
|
|
url: this.$http.adornUrl('/monitoring/factory/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.totalCount
|
|
|
|
} 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-11 15:23:48 +08:00
|
|
|
handleOperations({ type, data: id }) {
|
|
|
|
switch (type) {
|
|
|
|
case 'edit':
|
|
|
|
return this.addOrUpdateHandle(id)
|
|
|
|
case 'delete':
|
|
|
|
return this.deleteHandle(id)
|
|
|
|
}
|
|
|
|
},
|
2022-08-04 16:25:49 +08:00
|
|
|
// 新增 / 修改
|
|
|
|
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
|
|
|
|
})
|
2022-09-02 10:59:44 +08:00
|
|
|
this.$confirm(`${i18n.t('prompt.info', { handle: id ? i18n.t('delete').toLowerCase() : i18n.t('deleteBatch').toLowerCase() })}`, i18n.t('prompt.title'), {
|
2022-09-01 15:01:25 +08:00
|
|
|
confirmButtonText: i18n.t('confirm'),
|
|
|
|
cancelButtonText: i18n.t('cancel'),
|
2022-08-04 16:25:49 +08:00
|
|
|
type: 'warning'
|
|
|
|
}).then(() => {
|
|
|
|
this.$http({
|
2022-08-05 09:25:15 +08:00
|
|
|
url: this.$http.adornUrl('/monitoring/factory'),
|
|
|
|
method: 'delete',
|
2022-08-11 14:22:23 +08:00
|
|
|
data: this.$http.adornData(ids, false, 'raw')
|
2022-08-04 16:25:49 +08:00
|
|
|
}).then(({ data }) => {
|
|
|
|
if (data && data.code === 0) {
|
|
|
|
this.$message({
|
2022-09-02 09:49:14 +08:00
|
|
|
message: i18n.t('prompt.success'),
|
2022-08-04 16:25:49 +08:00
|
|
|
type: 'success',
|
|
|
|
duration: 1500,
|
|
|
|
onClose: () => {
|
|
|
|
this.getDataList()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.$message.error(data.msg)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-08-04 13:45:49 +08:00
|
|
|
</script>
|