388 lines
8.6 KiB
Vue
388 lines
8.6 KiB
Vue
<!--
|
|
filename: Monitor.vue
|
|
author: liubin
|
|
date: 2023-12-12 13:54:53
|
|
description:
|
|
-->
|
|
|
|
<template>
|
|
<div class="app-container SpecialEquipmentMaintainMonitor">
|
|
<!-- 搜索工作栏 -->
|
|
<SearchBar
|
|
:formConfigs="searchBarFormConfig"
|
|
ref="search-bar"
|
|
@select-changed="handleSearchBarChange"
|
|
@headBtnClick="handleSearchBarBtnClick" />
|
|
|
|
<!-- 列表 -->
|
|
<base-table
|
|
:table-props="tableProps"
|
|
:page="queryParams.pageNo"
|
|
:limit="queryParams.pageSize"
|
|
:max-height="tableH"
|
|
:table-data="list"
|
|
@emitFun="handleEmitFun"></base-table>
|
|
|
|
<!-- 分页组件 -->
|
|
<pagination
|
|
v-show="total > 0"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNo"
|
|
:limit.sync="queryParams.pageSize"
|
|
@pagination="getList" />
|
|
|
|
<!-- 对话框(添加 / 修改) -->
|
|
<base-dialog
|
|
:dialogTitle="title"
|
|
:dialogVisible="open"
|
|
@close="cancel"
|
|
@cancel="cancel"
|
|
@confirm="submitForm">
|
|
<DialogForm
|
|
v-if="open"
|
|
ref="form"
|
|
v-model="form"
|
|
:has-files="false"
|
|
:rows="rows" />
|
|
</base-dialog>
|
|
|
|
<MonitorDetail
|
|
v-if="monitorDetailVisible"
|
|
ref="monitorDetailDrawer"
|
|
@closed="monitorDetailVisible = false" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
|
import tableHeightMixin from '@/mixins/lb/tableHeightMixin';
|
|
import { exportMaintainMonitorExcel } from '@/api/equipment/base/maintain/record';
|
|
import { parseTime } from '@/utils/ruoyi';
|
|
|
|
import MonitorDetail from './Monitor--detail.vue';
|
|
import { RemainBox, TableBtn } from '@/components/tableInnerComponents';
|
|
|
|
export default {
|
|
name: 'SpecialEquipmentMonitoring',
|
|
components: { MonitorDetail },
|
|
mixins: [basicPageMixin, tableHeightMixin],
|
|
data() {
|
|
return {
|
|
monitorDetailVisible: false,
|
|
searchBarKeys: ['planId'],
|
|
tableProps: [
|
|
{
|
|
prop: 'code',
|
|
label: '保养计划单号',
|
|
minWidth: 118,
|
|
showOverflowtooltip: true,
|
|
},
|
|
{
|
|
prop: 'name',
|
|
label: '保养计划名称',
|
|
minWidth: 118,
|
|
showOverflowtooltip: true,
|
|
},
|
|
{
|
|
prop: 'departmentName',
|
|
label: '部门',
|
|
minWidth: 100,
|
|
showOverflowtooltip: true,
|
|
},
|
|
{
|
|
prop: 'lineName',
|
|
label: '产线名',
|
|
minWidth: 100,
|
|
showOverflowtooltip: true,
|
|
},
|
|
{
|
|
prop: 'lastPlanMaintainTime',
|
|
label: '上次计划保养时间',
|
|
filter: parseTime,
|
|
minWidth: 158,
|
|
showOverflowtooltip: true,
|
|
},
|
|
{
|
|
prop: 'lastMaintainTime',
|
|
label: '上次实际保养时间',
|
|
filter: parseTime,
|
|
minWidth: 158,
|
|
showOverflowtooltip: true,
|
|
},
|
|
{
|
|
prop: 'nextPlanMaintainTime',
|
|
label: '下次计划保养时间',
|
|
filter: parseTime,
|
|
minWidth: 158,
|
|
showOverflowtooltip: true,
|
|
},
|
|
{
|
|
prop: 'maintainer',
|
|
label: '计划保养人员',
|
|
minWidth: 158,
|
|
showOverflowtooltip: true,
|
|
},
|
|
this.$auth.hasPermi('equipment:plan-config:query')
|
|
? {
|
|
prop: 'opt2',
|
|
label: '保养内容',
|
|
entryText: '详情',
|
|
subcomponent: TableBtn,
|
|
width: 100,
|
|
}
|
|
: undefined,
|
|
{
|
|
prop: 'remainDays',
|
|
label: '距离下次保养剩余时间(天)',
|
|
subcomponent: RemainBox,
|
|
minWidth: 210,
|
|
},
|
|
].filter(v => v),
|
|
searchBarFormConfig: [
|
|
{
|
|
type: 'select',
|
|
label: '保养计划',
|
|
placeholder: '请选择保养计划',
|
|
param: 'planId',
|
|
filterable: true,
|
|
},
|
|
{
|
|
type: 'button',
|
|
btnName: '查询',
|
|
name: 'search',
|
|
color: 'primary',
|
|
},
|
|
{
|
|
type: this.$auth.hasPermi('equipment:plan-config:export')
|
|
? 'separate'
|
|
: '',
|
|
},
|
|
{
|
|
type: this.$auth.hasPermi('equipment:plan-config:export')
|
|
? 'button'
|
|
: '',
|
|
btnName: '导出',
|
|
name: 'export',
|
|
plain: true,
|
|
color: 'primary',
|
|
},
|
|
],
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNo: 1,
|
|
pageSize: 20,
|
|
planId: null,
|
|
special: true,
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
allSpecialEquipments: [],
|
|
};
|
|
},
|
|
created() {
|
|
this.initSearchBar();
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
// 处理查询参数
|
|
let params = { ...this.queryParams };
|
|
params.pageNo = undefined;
|
|
params.pageSize = undefined;
|
|
this.$modal
|
|
.confirm('是否确认导出所有设备保养监控数据项?')
|
|
.then(() => {
|
|
this.exportLoading = true;
|
|
return exportMaintainMonitorExcel(params);
|
|
})
|
|
.then((response) => {
|
|
this.$download.excel(response, '设备保养监控.xls');
|
|
this.exportLoading = false;
|
|
})
|
|
.catch(() => {});
|
|
},
|
|
handleSearchBarChange({ param, value }) {
|
|
if ('specialType' === param) {
|
|
if (!value) {
|
|
this.setSearchBarEquipmentList(this.allSpecialEquipments);
|
|
return;
|
|
}
|
|
this.setSearchBarEquipmentList(
|
|
this.allSpecialEquipments.filter((item) => item.specialType == value)
|
|
);
|
|
}
|
|
},
|
|
setSearchBarEquipmentList(eqList) {
|
|
this.$set(
|
|
this.searchBarFormConfig[2],
|
|
'selectOptions',
|
|
eqList.map((item) => ({
|
|
name: item.name,
|
|
id: item.id,
|
|
}))
|
|
);
|
|
},
|
|
initSearchBar() {
|
|
// this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
|
// this.allSpecialEquipments = data.filter((item) => item.special);
|
|
// this.setSearchBarEquipmentList(data.filter((item) => item.special));
|
|
// });
|
|
this.http('/base/equipment-maintain-plan/page', 'get', {
|
|
pageNo: 1,
|
|
pageSize: 100,
|
|
special: true,
|
|
}).then(({ data }) => {
|
|
this.$set(
|
|
this.searchBarFormConfig[0],
|
|
'selectOptions',
|
|
(data?.list || []).map((item) => ({
|
|
name: item.name,
|
|
id: item.id,
|
|
}))
|
|
);
|
|
});
|
|
},
|
|
handleEmitFun({ action, value }) {
|
|
// console.log('handleEmitFun .... ', action, value);
|
|
switch (action) {
|
|
case '保养内容':
|
|
this.monitorDetailVisible = true;
|
|
this.$nextTick(() => {
|
|
console.log('value', value);
|
|
this.$refs.monitorDetailDrawer.show(value);
|
|
});
|
|
break;
|
|
// case '设备保养':
|
|
// this.$router.push({
|
|
// path: '/equipment/base/maintain/record',
|
|
// query: {
|
|
// addRecord: 1,
|
|
// row: value,
|
|
// },
|
|
// });
|
|
// break;
|
|
// case '保养记录':
|
|
// const queryData = {
|
|
// equipmentId: value.equipmentId,
|
|
// maintainPlanId: value.id,
|
|
// relatePlan: value.lastMaintainTime ? 1 : 2,
|
|
// };
|
|
// this.$router.push({
|
|
// path: '/equipment/base/maintain/record',
|
|
// query: queryData,
|
|
// });
|
|
// break;
|
|
}
|
|
},
|
|
/** 查询列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
// 执行查询
|
|
this.http(
|
|
'/base/equipment-maintain-plan/monitor',
|
|
'get',
|
|
this.queryParams
|
|
).then((response) => {
|
|
this.list = response.data.list;
|
|
this.total = response.data.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 取消按钮 */
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
/** 表单重置 */
|
|
reset() {
|
|
this.form = {
|
|
code: null,
|
|
name: null,
|
|
equipmentId: null,
|
|
enabled: null,
|
|
maintenancePeriod: null,
|
|
maintainDuration: null,
|
|
maintainType: null,
|
|
remark: null,
|
|
enabled: 1,
|
|
};
|
|
this.resetForm('form');
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNo = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm('queryForm');
|
|
this.handleQuery();
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = '添加保养计划';
|
|
},
|
|
handleDetail(id) {
|
|
alert('跳转到 保养记录');
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const id = row.id;
|
|
this.info({ id }).then((response) => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = '修改保养计划';
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs['form'].validate((valid) => {
|
|
if (!valid) {
|
|
return;
|
|
}
|
|
// 修改的提交
|
|
if (this.form.id != null) {
|
|
this.put(this.form).then((response) => {
|
|
this.$modal.msgSuccess('修改成功');
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
return;
|
|
}
|
|
// 添加的提交
|
|
this.post(this.form).then((response) => {
|
|
this.$modal.msgSuccess('新增成功');
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const id = row.id;
|
|
this.$modal
|
|
.confirm('是否确认删除设备类型"' + row.name + '"?')
|
|
.then(function () {
|
|
return this.del(id);
|
|
})
|
|
.then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess('删除成功');
|
|
})
|
|
.catch(() => {});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.SpecialEquipmentMaintainMonitor {
|
|
}
|
|
</style>
|