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

315 lines
6.5 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"
@headBtnClick="handleSearchBarBtnClick" />
2024-02-22 16:52:07 +08:00
<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-23 11:20:04 +08:00
2024-02-22 16:19:02 +08:00
<!-- 添加巡检查看详情 -->
<addOrUpdata
v-if="addOrUpdateVisible"
ref="addOrUpdate"
@refreshDataList="getList" />
2024-02-23 11:20:04 +08:00
<edit
ref="content-edit"
v-if="editOpen"
@refreshDataList="getList"
@destroy="editOpen = false" />
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';
2024-02-23 09:45:43 +08:00
import add from './Content-add.vue';
2024-02-22 16:19:02 +08:00
import { parseTime } from '../../core/mixins/code-filter';
2024-02-22 16:52:07 +08:00
import CheckOrderListTable from './CheckOrderListTable.vue';
2024-02-23 11:20:04 +08:00
import edit from './Content-edit.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-23 11:20:04 +08:00
components: { addOrUpdata, add, edit, 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-23 11:20:04 +08:00
editOpen: false,
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-23 15:11:36 +08:00
filter: parseTime,
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,
2024-02-23 09:45:43 +08:00
status: 1,
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();
},
2024-02-23 15:11:36 +08:00
2024-02-22 16:19:02 +08:00
successSubmit() {
this.cancel();
this.getList();
},
2024-02-23 15:11:36 +08:00
2024-02-22 16:19:02 +08:00
initSearchBar() {
this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
this.allSpecialEquipments = data.filter((item) => item.special);
this.setSearchBarEquipmentList(data.filter((item) => item.special));
});
},
2024-02-23 15:11:36 +08:00
2024-02-22 16:19:02 +08:00
setSearchBarEquipmentList(eqList) {
this.$set(
this.searchBarFormConfig[2],
'selectOptions',
eqList.map((item) => ({
name: item.name,
id: item.id,
}))
);
},
2024-02-23 15:11:36 +08:00
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;
});
},
2024-02-23 15:11:36 +08:00
2023-12-18 16:32:16 +08:00
/** 取消按钮 */
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
},
2024-02-23 15:11:36 +08:00
2023-12-18 16:32:16 +08:00
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNo = 1;
this.getList();
},
2024-02-23 15:11:36 +08:00
2023-12-18 16:32:16 +08:00
/** 新增按钮操作 */
handleAdd() {
this.open = true;
2024-02-23 09:45:43 +08:00
this.title = '添加待确认巡检设置';
2024-02-22 16:19:02 +08:00
this.$nextTick(() => {
this.$refs.add.init();
});
2023-12-18 16:32:16 +08:00
},
2024-02-23 15:11:36 +08:00
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
});
},
2024-02-23 15:11:36 +08:00
2024-02-22 16:52:07 +08:00
/** 编辑 */
2024-02-23 11:20:04 +08:00
handleEdit(row) {
this.editOpen = true;
this.$nextTick(() => {
this.$refs['content-edit'].init(row);
});
},
2024-02-23 15:11:36 +08:00
2024-02-22 16:52:07 +08:00
/** 确认巡检单 */
handleConfirm(row) {},
2024-02-23 15:11:36 +08:00
2024-02-22 16:52:07 +08:00
/** 删除巡检单 */
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-23 15:11:36 +08:00
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
});
},
2024-02-23 15:11:36 +08:00
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>