yudao-dev/src/views/equipment/base/maintain/Monitor/index.vue

389 lines
8.8 KiB
Vue
Raw Normal View History

<template>
<div class="app-container">
<!-- 搜索工作栏 -->
<SearchBar
:formConfigs="searchBarFormConfig"
ref="search-bar"
@headBtnClick="handleSearchBarBtnClick" />
<!-- 列表 -->
<base-table
:table-props="tableProps"
:page="queryParams.pageNo"
:limit="queryParams.pageSize"
:table-data="list"
@emitFun="handleEmitFun">
<!-- <method-btn
v-if="tableBtn.length"
slot="handleBtn"
label="操作"
:width="120"
:method-list="tableBtn"
@clickBtn="handleTableBtnClick" /> -->
</base-table>
<!-- 分页组件 -->
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
@pagination="getList" />
<!-- 对话框(添加 / 修改) -->
2024-02-24 19:18:11 +08:00
<!-- <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" />
2024-02-24 19:18:11 +08:00
</base-dialog> -->
<add-content
v-if="addContent"
ref="addContent"
@refreshDataList="addContent = false" />
</div>
</template>
<script>
import { publicFormatter } from '@/utils/dict';
2023-12-04 14:14:34 +08:00
import moment from 'moment';
import basicPageMixin from '@/mixins/lb/basicPageMixin';
2023-11-22 14:41:10 +08:00
import { exportMaintainMonitorExcel } from '@/api/equipment/base/maintain/record'
2023-11-24 09:13:56 +08:00
import { parseTime } from '@/utils/ruoyi'
2024-02-24 19:18:11 +08:00
import AddContent from '../PlanConfig/addContent.vue';
const remainBox = {
name: 'RemainBox',
props: ['injectData'],
data() {
return {};
},
computed: {
value() {
return this.injectData[this.injectData.prop] || null;
},
color() {
if (this.value) {
const v = +this.value;
2023-12-04 14:14:34 +08:00
return v < 0 ? 'red' : v >= 0 && v < 2 ? 'yellow' : 'green';
}
return 'unset';
},
},
render: function (h) {
return (
<div
style={`background: ${
this.color
}; position:absolute; inset: 0; padding: 0 10px; display: flex; align-items: center; color: ${
2023-12-04 14:14:34 +08:00
this.color == 'red' ? '#fff' : 'unset'
}`}>
2023-12-04 14:14:34 +08:00
{this.injectData[this.injectData.prop] || ''}
</div>
);
},
};
const btn = {
name: 'tableBtn',
props: ['injectData'],
data() {
return {};
},
methods: {
handleClick() {
2023-11-11 20:49:31 +08:00
this.$emit('emitData', { action: this.injectData.label, value: this.injectData });
},
},
render: function (h) {
return (
<el-button type="text" onClick={this.handleClick}>
2023-11-24 09:13:56 +08:00
{this.injectData.name}
</el-button>
);
},
};
export default {
2024-02-24 19:18:11 +08:00
name: 'Monitor',
components: { AddContent },
mixins: [basicPageMixin],
data() {
return {
2024-02-24 19:18:11 +08:00
addContent: false,
searchBarKeys: ['planId', 'equipmentId'],
tableProps: [
2023-11-24 09:13:56 +08:00
// {
// prop: 'createTime',
// label: '添加时间',
// fixed: true,
// width: 180,
// filter: parseTime(createTime),
// },
2024-02-24 19:18:11 +08:00
{ prop: 'code', label: '保养计划单号' },
{ prop: 'name', label: '保养计划名称' },
{ prop: 'departmentName', label: '部门' },
2023-12-04 14:14:34 +08:00
{ prop: 'lineName', label: '产线名' },
{
2024-02-24 19:18:11 +08:00
prop: 'lastPlanMaintainTime',
label: '上次计划保养时间',
filter: parseTime,
},
{
prop: 'lastMaintainTime',
2024-02-24 19:18:11 +08:00
label: '上次实际保养时间',
2023-11-24 09:13:56 +08:00
filter: parseTime,
},
2024-02-24 19:18:11 +08:00
{ prop: 'nextMaintainTime', label: '下次计划保养时间', filter: parseTime },
{ prop: 'maintainer', label: '计划保养人员' },
// { prop: 'equipmentName', label: '设备名称' },
// { prop: 'equipmentCode', label: '设备编码' },
// { prop: 'maintenancePeriod', label: '保养频率' },
// {
// prop: 'maintainType',
// label: '保养类型',
// filter: publicFormatter(this.DICT_TYPE.MAINTAIN_TYPE),
// },
// { prop: 'opt1', label: '设备保养', name: '操作', subcomponent: btn },
{ prop: 'opt2', label: '保养内容', name: '详情', subcomponent: btn },
{
prop: 'remainDays',
2024-02-24 19:18:11 +08:00
label: '距离下次保养剩余时间(天)',
subcomponent: remainBox,
2024-02-24 19:18:11 +08:00
}
],
searchBarFormConfig: [
{
type: 'select',
2024-02-24 19:18:11 +08:00
label: '保养计划名称',
placeholder: '请选择保养计划',
param: 'planId',
filterable: true,
},
2024-02-24 19:18:11 +08:00
// {
// type: 'select',
// label: '设备名',
// placeholder: '请选择设备',
// param: 'equipmentId',
// filterable: true,
// },
{
type: 'button',
btnName: '查询',
name: 'search',
color: 'primary',
},
{
type: 'separate',
},
{
type: this.$auth.hasPermi('base:quality-inspection-type:export')
? 'button'
: '',
btnName: '导出',
name: 'export',
2023-11-29 16:53:51 +08:00
plain: true,
2023-12-01 15:25:46 +08:00
color: 'primary',
},
],
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNo: 1,
pageSize: 10,
2023-12-14 14:01:19 +08:00
special: false,
equipmentName: null,
createTime: null,
},
// 表单参数
form: {},
};
},
created() {
this.initSearchBar();
this.getList();
},
methods: {
2023-11-22 14:41:10 +08:00
/** 导出按钮操作 */
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(() => { });
},
initSearchBar() {
2023-12-14 14:01:19 +08:00
this.http('/base/core-equipment/page', 'get', {
special: false,
pageNo: 1,
pageSize: 99
}).then(({ data }) => {
this.$set(
this.searchBarFormConfig[1],
'selectOptions',
2023-12-14 14:01:19 +08:00
(data?.list || []).map((item) => ({
name: item.name,
id: item.id,
}))
);
});
this.http('/base/equipment-maintain-plan/page', 'get', {
pageNo: 1,
pageSize: 100,
}).then(({ data }) => {
this.$set(
this.searchBarFormConfig[0],
'selectOptions',
(data?.list || []).map((item) => ({
name: item.name,
id: item.id,
}))
);
});
},
2023-10-31 17:49:39 +08:00
handleEmitFun({action, value}) {
switch (action) {
// 查看详情
case '设备保养':
2023-11-24 09:13:56 +08:00
this.$router.push({ path: '/equipment/base/maintain/record',query: {
addRecord: 1,
row: value
2023-11-11 20:49:31 +08:00
} })
2023-10-31 17:49:39 +08:00
break;
2024-02-24 19:18:11 +08:00
case '保养内容':
// 保养内容
this.addContent = true;
this.$nextTick(() => {
this.$refs.addContent.init(value.id, true);
});
// const queryData = {
// equipmentId: value.equipmentId,
// maintainPlanId: value.id,
// relatePlan: value.lastMaintainTime ? 1 : 2
// }
// this.$router.push({ path: '/equipment/base/maintain/record',query: queryData })
2023-11-11 20:49:31 +08:00
break;
2023-10-31 17:49:39 +08:00
}
},
/** 查询列表 */
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>