yudao-dev/src/views/specialEquipment/check/Content.vue

381 lines
8.4 KiB
Vue
Raw Normal View History

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" />
<!-- 列表 -->
<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="操作"
2024-02-22 16:19:02 +08:00
:width="180"
2023-12-18 16:32:16 +08:00
:method-list="tableBtn"
@clickBtn="handleTableBtnClick" />
</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"
2024-02-22 16:19:02 +08:00
@confirm="handleConfirm">
<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';
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',
components: { addOrUpdata, add },
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:19:02 +08:00
this.$auth.hasPermi('equipment:check-setting:addInsp')
? {
type: 'add',
btnName: '添加',
showTip: '添加巡检',
}
: undefined,
this.$auth.hasPermi('equipment:check-setting:update')
2023-12-18 16:32:16 +08:00
? {
type: 'edit',
btnName: '修改',
}
: undefined,
2024-02-22 16:19:02 +08:00
// this.$auth.hasPermi('equipment:check-setting:update')
// ? {
// type: 'detail',
// btnName: '查看详情',
// }
// : undefined,
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: 'code',
label: '巡检单编码',
showOverflowtooltip: true,
},
{
prop: 'department',
label: '部门',
width: 100,
showOverflowtooltip: true,
},
{
prop: 'planCheckTime',
label: '计划巡检时间',
showOverflowtooltip: true,
filter: parseTime,
},
{
width: 144,
prop: 'confirmTimeLimit',
label: '确认时限',
2023-12-18 16:32:16 +08:00
showOverflowtooltip: true,
2024-02-22 16:19:02 +08:00
filter: (val) =>
val != null && val > 24
? `${(val - (val % 24)) / 24}${val % 24}小时`
: `${val}小时`,
2023-12-18 16:32:16 +08:00
},
2024-02-22 16:19:02 +08:00
{ prop: 'groupClass', label: '班次', showOverflowtooltip: true },
{ prop: 'creator', label: '创建人', showOverflowtooltip: true },
{
prop: 'createTime',
label: '创建时间',
showOverflowtooltip: true,
filter: parseTime,
},
{ 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:19:02 +08:00
// type: this.$auth.hasPermi('equipment:check-setting:export')
2023-12-18 16:32:16 +08:00
// ? 'button'
// : '',
// btnName: '导出',
// name: 'export',
// color: 'warning',
// },
],
// 是否显示弹出层
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:19:02 +08:00
handleConfirm() {
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();
});
});
},
/** 删除按钮操作 */
handleDelete(row) {
const id = row.id;
this.$modal
2024-02-22 16:19:02 +08:00
.confirm('是否确认删除配置名为"' + row.name + '"的数据项?')
.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;
}
},
2023-12-18 16:32:16 +08:00
handleDetail({ id }) {
2024-02-22 16:19:02 +08:00
this.addOrUpdateVisible = true;
this.addOrEditTitle = '详情';
this.$nextTick(() => {
this.$refs.addOrUpdate.init(id, true);
});
},
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>
<style scoped lang="scss">
2024-02-22 16:19:02 +08:00
.SpecialEquipmentCheckConfig {
2023-12-12 13:57:02 +08:00
}
</style>