2023-12-12 13:57:02 +08:00
|
|
|
|
<!--
|
|
|
|
|
filename: Content.vue
|
|
|
|
|
author: liubin
|
|
|
|
|
date: 2023-12-12 13:53:22
|
2024-02-22 16:19:02 +08:00
|
|
|
|
description: 巡检单设置
|
2023-12-12 13:57:02 +08:00
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<template>
|
2024-02-22 16:19:02 +08:00
|
|
|
|
<div class="app-container SpecialEquipmentCheckConfig">
|
2023-12-18 16:32:16 +08:00
|
|
|
|
<!-- 搜索工作栏 -->
|
|
|
|
|
<SearchBar
|
|
|
|
|
:formConfigs="searchBarFormConfig"
|
|
|
|
|
ref="search-bar"
|
2024-02-22 16:19:02 +08:00
|
|
|
|
@select-changed="handleSearchBarChange"
|
2023-12-18 16:32:16 +08:00
|
|
|
|
@headBtnClick="handleSearchBarBtnClick" />
|
|
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
2024-02-22 16:52:07 +08:00
|
|
|
|
<!-- <base-table
|
2023-12-18 16:32:16 +08:00
|
|
|
|
:table-props="tableProps"
|
|
|
|
|
:page="queryParams.pageNo"
|
|
|
|
|
:limit="queryParams.pageSize"
|
|
|
|
|
:table-data="list"
|
|
|
|
|
@emitFun="handleEmitFun">
|
|
|
|
|
<method-btn
|
|
|
|
|
v-if="tableBtn.length"
|
|
|
|
|
slot="handleBtn"
|
|
|
|
|
label="操作"
|
2024-02-22 16:19:02 +08:00
|
|
|
|
:width="180"
|
2023-12-18 16:32:16 +08:00
|
|
|
|
:method-list="tableBtn"
|
|
|
|
|
@clickBtn="handleTableBtnClick" />
|
2024-02-22 16:52:07 +08:00
|
|
|
|
</base-table> -->
|
|
|
|
|
|
|
|
|
|
<CheckOrderListTable
|
|
|
|
|
ref="check-order-list-table"
|
|
|
|
|
:table-data="list"
|
|
|
|
|
:page="queryParams.pageNo"
|
|
|
|
|
:limit="queryParams.pageSize"
|
|
|
|
|
@edit="handleEdit"
|
|
|
|
|
@detail="handleDetail"
|
|
|
|
|
@delete="handleDelete"
|
|
|
|
|
@confirm="handleConfirm" />
|
2023-12-18 16:32:16 +08:00
|
|
|
|
|
|
|
|
|
<!-- 分页组件 -->
|
|
|
|
|
<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"
|
2024-02-22 16:52:07 +08:00
|
|
|
|
@confirm="handleSubmit">
|
2024-02-22 16:19:02 +08:00
|
|
|
|
<add ref="add" @refreshDataList="successSubmit" />
|
2023-12-18 16:32:16 +08:00
|
|
|
|
</base-dialog>
|
2024-02-22 16:19:02 +08:00
|
|
|
|
<!-- 添加巡检,查看详情 -->
|
|
|
|
|
<addOrUpdata
|
|
|
|
|
v-if="addOrUpdateVisible"
|
|
|
|
|
ref="addOrUpdate"
|
|
|
|
|
@refreshDataList="getList" />
|
2023-12-18 16:32:16 +08:00
|
|
|
|
</div>
|
2023-12-12 13:57:02 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2023-12-18 16:32:16 +08:00
|
|
|
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
2024-02-22 16:19:02 +08:00
|
|
|
|
import addOrUpdata from './add-or-updata.vue';
|
|
|
|
|
import add from './add.vue';
|
|
|
|
|
import { parseTime } from '../../core/mixins/code-filter';
|
2024-02-22 16:52:07 +08:00
|
|
|
|
import CheckOrderListTable from './CheckOrderListTable.vue';
|
2023-12-18 16:32:16 +08:00
|
|
|
|
|
2023-12-12 13:57:02 +08:00
|
|
|
|
export default {
|
2024-02-22 16:19:02 +08:00
|
|
|
|
name: 'SpecialEquipmentCheckConfig',
|
2024-02-22 16:52:07 +08:00
|
|
|
|
components: { addOrUpdata, add, CheckOrderListTable },
|
2023-12-18 16:32:16 +08:00
|
|
|
|
mixins: [basicPageMixin],
|
2023-12-12 13:57:02 +08:00
|
|
|
|
data() {
|
2023-12-18 16:32:16 +08:00
|
|
|
|
return {
|
2024-02-22 16:19:02 +08:00
|
|
|
|
addOrUpdateVisible: false,
|
|
|
|
|
addOrEditTitle: '',
|
|
|
|
|
searchBarKeys: ['name'],
|
2023-12-18 16:32:16 +08:00
|
|
|
|
tableBtn: [
|
2024-02-22 16:52:07 +08:00
|
|
|
|
{
|
|
|
|
|
type: 'confirm',
|
|
|
|
|
btnName: '确认',
|
|
|
|
|
showTip: '确认',
|
|
|
|
|
},
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.$auth.hasPermi('equipment:check-setting:update')
|
2023-12-18 16:32:16 +08:00
|
|
|
|
? {
|
|
|
|
|
type: 'edit',
|
|
|
|
|
btnName: '修改',
|
|
|
|
|
}
|
|
|
|
|
: undefined,
|
2024-02-22 16:52:07 +08:00
|
|
|
|
{
|
|
|
|
|
type: 'detail',
|
|
|
|
|
btnName: '巡检内容详情',
|
|
|
|
|
},
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.$auth.hasPermi('equipment:check-setting:delete')
|
2023-12-18 16:32:16 +08:00
|
|
|
|
? {
|
|
|
|
|
type: 'delete',
|
|
|
|
|
btnName: '删除',
|
|
|
|
|
}
|
|
|
|
|
: undefined,
|
|
|
|
|
].filter((v) => v),
|
|
|
|
|
tableProps: [
|
|
|
|
|
{
|
2024-02-22 16:19:02 +08:00
|
|
|
|
prop: 'name',
|
|
|
|
|
label: '巡检单名称',
|
|
|
|
|
width: 100,
|
|
|
|
|
showOverflowtooltip: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: 'department',
|
|
|
|
|
label: '部门',
|
|
|
|
|
width: 100,
|
|
|
|
|
showOverflowtooltip: true,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
prop: 'planCheckTime',
|
2024-02-22 16:52:07 +08:00
|
|
|
|
label: '巡检时间',
|
2024-02-22 16:19:02 +08:00
|
|
|
|
showOverflowtooltip: true,
|
|
|
|
|
filter: parseTime,
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-02-22 16:52:07 +08:00
|
|
|
|
prop: 'confirmDueTime',
|
|
|
|
|
label: '确认截止时间',
|
2023-12-18 16:32:16 +08:00
|
|
|
|
showOverflowtooltip: true,
|
2024-02-22 16:52:07 +08:00
|
|
|
|
// filter: (val) =>
|
|
|
|
|
// val != null && val > 24
|
|
|
|
|
// ? `${(val - (val % 24)) / 24}天${val % 24}小时`
|
|
|
|
|
// : `${val}小时`,
|
2024-02-22 16:19:02 +08:00
|
|
|
|
},
|
|
|
|
|
{ prop: 'remark', label: '备注' },
|
2023-12-18 16:32:16 +08:00
|
|
|
|
],
|
|
|
|
|
searchBarFormConfig: [
|
|
|
|
|
{
|
|
|
|
|
type: 'input',
|
2024-02-22 16:19:02 +08:00
|
|
|
|
label: '巡检单名称',
|
|
|
|
|
placeholder: '请输入巡检单名称',
|
|
|
|
|
param: 'name',
|
2023-12-18 16:32:16 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'button',
|
|
|
|
|
btnName: '查询',
|
|
|
|
|
name: 'search',
|
|
|
|
|
color: 'primary',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'separate',
|
|
|
|
|
},
|
|
|
|
|
{
|
2024-02-22 16:19:02 +08:00
|
|
|
|
type: this.$auth.hasPermi('equipment:check-setting:create')
|
|
|
|
|
? 'button'
|
|
|
|
|
: '',
|
2023-12-18 16:32:16 +08:00
|
|
|
|
btnName: '新增',
|
|
|
|
|
name: 'add',
|
|
|
|
|
plain: true,
|
|
|
|
|
color: 'success',
|
|
|
|
|
},
|
2024-02-22 16:52:07 +08:00
|
|
|
|
{
|
|
|
|
|
type: 'button',
|
|
|
|
|
btnName: '导出',
|
|
|
|
|
name: 'export',
|
|
|
|
|
plain: true,
|
|
|
|
|
color: 'warning',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'button',
|
|
|
|
|
btnName: '批量确认',
|
|
|
|
|
name: 'batch-confirm',
|
|
|
|
|
plain: true,
|
|
|
|
|
color: 'primary',
|
|
|
|
|
},
|
2023-12-18 16:32:16 +08:00
|
|
|
|
],
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
open: false,
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
pageSize: 10,
|
2024-02-22 16:19:02 +08:00
|
|
|
|
name: null,
|
|
|
|
|
status: 0,
|
2023-12-18 16:32:16 +08:00
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
2024-02-22 16:19:02 +08:00
|
|
|
|
form: {},
|
|
|
|
|
basePath: '/base/equipment-check-order',
|
2023-12-18 16:32:16 +08:00
|
|
|
|
mode: null,
|
2024-02-22 16:19:02 +08:00
|
|
|
|
allSpecialEquipments: [],
|
2023-12-18 16:32:16 +08:00
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.initSearchBar();
|
2023-12-18 16:32:16 +08:00
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2024-02-22 16:52:07 +08:00
|
|
|
|
handleSubmit() {
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.$refs.add.dataFormSubmit();
|
|
|
|
|
},
|
|
|
|
|
successSubmit() {
|
|
|
|
|
this.cancel();
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
initSearchBar() {
|
|
|
|
|
this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
|
|
|
|
this.allSpecialEquipments = data.filter((item) => item.special);
|
|
|
|
|
this.setSearchBarEquipmentList(data.filter((item) => item.special));
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 设备大类改变
|
|
|
|
|
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,
|
|
|
|
|
}))
|
|
|
|
|
);
|
|
|
|
|
},
|
2023-12-18 16:32:16 +08:00
|
|
|
|
/** 查询列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
// 执行查询
|
|
|
|
|
this.recv(this.queryParams).then((response) => {
|
|
|
|
|
this.list = response.data.list;
|
|
|
|
|
this.total = response.data.total;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 取消按钮 */
|
|
|
|
|
cancel() {
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.$refs.add.reset();
|
2023-12-18 16:32:16 +08:00
|
|
|
|
this.open = false;
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.title = '';
|
2023-12-18 16:32:16 +08:00
|
|
|
|
},
|
|
|
|
|
/** 表单重置 */
|
|
|
|
|
reset() {
|
|
|
|
|
this.form = {
|
|
|
|
|
id: null,
|
|
|
|
|
name: null,
|
|
|
|
|
content: null,
|
|
|
|
|
program: null,
|
|
|
|
|
remark: null,
|
|
|
|
|
};
|
|
|
|
|
this.resetForm('form');
|
|
|
|
|
},
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.queryParams.pageNo = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.resetForm('queryForm');
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
handleAdd() {
|
|
|
|
|
this.open = true;
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.title = '添加巡检设置';
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.add.init();
|
|
|
|
|
});
|
2023-12-18 16:32:16 +08:00
|
|
|
|
},
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
handleUpdate(row) {
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = '修改巡检设置';
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.add.init(row);
|
2023-12-18 16:32:16 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
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();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
},
|
2024-02-22 16:52:07 +08:00
|
|
|
|
/** 编辑 */
|
|
|
|
|
handleEdit(row) {},
|
|
|
|
|
/** 确认巡检单 */
|
|
|
|
|
handleConfirm(row) {},
|
|
|
|
|
/** 删除巡检单 */
|
2023-12-18 16:32:16 +08:00
|
|
|
|
handleDelete(row) {
|
|
|
|
|
const id = row.id;
|
|
|
|
|
this.$modal
|
2024-02-22 16:52:07 +08:00
|
|
|
|
.confirm('是否确认删除巡检单"' + row.name + '"?')
|
2024-02-22 16:19:02 +08:00
|
|
|
|
.then(() => {
|
|
|
|
|
return this.del({ id });
|
2023-12-18 16:32:16 +08:00
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess('删除成功');
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
},
|
2024-02-22 16:19:02 +08:00
|
|
|
|
// 处理表格按钮
|
|
|
|
|
handleTableBtnClick({ data, type }) {
|
|
|
|
|
switch (type) {
|
|
|
|
|
case 'edit':
|
|
|
|
|
this.handleUpdate(data);
|
|
|
|
|
break;
|
|
|
|
|
case 'delete':
|
|
|
|
|
this.handleDelete(data);
|
|
|
|
|
break;
|
|
|
|
|
case 'detail':
|
|
|
|
|
this.handleDetail(data);
|
|
|
|
|
break;
|
|
|
|
|
case 'add':
|
|
|
|
|
this.handleAddDetail(data);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-02-22 16:52:07 +08:00
|
|
|
|
handleDetail(row) {
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.addOrUpdateVisible = true;
|
|
|
|
|
this.addOrEditTitle = '详情';
|
|
|
|
|
this.$nextTick(() => {
|
2024-02-22 16:52:07 +08:00
|
|
|
|
this.$refs.addOrUpdate.init(row?.id, true);
|
2024-02-22 16:19:02 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
handleAddDetail(row) {
|
|
|
|
|
this.addOrUpdateVisible = true;
|
|
|
|
|
this.addOrEditTitle = '添加内容';
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs.addOrUpdate.init(row);
|
2023-12-18 16:32:16 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
handleExport() {
|
|
|
|
|
// 处理查询参数
|
|
|
|
|
let params = { ...this.queryParams };
|
|
|
|
|
params.pageNo = undefined;
|
|
|
|
|
params.pageSize = undefined;
|
|
|
|
|
this.$modal
|
2024-02-22 16:19:02 +08:00
|
|
|
|
.confirm('是否确认导出所有巡检设置?')
|
2023-12-18 16:32:16 +08:00
|
|
|
|
.then(() => {
|
|
|
|
|
this.exportLoading = true;
|
|
|
|
|
return exportEquipmentTypeExcel(params);
|
|
|
|
|
})
|
|
|
|
|
.then((response) => {
|
2024-02-22 16:19:02 +08:00
|
|
|
|
this.$download.excel(response, '巡检设置.xls');
|
2023-12-18 16:32:16 +08:00
|
|
|
|
this.exportLoading = false;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {});
|
|
|
|
|
},
|
2023-12-12 13:57:02 +08:00
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
2024-02-22 16:52:07 +08:00
|
|
|
|
|