Compare commits
No commits in common. "89e86c31bbaeaa98e4ea79f1ea2a3bb70c99b417" and "67a76869e112ae20919c32453f800a94123ca281" have entirely different histories.
89e86c31bb
...
67a76869e1
@ -53,22 +53,14 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="selectedBox[3]"
|
v-if="selectedBox[3]"
|
||||||
label="班次"
|
label="确认截止时间"
|
||||||
prop="groupClass">
|
prop="confirmDueTime">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.groupClass || '---' }}
|
{{ scope.row.confirmDueTime || '---' }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column
|
<el-table-column
|
||||||
v-if="selectedBox[4]"
|
v-if="selectedBox[4]"
|
||||||
label="确认截止时间"
|
|
||||||
prop="confirmDueTime">
|
|
||||||
<template slot-scope="scope">
|
|
||||||
{{ scope.row.confirmDueTime | timeFilter }}
|
|
||||||
</template>
|
|
||||||
</el-table-column>
|
|
||||||
<el-table-column
|
|
||||||
v-if="selectedBox[5]"
|
|
||||||
width="150"
|
width="150"
|
||||||
label="备注"
|
label="备注"
|
||||||
prop="remark">
|
prop="remark">
|
||||||
@ -127,7 +119,7 @@
|
|||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CheckOrderListTable',
|
name: 'WaitingListTable',
|
||||||
components: {},
|
components: {},
|
||||||
props: ['tableData', 'page', 'limit'],
|
props: ['tableData', 'page', 'limit'],
|
||||||
filters: {
|
filters: {
|
||||||
@ -146,9 +138,6 @@ export default {
|
|||||||
{
|
{
|
||||||
label: '巡检时间',
|
label: '巡检时间',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
label: '班次',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: '确认截止时间',
|
label: '确认截止时间',
|
||||||
},
|
},
|
||||||
@ -156,7 +145,7 @@ export default {
|
|||||||
label: '备注',
|
label: '备注',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
selectedBox: [true, true, true, true, true, true],
|
selectedBox: [true, true, true, true, true],
|
||||||
selectedOrder: [],
|
selectedOrder: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -354,22 +354,18 @@ export default {
|
|||||||
},
|
},
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
|
// 处理查询参数
|
||||||
|
let params = { ...this.queryParams };
|
||||||
|
params.pageNo = undefined;
|
||||||
|
params.pageSize = undefined;
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认导出所有巡检设置?')
|
.confirm('是否确认导出所有巡检设置?')
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.exportLoading = true;
|
this.exportLoading = true;
|
||||||
return this.$axios({
|
return exportEquipmentTypeExcel(params);
|
||||||
url: '/base/equipment-check-order/export-excel',
|
|
||||||
params: {
|
|
||||||
name: this.queryParams.name,
|
|
||||||
status: 0,
|
|
||||||
special: true,
|
|
||||||
},
|
|
||||||
responseType: 'blob',
|
|
||||||
});
|
|
||||||
})
|
})
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
this.$download.excel(response, '巡检单设置.xls');
|
this.$download.excel(response, '巡检设置.xls');
|
||||||
this.exportLoading = false;
|
this.exportLoading = false;
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
|
@ -1,193 +0,0 @@
|
|||||||
<!--
|
|
||||||
* @Author: lb
|
|
||||||
* @Date: 2024-2-23 09:16:25
|
|
||||||
* @LastEditors: lb
|
|
||||||
* @LastEditTime: 2024-2-23 09:16:25
|
|
||||||
* @Description: 设备巡检待确认弹窗
|
|
||||||
-->
|
|
||||||
<template>
|
|
||||||
<el-form
|
|
||||||
ref="form"
|
|
||||||
:model="dataForm"
|
|
||||||
:rules="dataRule"
|
|
||||||
@keyup.enter.native="dataFormSubmit()"
|
|
||||||
label-width="128px"
|
|
||||||
v-loading="formLoading"
|
|
||||||
label-position="top">
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col>
|
|
||||||
<el-form-item label="巡检单名称" prop="name">
|
|
||||||
<el-input v-model="dataForm.name" placeholder="请输入巡检单名称" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col>
|
|
||||||
<el-form-item label="部门" prop="departmentId">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.departmentId"
|
|
||||||
:placeholder="`请选择部门`">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in departmentOptions"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<el-col>
|
|
||||||
<el-form-item label="班次" prop="groupClass">
|
|
||||||
<el-select
|
|
||||||
v-model="dataForm.groupClass"
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
multiple
|
|
||||||
style="width: 100%"
|
|
||||||
placeholder="请选择班次">
|
|
||||||
<el-option
|
|
||||||
v-for="d in groupOptions"
|
|
||||||
:key="d.value"
|
|
||||||
:label="d.label"
|
|
||||||
:value="d.label" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
<!-- <el-col>
|
|
||||||
<el-form-item label="备注" prop="remark">
|
|
||||||
<el-input v-model="dataForm.remark" placeholder="请输入备注" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col> -->
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'ContentAdd',
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
formLoading: false,
|
|
||||||
dataForm: {
|
|
||||||
id: null,
|
|
||||||
name: null,
|
|
||||||
departmentId: null,
|
|
||||||
groupClass: null,
|
|
||||||
// special: true,
|
|
||||||
},
|
|
||||||
dataRule: {
|
|
||||||
name: [
|
|
||||||
{ required: true, message: '巡检单名称不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
equipmentOptions: [],
|
|
||||||
groupOptions: [],
|
|
||||||
departmentOptions: [],
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
this.initOptions();
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
reset() {
|
|
||||||
this.dataForm = {
|
|
||||||
id: null,
|
|
||||||
name: null,
|
|
||||||
departmentId: null,
|
|
||||||
groupClass: null,
|
|
||||||
// special: true,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
async initOptions() {
|
|
||||||
this.formLoading = true;
|
|
||||||
const urls = [
|
|
||||||
'/base/core-department/listAll',
|
|
||||||
'/base/group-classes/listAll',
|
|
||||||
];
|
|
||||||
try {
|
|
||||||
const [dpt, grp] = await Promise.all(
|
|
||||||
urls.map((url) => this.$axios(url))
|
|
||||||
);
|
|
||||||
if (dpt.code == 0) {
|
|
||||||
this.departmentOptions = dpt.data.map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
if (grp.code == 0) {
|
|
||||||
this.groupOptions = grp.data.map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
this.formLoading = false;
|
|
||||||
} catch (err) {
|
|
||||||
this.formLoading = false;
|
|
||||||
console.error(err);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
async init(row) {
|
|
||||||
if (!row || !row.id) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const res = await this.$axios({
|
|
||||||
url: '/base/equipment-check-order/get?id=' + row.id,
|
|
||||||
});
|
|
||||||
if (res.code == 0) {
|
|
||||||
Object.keys(this.dataForm).forEach((key) => {
|
|
||||||
this.dataForm[key] = res.data[key];
|
|
||||||
if (key == 'groupClass') {
|
|
||||||
this.dataForm.groupClass = res.data.groupClass.split(',');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getConfirmed() {
|
|
||||||
return this.$confirm('是否直接确认保养记录', '提示', {
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning',
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
async dataFormSubmit() {
|
|
||||||
let valid = false;
|
|
||||||
try {
|
|
||||||
valid = await this.$refs.form.validate();
|
|
||||||
} catch (err) {}
|
|
||||||
if (!valid) return;
|
|
||||||
|
|
||||||
let confirmed = false;
|
|
||||||
try {
|
|
||||||
confirmed = await this.getConfirmed();
|
|
||||||
} catch (err) {
|
|
||||||
confirmed = false;
|
|
||||||
}
|
|
||||||
const res = await this.$axios({
|
|
||||||
url:
|
|
||||||
'/base/equipment-check-order' +
|
|
||||||
(this.dataForm.id ? '/update' : '/create'),
|
|
||||||
method: this.dataForm.id ? 'put' : 'post',
|
|
||||||
data: {
|
|
||||||
...this.dataForm,
|
|
||||||
special: true,
|
|
||||||
status: confirmed ? 2 : 1,
|
|
||||||
groupClass: this.dataForm.groupClass.join(','),
|
|
||||||
checkPerson: this.$store.getters.userId,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
this.$message.success(this.dataForm.id ? '更新成功' : '创建成功');
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped lang="scss">
|
|
||||||
.el-date-editor,
|
|
||||||
.el-select {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -1,685 +0,0 @@
|
|||||||
<!--
|
|
||||||
filename: Content-edit.vue
|
|
||||||
author: liubin
|
|
||||||
date: 2024-2-24 11:38:56
|
|
||||||
description:
|
|
||||||
-->
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<el-drawer
|
|
||||||
:visible="visible"
|
|
||||||
:show-close="false"
|
|
||||||
:wrapper-closable="false"
|
|
||||||
class="drawer"
|
|
||||||
custom-class="mes-drawer"
|
|
||||||
size="60%"
|
|
||||||
@closed="$emit('destroy')">
|
|
||||||
<SmallTitle slot="title">编辑</SmallTitle>
|
|
||||||
|
|
||||||
<div class="drawer-body flex">
|
|
||||||
<div class="drawer-body__content">
|
|
||||||
<div class="form-part" style="margin-bottom: 32px">
|
|
||||||
<!-- <el-skeleton v-if="!showForm" animated /> -->
|
|
||||||
<el-form
|
|
||||||
class="equipment-info-form"
|
|
||||||
ref="form"
|
|
||||||
:model="form"
|
|
||||||
label-width="200px"
|
|
||||||
label-position="top"
|
|
||||||
v-loading="formLoading">
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="巡检单名称" prop="name">
|
|
||||||
<el-input
|
|
||||||
v-model="form.name"
|
|
||||||
:disabled="disableEdit"
|
|
||||||
placeholder="请输入巡检单名称" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="部门" prop="departmentId">
|
|
||||||
<el-select
|
|
||||||
v-model="form.departmentId"
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
:disabled="disableEdit"
|
|
||||||
:placeholder="`请选择部门`">
|
|
||||||
<el-option
|
|
||||||
v-for="opt in departmentOptions"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="班次" prop="groupClass">
|
|
||||||
<el-select
|
|
||||||
v-model="form.groupClass"
|
|
||||||
filterable
|
|
||||||
clearable
|
|
||||||
multiple
|
|
||||||
:disabled="disableEdit"
|
|
||||||
style="width: 100%"
|
|
||||||
placeholder="请选择班次">
|
|
||||||
<el-option
|
|
||||||
v-for="d in groupOptions"
|
|
||||||
:key="d.value"
|
|
||||||
:label="d.label"
|
|
||||||
:value="d.label" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="巡检人" prop="checkPerson">
|
|
||||||
<!-- :rules="[
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: '请选择巡检人',
|
|
||||||
trigger: 'blur',
|
|
||||||
},
|
|
||||||
]" -->
|
|
||||||
<el-select
|
|
||||||
v-model="form.checkPerson"
|
|
||||||
:placeholder="`请选择巡检人`"
|
|
||||||
multiple
|
|
||||||
clearable
|
|
||||||
:disabled="disableEdit"
|
|
||||||
filterable>
|
|
||||||
<el-option
|
|
||||||
v-for="opt in inspectorOptions"
|
|
||||||
:key="opt.value"
|
|
||||||
:label="opt.label"
|
|
||||||
:value="opt.value" />
|
|
||||||
</el-select>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="巡检时间" prop="planCheckTime">
|
|
||||||
<el-date-picker
|
|
||||||
v-model="form.planCheckTime"
|
|
||||||
type="datetime"
|
|
||||||
:disabled="disableEdit"
|
|
||||||
placeholder="请选择计划开始时间"
|
|
||||||
value-format="timestamp"></el-date-picker>
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<!-- <el-col :span="24">
|
|
||||||
<el-form-item label="备注" prop="remark">
|
|
||||||
<el-input v-model="form.remark" :placeholder="`请输入备注`" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col> -->
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<SmallTitle>巡检内容</SmallTitle>
|
|
||||||
|
|
||||||
<div style="margin-top: 12px; position: relative">
|
|
||||||
<SearchBar
|
|
||||||
:formConfigs="searchBarFormConfig"
|
|
||||||
ref="attr-search-bar"
|
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style="margin-top: 12px; position: relative">
|
|
||||||
<div
|
|
||||||
v-if="!disableEdit"
|
|
||||||
style="position: absolute; top: -40px; right: 0">
|
|
||||||
<el-button @click="handleAddAttr" type="text">
|
|
||||||
<i class="el-icon-plus"></i>
|
|
||||||
添加内容
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
<base-table
|
|
||||||
v-loading="attrListLoading"
|
|
||||||
:table-props="attrTableProps"
|
|
||||||
:page="attrQuery?.params.pageNo || 1"
|
|
||||||
:limit="attrQuery?.params.pageSize || 10"
|
|
||||||
:table-data="attrList"
|
|
||||||
@emitFun="handleEmitFun">
|
|
||||||
<method-btn
|
|
||||||
slot="handleBtn"
|
|
||||||
label="操作"
|
|
||||||
v-if="!disableEdit"
|
|
||||||
:method-list="tableBtn"
|
|
||||||
@clickBtn="handleTableBtnClick" />
|
|
||||||
</base-table>
|
|
||||||
|
|
||||||
<!-- 分页组件 -->
|
|
||||||
<pagination
|
|
||||||
v-show="attrTotal > 0"
|
|
||||||
:total="attrTotal"
|
|
||||||
:page.sync="attrQuery.params.pageNo"
|
|
||||||
:limit.sync="attrQuery.params.pageSize"
|
|
||||||
@pagination="getAttrList" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="drawer-body__footer">
|
|
||||||
<el-button style="" @click="handleCancel">
|
|
||||||
{{ disableEdit ? '返回' : '取消' }}
|
|
||||||
</el-button>
|
|
||||||
<el-button
|
|
||||||
v-if="!disableEdit"
|
|
||||||
type="primary"
|
|
||||||
:loading="btnLoading"
|
|
||||||
@click="handleConfirm">
|
|
||||||
保存
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 属性对话框 -->
|
|
||||||
<base-dialog
|
|
||||||
:dialogTitle="attrTitle"
|
|
||||||
:dialogVisible="attrFormVisible"
|
|
||||||
width="35%"
|
|
||||||
:append-to-body="true"
|
|
||||||
custom-class="baseDialog"
|
|
||||||
@close="closeAttrForm"
|
|
||||||
@cancel="closeAttrForm"
|
|
||||||
@confirm="submitAttrForm">
|
|
||||||
<DialogForm
|
|
||||||
v-if="attrFormVisible"
|
|
||||||
ref="attrForm"
|
|
||||||
v-model="attrForm"
|
|
||||||
:rows="attrRows" />
|
|
||||||
</base-dialog>
|
|
||||||
</el-drawer>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import DialogForm from '../../../components/DialogForm/index.vue';
|
|
||||||
|
|
||||||
const SmallTitle = {
|
|
||||||
name: 'SmallTitle',
|
|
||||||
props: ['size'],
|
|
||||||
components: {},
|
|
||||||
data() {
|
|
||||||
return {};
|
|
||||||
},
|
|
||||||
methods: {},
|
|
||||||
render: function (h) {
|
|
||||||
return h(
|
|
||||||
'span',
|
|
||||||
{
|
|
||||||
class: 'small-title',
|
|
||||||
style: {
|
|
||||||
fontSize: '18px',
|
|
||||||
lineHeight:
|
|
||||||
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
|
||||||
fontWeight: 500,
|
|
||||||
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
this.$slots.default
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default {
|
|
||||||
components: { SmallTitle, DialogForm },
|
|
||||||
props: ['dataId'], // dataId 作为一个通用的存放id的字段
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
visible: false,
|
|
||||||
btnLoading: false,
|
|
||||||
form: {},
|
|
||||||
formLoading: false,
|
|
||||||
departmentList: [],
|
|
||||||
inspectorOptions: [],
|
|
||||||
attrTableProps: [
|
|
||||||
{
|
|
||||||
prop: 'equipmentName',
|
|
||||||
label: '设备名称',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'program',
|
|
||||||
label: '巡检项目',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'checkResult',
|
|
||||||
label: '巡检结果',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
attrList: [],
|
|
||||||
attrTotal: 0,
|
|
||||||
attrTitle: '',
|
|
||||||
attrForm: {
|
|
||||||
id: null,
|
|
||||||
orderId: null,
|
|
||||||
program: null,
|
|
||||||
checkResult: null,
|
|
||||||
equipmentId: null,
|
|
||||||
},
|
|
||||||
attrFormVisible: false,
|
|
||||||
attrRows: [
|
|
||||||
[
|
|
||||||
{
|
|
||||||
select: true,
|
|
||||||
label: '设备名称',
|
|
||||||
prop: 'equipmentId',
|
|
||||||
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=true',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '巡检项目',
|
|
||||||
prop: 'program',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '巡检项目不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '巡检结果',
|
|
||||||
prop: 'checkResult',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '巡检结果不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
],
|
|
||||||
attrQuery: {
|
|
||||||
params: {
|
|
||||||
pageNo: 1,
|
|
||||||
pageSize: 10,
|
|
||||||
equipmentName: null,
|
|
||||||
},
|
|
||||||
}, // 属性列表的请求
|
|
||||||
searchBarFormConfig: [
|
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label: '设备',
|
|
||||||
placeholder: '请输入设备名称',
|
|
||||||
param: 'equipmentName',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'button',
|
|
||||||
btnName: '查询',
|
|
||||||
name: 'search',
|
|
||||||
color: 'primary',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
attrFormSubmitting: false,
|
|
||||||
attrListLoading: false,
|
|
||||||
// syncFileListFlag: null,
|
|
||||||
tableBtn: [
|
|
||||||
{
|
|
||||||
type: 'edit',
|
|
||||||
btnName: '编辑',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'delete',
|
|
||||||
btnName: '删除',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
row: null,
|
|
||||||
groupOptions: [],
|
|
||||||
disableEdit: false,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
departmentOptions() {
|
|
||||||
return (this.departmentList || []).map((item) => ({
|
|
||||||
id: item.id,
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
},
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
this.formLoading = true;
|
|
||||||
this.getList('department');
|
|
||||||
this.getList('groupClass');
|
|
||||||
this.getList('inspector');
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
handleSearchBarBtnClick(btn) {
|
|
||||||
switch (btn.btnName) {
|
|
||||||
case 'search':
|
|
||||||
this.attrQuery.params.equipmentName = btn.equipmentName;
|
|
||||||
this.getAttrList();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
handleTableBtnClick({ type, data }) {
|
|
||||||
switch (type) {
|
|
||||||
case 'edit':
|
|
||||||
this.handleEditAttr(data.id);
|
|
||||||
break;
|
|
||||||
case 'delete':
|
|
||||||
this.handleDeleteAttr(data.id);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
async handleConfirm() {
|
|
||||||
this.btnLoading = true;
|
|
||||||
this.$nextTick(async () => {
|
|
||||||
const { code, data } = await this.$axios({
|
|
||||||
url: '/base/equipment-check-order/update',
|
|
||||||
method: 'put',
|
|
||||||
data: {
|
|
||||||
...this.form,
|
|
||||||
groupClass: this.form.groupClass.join(','),
|
|
||||||
checkPerson: this.form.checkPerson.join(','),
|
|
||||||
},
|
|
||||||
});
|
|
||||||
if (code == 0) {
|
|
||||||
this.$modal.msgSuccess('更新成功');
|
|
||||||
}
|
|
||||||
this.btnLoading = false;
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
this.handleCancel();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
handleEmitFun(val) {
|
|
||||||
console.log('handleEmitFun', val);
|
|
||||||
},
|
|
||||||
|
|
||||||
init(row, detail) {
|
|
||||||
if (detail) this.disableEdit = true;
|
|
||||||
this.visible = true;
|
|
||||||
this.row = row;
|
|
||||||
this.getInfo(row);
|
|
||||||
this.getAttrList(row);
|
|
||||||
},
|
|
||||||
|
|
||||||
async getInfo(row) {
|
|
||||||
const res = await this.$axios(
|
|
||||||
'/base/equipment-check-order/get?id=' + row.id
|
|
||||||
);
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.form = res.data;
|
|
||||||
this.form.groupClass = res.data.groupClass.split(',');
|
|
||||||
this.form.checkPerson = res.data.checkPerson?.split(',');
|
|
||||||
this.formLoading = false;
|
|
||||||
}
|
|
||||||
this.formLoading = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
async getAttrList(row, condition = {}) {
|
|
||||||
if (!row) row = this.row;
|
|
||||||
this.attrListLoading = true;
|
|
||||||
const res = await this.$axios({
|
|
||||||
url: '/base/equipment-check-order-det/page',
|
|
||||||
method: 'get',
|
|
||||||
params: {
|
|
||||||
...this.attrQuery.params,
|
|
||||||
orderId: row.id,
|
|
||||||
...condition,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.attrList = res.data.list;
|
|
||||||
this.attrTotal = res.data.total;
|
|
||||||
}
|
|
||||||
this.attrListLoading = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
async getList(source = 'department') {
|
|
||||||
const urls = [
|
|
||||||
'/base/core-department/listAll',
|
|
||||||
'/base/group-classes/listAll',
|
|
||||||
];
|
|
||||||
let res;
|
|
||||||
switch (source) {
|
|
||||||
case 'department':
|
|
||||||
res = await this.$axios(urls[0]);
|
|
||||||
this.departmentList = res.data || [];
|
|
||||||
break;
|
|
||||||
case 'inspector':
|
|
||||||
let inspectorList = [];
|
|
||||||
const userlist = await this.$axios({
|
|
||||||
url: '/system/user/page',
|
|
||||||
params: { pageNo: 1, pageSize: 100 },
|
|
||||||
});
|
|
||||||
if (userlist.code == 0) {
|
|
||||||
inspectorList = inspectorList.concat(
|
|
||||||
(userlist.data?.list || []).map((item) => ({
|
|
||||||
label: item.username,
|
|
||||||
value: item.id,
|
|
||||||
}))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
const workerlist = await this.$axios('/base/core-worker/listAll');
|
|
||||||
if (workerlist.code == 0) {
|
|
||||||
inspectorList = inspectorList.concat(
|
|
||||||
workerlist.data.map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
this.inspectorOptions = inspectorList;
|
|
||||||
break;
|
|
||||||
case 'groupClass':
|
|
||||||
res = await this.$axios(urls[1]);
|
|
||||||
this.groupOptions = (res.data || []).map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.formLoading = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
// 保存表单
|
|
||||||
handleSave() {
|
|
||||||
this.$refs.form.validate(async (valid) => {
|
|
||||||
if (valid) {
|
|
||||||
await this.$axios({
|
|
||||||
url: '/urlupdate', // this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
|
||||||
method: 'post', // isEdit ? 'put' : 'post',
|
|
||||||
data: this.form,
|
|
||||||
});
|
|
||||||
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
|
||||||
this.visible = false;
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
handleCancel() {
|
|
||||||
this.visible = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
resetAttrform() {
|
|
||||||
this.attrForm = {
|
|
||||||
id: null,
|
|
||||||
orderId: null,
|
|
||||||
equipmentId: null,
|
|
||||||
program: null,
|
|
||||||
checkResult: null,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
// 新增属性
|
|
||||||
handleAddAttr() {
|
|
||||||
if (!this.row.id) return this.$message.error('请先选中保养记录');
|
|
||||||
this.resetAttrform();
|
|
||||||
this.attrTitle = '添加设备属性';
|
|
||||||
this.attrFormVisible = true;
|
|
||||||
},
|
|
||||||
|
|
||||||
// 编辑属性
|
|
||||||
async handleEditAttr(attrId) {
|
|
||||||
const res = await this.$axios({
|
|
||||||
url: '/base/equipment-check-order-det/get',
|
|
||||||
method: 'get',
|
|
||||||
params: { id: attrId },
|
|
||||||
});
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.attrForm = res.data;
|
|
||||||
this.attrTitle = '编辑巡检单详情';
|
|
||||||
this.attrFormVisible = true;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// 删除属性
|
|
||||||
handleDeleteAttr(attrId) {
|
|
||||||
this.$confirm('确定删除该巡检内容?', '提示', {
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning',
|
|
||||||
})
|
|
||||||
.then(async () => {
|
|
||||||
const res = await this.$axios({
|
|
||||||
url: '/base/equipment-check-order-det/delete?id=' + attrId,
|
|
||||||
method: 'delete',
|
|
||||||
});
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.$message({
|
|
||||||
message: '删除成功',
|
|
||||||
type: 'success',
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getAttrList();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
},
|
|
||||||
|
|
||||||
// 提交属性表
|
|
||||||
submitAttrForm() {
|
|
||||||
this.$refs['attrForm'].validate(async (valid) => {
|
|
||||||
if (!valid) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const isEdit = this.attrForm.id != null;
|
|
||||||
this.attrFormSubmitting = true;
|
|
||||||
const res = await this.$axios({
|
|
||||||
url: isEdit
|
|
||||||
? '/base/equipment-check-order-det/update'
|
|
||||||
: '/base/equipment-check-order-det/create',
|
|
||||||
method: isEdit ? 'put' : 'post',
|
|
||||||
data: { ...this.attrForm, orderId: this.row.id },
|
|
||||||
});
|
|
||||||
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.closeAttrForm();
|
|
||||||
this.$message({
|
|
||||||
message: `${isEdit ? '更新' : '创建'}成功`,
|
|
||||||
type: 'success',
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getAttrList();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
this.attrFormSubmitting = false;
|
|
||||||
} catch (err) {
|
|
||||||
this.$message({
|
|
||||||
message: err,
|
|
||||||
type: 'error',
|
|
||||||
duration: 1500,
|
|
||||||
});
|
|
||||||
this.attrFormSubmitting = false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
closeAttrForm() {
|
|
||||||
this.attrFormVisible = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
handleClick(raw) {
|
|
||||||
if (raw.type === 'delete') {
|
|
||||||
this.$confirm(
|
|
||||||
`确定对${
|
|
||||||
raw.data.name
|
|
||||||
? '[名称=' + raw.data.name + ']'
|
|
||||||
: '[序号=' + raw.data._pageIndex + ']'
|
|
||||||
}进行删除操作?`,
|
|
||||||
'提示',
|
|
||||||
{
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning',
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.then(() => {
|
|
||||||
deleteProductAttr(raw.data.id).then(({ data }) => {
|
|
||||||
this.$message({
|
|
||||||
message: '操作成功',
|
|
||||||
type: 'success',
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getList();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
} else {
|
|
||||||
this.addNew(raw.data.id);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.drawer >>> .el-drawer {
|
|
||||||
border-radius: 8px 0 0 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-date-editor,
|
|
||||||
.drawer >>> .el-select {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-drawer__header {
|
|
||||||
margin: 0;
|
|
||||||
padding: 32px 32px 24px;
|
|
||||||
border-bottom: 1px solid #dcdfe6;
|
|
||||||
margin-bottom: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.small-title::before {
|
|
||||||
content: '';
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
width: 4px;
|
|
||||||
height: 22px;
|
|
||||||
border-radius: 1px;
|
|
||||||
margin-right: 8px;
|
|
||||||
background-color: #0b58ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer-body {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer-body__content {
|
|
||||||
flex: 1;
|
|
||||||
/* background: #eee; */
|
|
||||||
padding: 20px 30px;
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer-body__footer {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
padding: 18px;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -11,8 +11,25 @@
|
|||||||
<SearchBar
|
<SearchBar
|
||||||
:formConfigs="searchBarFormConfig"
|
:formConfigs="searchBarFormConfig"
|
||||||
ref="search-bar"
|
ref="search-bar"
|
||||||
|
@select-changed="handleSearchBarChange"
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
@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="180"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table> -->
|
||||||
|
|
||||||
<CheckOrderListTable
|
<CheckOrderListTable
|
||||||
ref="check-order-list-table"
|
ref="check-order-list-table"
|
||||||
:table-data="list"
|
:table-data="list"
|
||||||
@ -40,36 +57,27 @@
|
|||||||
@confirm="handleSubmit">
|
@confirm="handleSubmit">
|
||||||
<add ref="add" @refreshDataList="successSubmit" />
|
<add ref="add" @refreshDataList="successSubmit" />
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
|
||||||
<!-- 添加巡检,查看详情 -->
|
<!-- 添加巡检,查看详情 -->
|
||||||
<addOrUpdata
|
<addOrUpdata
|
||||||
v-if="addOrUpdateVisible"
|
v-if="addOrUpdateVisible"
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
@refreshDataList="getList" />
|
@refreshDataList="getList" />
|
||||||
|
|
||||||
<edit
|
|
||||||
ref="content-edit"
|
|
||||||
v-if="editOpen"
|
|
||||||
@refreshDataList="getList"
|
|
||||||
@destroy="editOpen = false" />
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import addOrUpdata from './add-or-updata.vue';
|
import addOrUpdata from './add-or-updata.vue';
|
||||||
import add from './Content-add.vue';
|
import add from './add.vue';
|
||||||
import { parseTime } from '../../core/mixins/code-filter';
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
import CheckOrderListTable from './CheckOrderListTable.vue';
|
import CheckOrderListTable from './CheckOrderListTable.vue';
|
||||||
import edit from './Content-edit.vue';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SpecialEquipmentCheckConfig',
|
name: 'SpecialEquipmentCheckConfig',
|
||||||
components: { addOrUpdata, add, edit, CheckOrderListTable },
|
components: { addOrUpdata, add, CheckOrderListTable },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
editOpen: false,
|
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
addOrEditTitle: '',
|
addOrEditTitle: '',
|
||||||
searchBarKeys: ['name'],
|
searchBarKeys: ['name'],
|
||||||
@ -119,7 +127,6 @@ export default {
|
|||||||
prop: 'confirmDueTime',
|
prop: 'confirmDueTime',
|
||||||
label: '确认截止时间',
|
label: '确认截止时间',
|
||||||
showOverflowtooltip: true,
|
showOverflowtooltip: true,
|
||||||
filter: parseTime,
|
|
||||||
// filter: (val) =>
|
// filter: (val) =>
|
||||||
// val != null && val > 24
|
// val != null && val > 24
|
||||||
// ? `${(val - (val % 24)) / 24}天${val % 24}小时`
|
// ? `${(val - (val % 24)) / 24}天${val % 24}小时`
|
||||||
@ -174,7 +181,7 @@ export default {
|
|||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
name: null,
|
name: null,
|
||||||
status: 1,
|
status: 0,
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
@ -191,19 +198,28 @@ export default {
|
|||||||
handleSubmit() {
|
handleSubmit() {
|
||||||
this.$refs.add.dataFormSubmit();
|
this.$refs.add.dataFormSubmit();
|
||||||
},
|
},
|
||||||
|
|
||||||
successSubmit() {
|
successSubmit() {
|
||||||
this.cancel();
|
this.cancel();
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
|
|
||||||
initSearchBar() {
|
initSearchBar() {
|
||||||
this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
this.http('/base/core-equipment/listAll', 'get').then(({ data }) => {
|
||||||
this.allSpecialEquipments = data.filter((item) => item.special);
|
this.allSpecialEquipments = data.filter((item) => item.special);
|
||||||
this.setSearchBarEquipmentList(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) {
|
setSearchBarEquipmentList(eqList) {
|
||||||
this.$set(
|
this.$set(
|
||||||
this.searchBarFormConfig[2],
|
this.searchBarFormConfig[2],
|
||||||
@ -214,7 +230,6 @@ export default {
|
|||||||
}))
|
}))
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
@ -225,55 +240,41 @@ export default {
|
|||||||
this.loading = false;
|
this.loading = false;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 取消按钮 */
|
/** 取消按钮 */
|
||||||
cancel() {
|
cancel() {
|
||||||
this.$refs.add.reset();
|
this.$refs.add.reset();
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.title = '';
|
this.title = '';
|
||||||
},
|
},
|
||||||
|
/** 表单重置 */
|
||||||
/** search bar click */
|
reset() {
|
||||||
async searchBarClicked(btn) {
|
this.form = {
|
||||||
switch (btn.btnName) {
|
id: null,
|
||||||
/** 批量确认 */
|
name: null,
|
||||||
case 'batch-confirm':
|
content: null,
|
||||||
if (this.$refs['check-order-list-table'].selectedOrder.length == 0) {
|
program: null,
|
||||||
this.$message.warning('请选择待确认的巡检单');
|
remark: null,
|
||||||
return;
|
};
|
||||||
}
|
this.resetForm('form');
|
||||||
const res = await this.$axios({
|
|
||||||
url:
|
|
||||||
'/base/equipment-check-order/confirm?confirmPerson=' +
|
|
||||||
this.$store.getters.userId,
|
|
||||||
method: 'put',
|
|
||||||
data: this.$refs['check-order-list-table'].selectedOrder.map(
|
|
||||||
(item) => item.id
|
|
||||||
),
|
|
||||||
});
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.$message.success('确认成功');
|
|
||||||
this.getList();
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 搜索按钮操作 */
|
/** 搜索按钮操作 */
|
||||||
handleQuery() {
|
handleQuery() {
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm('queryForm');
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
/** 新增按钮操作 */
|
/** 新增按钮操作 */
|
||||||
handleAdd() {
|
handleAdd() {
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = '添加待确认巡检设置';
|
this.title = '添加巡检设置';
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs.add.init();
|
this.$refs.add.init();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 修改按钮操作 */
|
/** 修改按钮操作 */
|
||||||
handleUpdate(row) {
|
handleUpdate(row) {
|
||||||
this.open = true;
|
this.open = true;
|
||||||
@ -282,38 +283,33 @@ export default {
|
|||||||
this.$refs.add.init(row);
|
this.$refs.add.init(row);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
/** 编辑 */
|
submitForm() {
|
||||||
handleEdit(row, detail) {
|
this.$refs['form'].validate((valid) => {
|
||||||
this.editOpen = true;
|
if (!valid) {
|
||||||
this.$nextTick(() => {
|
return;
|
||||||
this.$refs['content-edit'].init(row, detail ?? false);
|
}
|
||||||
});
|
// 修改的提交
|
||||||
},
|
if (this.form.id != null) {
|
||||||
|
this.put(this.form).then((response) => {
|
||||||
/** 确认巡检单 */
|
this.$modal.msgSuccess('修改成功');
|
||||||
handleConfirm(row) {
|
this.open = false;
|
||||||
const id = row.id;
|
|
||||||
this.$modal
|
|
||||||
.confirm('是否确认巡检单"' + row.name + '"?')
|
|
||||||
.then(() => {
|
|
||||||
return this.$axios({
|
|
||||||
url:
|
|
||||||
'/base/equipment-check-order/confirm?confirmPerson=' +
|
|
||||||
this.$store.getters.userId,
|
|
||||||
// '/base/equipment-check-order/confirm?ids=' + JSON.stringify([id]).replaceAll("\"", ''),
|
|
||||||
method: 'put',
|
|
||||||
data: [id],
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.then((res) => {
|
|
||||||
this.getList();
|
this.getList();
|
||||||
res.code == 0 && this.$modal.msgSuccess('确认成功');
|
});
|
||||||
res.code != 0 && this.$modal.msgError('确认失败');
|
return;
|
||||||
})
|
}
|
||||||
.catch(() => {});
|
// 添加的提交
|
||||||
|
this.post(this.form).then((response) => {
|
||||||
|
this.$modal.msgSuccess('新增成功');
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
/** 编辑 */
|
||||||
|
handleEdit(row) {},
|
||||||
|
/** 确认巡检单 */
|
||||||
|
handleConfirm(row) {},
|
||||||
/** 删除巡检单 */
|
/** 删除巡检单 */
|
||||||
handleDelete(row) {
|
handleDelete(row) {
|
||||||
const id = row.id;
|
const id = row.id;
|
||||||
@ -328,29 +324,51 @@ export default {
|
|||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
},
|
},
|
||||||
|
// 处理表格按钮
|
||||||
handleDetail(row) {
|
handleTableBtnClick({ data, type }) {
|
||||||
this.handleEdit(row, true);
|
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;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleDetail(row) {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.addOrEditTitle = '详情';
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(row?.id, true);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
handleAddDetail(row) {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.addOrEditTitle = '添加内容';
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(row);
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
|
// 处理查询参数
|
||||||
|
let params = { ...this.queryParams };
|
||||||
|
params.pageNo = undefined;
|
||||||
|
params.pageSize = undefined;
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认导出所有巡检设置?')
|
.confirm('是否确认导出所有巡检设置?')
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.exportLoading = true;
|
this.exportLoading = true;
|
||||||
return this.$axios({
|
return exportEquipmentTypeExcel(params);
|
||||||
url: '/base/equipment-check-order/export-excel',
|
|
||||||
// params: {
|
|
||||||
// name: this.queryParams.name,
|
|
||||||
// status: 1,
|
|
||||||
// special: true,
|
|
||||||
// },
|
|
||||||
responseType: 'blob',
|
|
||||||
});
|
|
||||||
})
|
})
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
this.$download.excel(response, '巡检单待确认.xls');
|
this.$download.excel(response, '巡检设置.xls');
|
||||||
this.exportLoading = false;
|
this.exportLoading = false;
|
||||||
})
|
})
|
||||||
.catch(() => {});
|
.catch(() => {});
|
||||||
@ -358,3 +376,5 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
504
src/views/specialEquipment/check/Record-add.vue
Normal file
504
src/views/specialEquipment/check/Record-add.vue
Normal file
@ -0,0 +1,504 @@
|
|||||||
|
<!--
|
||||||
|
filename: dialogForm.vue
|
||||||
|
author: liubin
|
||||||
|
date: 2023-10-31 15:55:13
|
||||||
|
description:
|
||||||
|
-->
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
ref="drawer"
|
||||||
|
:visible.sync="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="isdetail"
|
||||||
|
class="drawer"
|
||||||
|
size="55%"
|
||||||
|
@closed="$emit('destroy')">
|
||||||
|
<small-title slot="title" :no-padding="true">
|
||||||
|
{{ isdetail ? '查看详情' : !dataForm.id ? '新增' : '编辑' }}
|
||||||
|
</small-title>
|
||||||
|
|
||||||
|
<el-form
|
||||||
|
ref="dataForm"
|
||||||
|
style="margin: 0 16px; padding: 0 16px"
|
||||||
|
:model="dataForm"
|
||||||
|
:rules="dataRule"
|
||||||
|
label-width="100px"
|
||||||
|
label-position="top"
|
||||||
|
v-loading="formLoading">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="设备大类"
|
||||||
|
prop="equipmentCategory"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '请选择设备大类', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="dataForm.equipmentCategory"
|
||||||
|
:disabled="isdetail"
|
||||||
|
:placeholder="`请选择设备大类`"
|
||||||
|
filterable
|
||||||
|
@change="handleEqTypeChange">
|
||||||
|
<el-option
|
||||||
|
v-for="opt in equipmentTypeOptions"
|
||||||
|
:key="opt.value"
|
||||||
|
:label="opt.label"
|
||||||
|
:value="opt.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item
|
||||||
|
label="设备名称"
|
||||||
|
prop="equipmentId"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="dataForm.equipmentId"
|
||||||
|
filterable
|
||||||
|
clearable
|
||||||
|
:disabled="isdetail"
|
||||||
|
style="width: 100%"
|
||||||
|
placeholder="请选择设备名称"
|
||||||
|
@change="setConfig">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in equipmentOptions"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<!-- <el-form-item label="物料名称" prop="name">
|
||||||
|
<el-input v-model="dataForm.name" :disabled="isdetail" clearable placeholder="请输入物料名称" />
|
||||||
|
</el-form-item> -->
|
||||||
|
<el-form-item
|
||||||
|
label="巡检配置名称"
|
||||||
|
prop="configId"
|
||||||
|
:rules="[
|
||||||
|
{ required: true, message: '巡检配置不能为空', trigger: 'blur' },
|
||||||
|
]">
|
||||||
|
<el-select
|
||||||
|
v-model="dataForm.configId"
|
||||||
|
filterable
|
||||||
|
clearable
|
||||||
|
:disabled="isdetail"
|
||||||
|
style="width: 100%"
|
||||||
|
placeholder="请选择巡检配置"
|
||||||
|
@change="setInspectionContet">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in configList"
|
||||||
|
:key="dict.id"
|
||||||
|
:label="dict.name"
|
||||||
|
:value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="设备编码" prop="equipmentCode">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.equipmentCode"
|
||||||
|
disabled
|
||||||
|
clearable
|
||||||
|
placeholder="请输入设备编码" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="巡检人" prop="responsible">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.responsible"
|
||||||
|
:disabled="isdetail"
|
||||||
|
clearable
|
||||||
|
placeholder="请输入巡检人" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="巡检时间" prop="actualTime">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="dataForm.actualTime"
|
||||||
|
type="datetime"
|
||||||
|
:disabled="isdetail"
|
||||||
|
format="yyyy-MM-dd HH:mm:ss"
|
||||||
|
value-format="timestamp"
|
||||||
|
placeholder="选择巡检时间" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="数据来源" prop="origin">
|
||||||
|
<el-select
|
||||||
|
v-model="dataForm.origin"
|
||||||
|
filterable
|
||||||
|
clearable
|
||||||
|
:disabled="isdetail"
|
||||||
|
style="width: 100%"
|
||||||
|
placeholder="请选择数据来源">
|
||||||
|
<el-option key="1" label="手动" :value="1" />
|
||||||
|
<el-option key="2" label="PDA" :value="2" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-form-item label="巡检内容">
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize"
|
||||||
|
:table-data="list" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="巡检详情" prop="description">
|
||||||
|
<editor
|
||||||
|
v-if="!isdetail"
|
||||||
|
v-model="dataForm.description"
|
||||||
|
:min-height="150" />
|
||||||
|
<div
|
||||||
|
v-else
|
||||||
|
v-html="dataForm.description"
|
||||||
|
style="padding: 5px; margin-left: 5px; border: 1px solid #dfdfdf" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="附件">
|
||||||
|
<FileUpload
|
||||||
|
v-model="file"
|
||||||
|
:limit="1"
|
||||||
|
:f-name="fileName"
|
||||||
|
:disabled="isdetail"
|
||||||
|
@name="setFileName" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<div v-if="!isdetail" class="drawer-body__footer">
|
||||||
|
<el-button @click="goback()">取消</el-button>
|
||||||
|
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
||||||
|
</div>
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import SmallTitle from './SmallTitle.vue';
|
||||||
|
import {
|
||||||
|
createCheckLog,
|
||||||
|
updateCheckLog,
|
||||||
|
getcheckConfigByEqList,
|
||||||
|
getEqCheckLog,
|
||||||
|
} from '@/api/equipment/base/inspection/record';
|
||||||
|
import { getEquipmentAll } from '@/api/base/equipment';
|
||||||
|
import Editor from '@/components/Editor';
|
||||||
|
import { getCheckDetPage } from '@/api/equipment/base/inspection/settings';
|
||||||
|
// import FileUpload from "@/components/FileUpload";
|
||||||
|
// import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
// import attrAdd from './attr-add';
|
||||||
|
import FileUpload from '@/components/FileUpload';
|
||||||
|
|
||||||
|
const tableBtn = [
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'program',
|
||||||
|
label: '巡检项目',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'content',
|
||||||
|
label: '巡检内容',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'AddRecord',
|
||||||
|
model: {
|
||||||
|
prop: 'dataForm',
|
||||||
|
event: 'update',
|
||||||
|
},
|
||||||
|
emits: ['update'],
|
||||||
|
components: { SmallTitle, Editor, FileUpload },
|
||||||
|
props: {
|
||||||
|
// dataForm: {
|
||||||
|
// type: Object,
|
||||||
|
// default: () => ({}),
|
||||||
|
// },
|
||||||
|
// disabled: {
|
||||||
|
// type: Boolean,
|
||||||
|
// default: false
|
||||||
|
// },
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tableBtn,
|
||||||
|
tableProps,
|
||||||
|
addOrUpdateVisible: false,
|
||||||
|
formLoading: true,
|
||||||
|
visible: false,
|
||||||
|
isdetail: false,
|
||||||
|
dataForm: {
|
||||||
|
id: undefined,
|
||||||
|
configId: undefined,
|
||||||
|
equipmentId: undefined,
|
||||||
|
actualTime: undefined,
|
||||||
|
responsible: undefined,
|
||||||
|
description: undefined,
|
||||||
|
equipmentCode: undefined,
|
||||||
|
equipmentCategory: undefined,
|
||||||
|
origin: 1,
|
||||||
|
files: [],
|
||||||
|
},
|
||||||
|
equipmentTypeOptions: [
|
||||||
|
{ label: '安全设备', value: 1 },
|
||||||
|
{ label: '消防设备', value: 2 },
|
||||||
|
{ label: '特种设备', value: 3 },
|
||||||
|
],
|
||||||
|
list: [],
|
||||||
|
eqList: [],
|
||||||
|
configList: [],
|
||||||
|
listQuery: {
|
||||||
|
pageSize: 10,
|
||||||
|
pageNo: 1,
|
||||||
|
total: 0,
|
||||||
|
},
|
||||||
|
file: '',
|
||||||
|
fileName: '',
|
||||||
|
dataRule: {
|
||||||
|
responsible: [
|
||||||
|
{ required: true, message: '巡检人不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
actualTime: [
|
||||||
|
{ required: true, message: '巡检时间不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getDict();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
setFileName(val) {
|
||||||
|
this.fileName = val;
|
||||||
|
},
|
||||||
|
async getDict() {
|
||||||
|
const res = await getEquipmentAll();
|
||||||
|
this.eqList = res.data;
|
||||||
|
this.handleEqTypeChange();
|
||||||
|
|
||||||
|
const configres = await getcheckConfigByEqList();
|
||||||
|
this.configList = configres.data;
|
||||||
|
},
|
||||||
|
async setConfig() {
|
||||||
|
const configres = await getcheckConfigByEqList({
|
||||||
|
equipmentId: this.dataForm.equipmentId,
|
||||||
|
});
|
||||||
|
this.configList = configres.data;
|
||||||
|
this.dataForm.configId =
|
||||||
|
this.configList.filter((it) => {
|
||||||
|
return it.id === this.dataForm.configId;
|
||||||
|
})[0]?.id ?? undefined;
|
||||||
|
this.dataForm.equipmentCode =
|
||||||
|
this.eqList.filter((item) => {
|
||||||
|
return item.id === this.dataForm.equipmentId;
|
||||||
|
})[0]?.code ?? undefined;
|
||||||
|
},
|
||||||
|
goback() {
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.visible = false;
|
||||||
|
},
|
||||||
|
goEdit() {
|
||||||
|
this.isdetail = false;
|
||||||
|
},
|
||||||
|
/** 模拟透传 ref */
|
||||||
|
validate(cb) {
|
||||||
|
return this.$refs.dataForm.validate(cb);
|
||||||
|
},
|
||||||
|
resetFields(args) {
|
||||||
|
return this.$refs.dataForm.resetFields(args);
|
||||||
|
},
|
||||||
|
initData() {
|
||||||
|
this.list = [];
|
||||||
|
this.file = '';
|
||||||
|
this.fileName = '';
|
||||||
|
},
|
||||||
|
init(id, isdetail) {
|
||||||
|
this.initData();
|
||||||
|
this.isdetail = isdetail || false;
|
||||||
|
this.dataForm.id = id || undefined;
|
||||||
|
this.visible = true;
|
||||||
|
|
||||||
|
// const scrollContainer = this.$refs.dataForm;
|
||||||
|
// const scrollPosition = scrollContainer.scrollTop;
|
||||||
|
// console.log('12', scrollPosition);
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['dataForm'].resetFields();
|
||||||
|
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
// 获取巡检记录
|
||||||
|
getEqCheckLog(this.dataForm.id).then((response) => {
|
||||||
|
this.formLoading = false;
|
||||||
|
this.dataForm = response.data;
|
||||||
|
if (this.dataForm.files.length > 0) {
|
||||||
|
this.file = this.dataForm.files[0].fileUrl;
|
||||||
|
this.fileName = this.dataForm.files[0].fileName;
|
||||||
|
}
|
||||||
|
this.dataForm.description = this.dataForm.description || '无';
|
||||||
|
this.setConfig();
|
||||||
|
this.setInspectionContet();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// if (this.urlOptions.isGetCode) {
|
||||||
|
// this.getCode()
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.formLoading = false;
|
||||||
|
},
|
||||||
|
setInspectionContet() {
|
||||||
|
// 根据巡检配置名称获得巡检配置详细对应巡检内容
|
||||||
|
getCheckDetPage({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 99,
|
||||||
|
configId: this.dataForm.configId,
|
||||||
|
}).then((response) => {
|
||||||
|
this.list = response.data.list;
|
||||||
|
this.listQuery.total = response.data.total;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 新增 / 修改
|
||||||
|
addNew(id) {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(id);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
handleEqTypeChange(type) {
|
||||||
|
this.dataForm.equipmentId = null;
|
||||||
|
this.dataForm.equipmentCode = null;
|
||||||
|
if (type) {
|
||||||
|
this.equipmentOptions = this.eqList
|
||||||
|
.filter((item) => item.special)
|
||||||
|
.filter((item) => item.specialType === type)
|
||||||
|
.map((item) => ({ label: item.name, value: item.id }));
|
||||||
|
} else
|
||||||
|
this.equipmentOptions = this.eqList
|
||||||
|
// .filter((item) => item.special)
|
||||||
|
.map((item) => ({
|
||||||
|
label: item.name,
|
||||||
|
value: item.id,
|
||||||
|
}));
|
||||||
|
// this.$emit('update', this.form)
|
||||||
|
},
|
||||||
|
// 表单提交
|
||||||
|
dataFormSubmit() {
|
||||||
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (this.file) {
|
||||||
|
const temp = this.file.split(','); // 获取文件个数
|
||||||
|
let arry = [];
|
||||||
|
temp.forEach((item, index) => {
|
||||||
|
arry.push({
|
||||||
|
fileName: this.fileName,
|
||||||
|
fileType: 2,
|
||||||
|
fileUrl: item,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
this.dataForm.files = arry;
|
||||||
|
} else {
|
||||||
|
this.dataForm.files = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改的提交
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
updateCheckLog(this.dataForm).then((response) => {
|
||||||
|
this.$modal.msgSuccess('修改成功');
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 添加的提交
|
||||||
|
createCheckLog(this.dataForm).then((response) => {
|
||||||
|
this.$modal.msgSuccess('新增成功');
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.el-date-editor,
|
||||||
|
.el-select {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
.action_btn {
|
||||||
|
float: right;
|
||||||
|
margin: 5px 15px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.add {
|
||||||
|
color: #0b58ff;
|
||||||
|
}
|
||||||
|
.drawer >>> .el-drawer {
|
||||||
|
border-radius: 8px 0 0 8px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-form-item__label {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-drawer__header {
|
||||||
|
margin: 0;
|
||||||
|
padding: 32px 32px 24px;
|
||||||
|
border-bottom: 1px solid #dcdfe6;
|
||||||
|
}
|
||||||
|
.drawer >>> .el-drawer__body {
|
||||||
|
flex: 1;
|
||||||
|
height: 1px;
|
||||||
|
margin: 10px 0;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .content {
|
||||||
|
padding: 30px 24px;
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
/* height: 100%; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .visual-part {
|
||||||
|
flex: 1 auto;
|
||||||
|
max-height: 76vh;
|
||||||
|
overflow: hidden;
|
||||||
|
overflow-y: scroll;
|
||||||
|
padding-right: 10px; /* 调整滚动条样式 */
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer >>> .el-form,
|
||||||
|
.drawer >>> .attr-list {
|
||||||
|
padding: 0 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.drawer-body__footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 18px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,636 +0,0 @@
|
|||||||
<!--
|
|
||||||
filename: Record-detail.vue
|
|
||||||
author: liubin
|
|
||||||
date: 2024-2-24 11:38:56
|
|
||||||
description:
|
|
||||||
-->
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<el-drawer
|
|
||||||
:visible="visible"
|
|
||||||
:show-close="false"
|
|
||||||
:wrapper-closable="false"
|
|
||||||
class="drawer"
|
|
||||||
custom-class="mes-drawer"
|
|
||||||
size="60%"
|
|
||||||
@closed="$emit('destroy')">
|
|
||||||
<SmallTitle slot="title">查看详情</SmallTitle>
|
|
||||||
|
|
||||||
<div class="drawer-body flex">
|
|
||||||
<div class="drawer-body__content">
|
|
||||||
<div class="form-part" style="margin-bottom: 32px">
|
|
||||||
<!-- <el-skeleton v-if="!showForm" animated /> -->
|
|
||||||
<el-form
|
|
||||||
class="equipment-info-form"
|
|
||||||
ref="form"
|
|
||||||
:model="form"
|
|
||||||
label-width="200px"
|
|
||||||
label-position="top"
|
|
||||||
v-loading="formLoading">
|
|
||||||
<el-row :gutter="20">
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="巡检单名称" prop="name">
|
|
||||||
{{ form.name }}
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="部门" prop="department">
|
|
||||||
{{ form.department }}
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="班次" prop="groupClass">
|
|
||||||
{{ form.groupClass }}
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="巡检人" prop="checkPerson">
|
|
||||||
{{ form.checkPerson }}
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="巡检时间" prop="planCheckTime">
|
|
||||||
{{ form.planCheckTime | parseTime }}
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
|
|
||||||
<el-col :span="8">
|
|
||||||
<el-form-item label="确认人" prop="confirmPerson">
|
|
||||||
{{ form.confirmPerson }}
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<SmallTitle>巡检内容</SmallTitle>
|
|
||||||
|
|
||||||
<div style="margin-top: 12px; position: relative">
|
|
||||||
<!-- <SearchBar
|
|
||||||
:formConfigs="searchBarFormConfig"
|
|
||||||
ref="attr-search-bar"
|
|
||||||
@headBtnClick="handleSearchBarBtnClick" /> -->
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div style="margin-top: 12px; position: relative">
|
|
||||||
<div
|
|
||||||
v-if="!disableEdit"
|
|
||||||
style="position: absolute; top: -40px; right: 0">
|
|
||||||
<el-button @click="handleAddAttr" type="text">
|
|
||||||
<i class="el-icon-plus"></i>
|
|
||||||
添加内容
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
<base-table
|
|
||||||
v-loading="attrListLoading"
|
|
||||||
:table-props="attrTableProps"
|
|
||||||
:page="attrQuery?.params.pageNo || 1"
|
|
||||||
:limit="attrQuery?.params.pageSize || 10"
|
|
||||||
:table-data="attrList"
|
|
||||||
@emitFun="handleEmitFun">
|
|
||||||
<method-btn
|
|
||||||
slot="handleBtn"
|
|
||||||
label="操作"
|
|
||||||
v-if="!disableEdit"
|
|
||||||
:method-list="tableBtn"
|
|
||||||
@clickBtn="handleTableBtnClick" />
|
|
||||||
</base-table>
|
|
||||||
|
|
||||||
<!-- 分页组件 -->
|
|
||||||
<pagination
|
|
||||||
v-show="attrTotal > 0"
|
|
||||||
:total="attrTotal"
|
|
||||||
:page.sync="attrQuery.params.pageNo"
|
|
||||||
:limit.sync="attrQuery.params.pageSize"
|
|
||||||
@pagination="getAttrList" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="drawer-body__footer">
|
|
||||||
<el-button style="" @click="handleCancel">
|
|
||||||
{{ disableEdit ? '返回' : '取消' }}
|
|
||||||
</el-button>
|
|
||||||
<el-button
|
|
||||||
v-if="!disableEdit"
|
|
||||||
type="primary"
|
|
||||||
:loading="btnLoading"
|
|
||||||
@click="handleConfirm">
|
|
||||||
保存
|
|
||||||
</el-button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- 属性对话框 -->
|
|
||||||
<base-dialog
|
|
||||||
:dialogTitle="attrTitle"
|
|
||||||
:dialogVisible="attrFormVisible"
|
|
||||||
width="35%"
|
|
||||||
:append-to-body="true"
|
|
||||||
custom-class="baseDialog"
|
|
||||||
@close="closeAttrForm"
|
|
||||||
@cancel="closeAttrForm"
|
|
||||||
@confirm="submitAttrForm">
|
|
||||||
<DialogForm
|
|
||||||
v-if="attrFormVisible"
|
|
||||||
ref="attrForm"
|
|
||||||
v-model="attrForm"
|
|
||||||
:rows="attrRows" />
|
|
||||||
</base-dialog>
|
|
||||||
</el-drawer>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { parseTime } from '../../core/mixins/code-filter';
|
|
||||||
import DialogForm from '../../../components/DialogForm/index.vue';
|
|
||||||
|
|
||||||
const SmallTitle = {
|
|
||||||
name: 'SmallTitle',
|
|
||||||
props: ['size'],
|
|
||||||
components: {},
|
|
||||||
data() {
|
|
||||||
return {};
|
|
||||||
},
|
|
||||||
methods: {},
|
|
||||||
render: function (h) {
|
|
||||||
return h(
|
|
||||||
'span',
|
|
||||||
{
|
|
||||||
class: 'small-title',
|
|
||||||
style: {
|
|
||||||
fontSize: '18px',
|
|
||||||
lineHeight:
|
|
||||||
this.size == 'lg' ? '24px' : this.size == 'sm' ? '18px' : '20px',
|
|
||||||
fontWeight: 500,
|
|
||||||
fontFamily: '微软雅黑, Microsoft YaHei, Arial, Helvetica, sans-serif',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
this.$slots.default
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default {
|
|
||||||
components: { SmallTitle, DialogForm },
|
|
||||||
props: ['dataId'], // dataId 作为一个通用的存放id的字段
|
|
||||||
filters: { parseTime },
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
visible: false,
|
|
||||||
btnLoading: false,
|
|
||||||
form: {},
|
|
||||||
formLoading: false,
|
|
||||||
departmentList: [],
|
|
||||||
inspectorOptions: [],
|
|
||||||
attrTableProps: [
|
|
||||||
{
|
|
||||||
prop: 'equipmentName',
|
|
||||||
label: '设备名称',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'program',
|
|
||||||
label: '巡检项目',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'checkResult',
|
|
||||||
label: '巡检结果',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
attrList: [],
|
|
||||||
attrTotal: 0,
|
|
||||||
attrTitle: '',
|
|
||||||
attrForm: {
|
|
||||||
id: null,
|
|
||||||
orderId: null,
|
|
||||||
program: null,
|
|
||||||
checkResult: null,
|
|
||||||
equipmentId: null,
|
|
||||||
},
|
|
||||||
attrFormVisible: false,
|
|
||||||
attrRows: [
|
|
||||||
[
|
|
||||||
{
|
|
||||||
select: true,
|
|
||||||
label: '设备名称',
|
|
||||||
prop: 'equipmentId',
|
|
||||||
url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=true',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '设备不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '巡检项目',
|
|
||||||
prop: 'program',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '巡检项目不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '巡检结果',
|
|
||||||
prop: 'checkResult',
|
|
||||||
rules: [
|
|
||||||
{ required: true, message: '巡检结果不能为空', trigger: 'blur' },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
],
|
|
||||||
attrQuery: {
|
|
||||||
params: {
|
|
||||||
pageNo: 1,
|
|
||||||
pageSize: 10,
|
|
||||||
equipmentName: null,
|
|
||||||
},
|
|
||||||
}, // 属性列表的请求
|
|
||||||
searchBarFormConfig: [
|
|
||||||
{
|
|
||||||
type: 'input',
|
|
||||||
label: '设备',
|
|
||||||
placeholder: '请输入设备名称',
|
|
||||||
param: 'equipmentName',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'button',
|
|
||||||
btnName: '查询',
|
|
||||||
name: 'search',
|
|
||||||
color: 'primary',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
attrFormSubmitting: false,
|
|
||||||
attrListLoading: false,
|
|
||||||
// syncFileListFlag: null,
|
|
||||||
tableBtn: [
|
|
||||||
{
|
|
||||||
type: 'edit',
|
|
||||||
btnName: '编辑',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'delete',
|
|
||||||
btnName: '删除',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
row: null,
|
|
||||||
groupOptions: [],
|
|
||||||
disableEdit: false,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
departmentOptions() {
|
|
||||||
return (this.departmentList || []).map((item) => ({
|
|
||||||
id: item.id,
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
},
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
// this.formLoading = true;
|
|
||||||
// this.getList('department');
|
|
||||||
// this.getList('groupClass');
|
|
||||||
// this.getList('inspector');
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
handleSearchBarBtnClick(btn) {
|
|
||||||
switch (btn.btnName) {
|
|
||||||
case 'search':
|
|
||||||
this.attrQuery.params.equipmentName = btn.equipmentName;
|
|
||||||
this.getAttrList();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
handleTableBtnClick({ type, data }) {
|
|
||||||
switch (type) {
|
|
||||||
case 'edit':
|
|
||||||
this.handleEditAttr(data.id);
|
|
||||||
break;
|
|
||||||
case 'delete':
|
|
||||||
this.handleDeleteAttr(data.id);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
async handleConfirm() {
|
|
||||||
this.btnLoading = true;
|
|
||||||
this.$nextTick(async () => {
|
|
||||||
const { code, data } = await this.$axios({
|
|
||||||
url: '/base/equipment-check-order/update',
|
|
||||||
method: 'put',
|
|
||||||
data: {
|
|
||||||
...this.form,
|
|
||||||
groupClass: this.form.groupClass.join(','),
|
|
||||||
checkPerson: this.form.checkPerson.join(','),
|
|
||||||
},
|
|
||||||
});
|
|
||||||
if (code == 0) {
|
|
||||||
this.$modal.msgSuccess('更新成功');
|
|
||||||
}
|
|
||||||
this.btnLoading = false;
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
this.handleCancel();
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
handleEmitFun(val) {
|
|
||||||
console.log('handleEmitFun', val);
|
|
||||||
},
|
|
||||||
|
|
||||||
init(row, detail) {
|
|
||||||
if (detail) this.disableEdit = true;
|
|
||||||
this.visible = true;
|
|
||||||
this.row = row;
|
|
||||||
this.getInfo(row);
|
|
||||||
this.getAttrList(row);
|
|
||||||
},
|
|
||||||
|
|
||||||
async getInfo(row) {
|
|
||||||
const res = await this.$axios(
|
|
||||||
'/base/equipment-check-order/get?id=' + row.id
|
|
||||||
);
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.form = res.data;
|
|
||||||
// this.form.groupClass = res.data.groupClass.split(',');
|
|
||||||
// this.form.checkPerson = res.data.checkPerson?.split(',');
|
|
||||||
this.formLoading = false;
|
|
||||||
}
|
|
||||||
this.formLoading = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
async getAttrList(row, condition = {}) {
|
|
||||||
if (!row) row = this.row;
|
|
||||||
this.attrListLoading = true;
|
|
||||||
const res = await this.$axios({
|
|
||||||
url: '/base/equipment-check-order-det/page',
|
|
||||||
method: 'get',
|
|
||||||
params: {
|
|
||||||
...this.attrQuery.params,
|
|
||||||
orderId: row.id,
|
|
||||||
...condition,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.attrList = res.data.list;
|
|
||||||
this.attrTotal = res.data.total;
|
|
||||||
}
|
|
||||||
this.attrListLoading = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
async getList(source = 'department') {
|
|
||||||
const urls = [
|
|
||||||
'/base/core-department/listAll',
|
|
||||||
'/base/group-classes/listAll',
|
|
||||||
];
|
|
||||||
let res;
|
|
||||||
switch (source) {
|
|
||||||
case 'department':
|
|
||||||
res = await this.$axios(urls[0]);
|
|
||||||
this.departmentList = res.data || [];
|
|
||||||
break;
|
|
||||||
case 'inspector':
|
|
||||||
let inspectorList = [];
|
|
||||||
const userlist = await this.$axios({
|
|
||||||
url: '/system/user/page',
|
|
||||||
params: { pageNo: 1, pageSize: 100 },
|
|
||||||
});
|
|
||||||
if (userlist.code == 0) {
|
|
||||||
inspectorList = inspectorList.concat(
|
|
||||||
(userlist.data?.list || []).map((item) => ({
|
|
||||||
label: item.username,
|
|
||||||
value: item.id,
|
|
||||||
}))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
const workerlist = await this.$axios('/base/core-worker/listAll');
|
|
||||||
if (workerlist.code == 0) {
|
|
||||||
inspectorList = inspectorList.concat(
|
|
||||||
workerlist.data.map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
this.inspectorOptions = inspectorList;
|
|
||||||
break;
|
|
||||||
case 'groupClass':
|
|
||||||
res = await this.$axios(urls[1]);
|
|
||||||
this.groupOptions = (res.data || []).map((item) => ({
|
|
||||||
label: item.name,
|
|
||||||
value: item.id,
|
|
||||||
}));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
this.formLoading = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
// 保存表单
|
|
||||||
handleSave() {
|
|
||||||
this.$refs.form.validate(async (valid) => {
|
|
||||||
if (valid) {
|
|
||||||
await this.$axios({
|
|
||||||
url: '/urlupdate', // this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'],
|
|
||||||
method: 'post', // isEdit ? 'put' : 'post',
|
|
||||||
data: this.form,
|
|
||||||
});
|
|
||||||
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
|
|
||||||
this.visible = false;
|
|
||||||
this.$emit('refreshDataList');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
handleCancel() {
|
|
||||||
this.visible = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
resetAttrform() {
|
|
||||||
this.attrForm = {
|
|
||||||
id: null,
|
|
||||||
orderId: null,
|
|
||||||
equipmentId: null,
|
|
||||||
program: null,
|
|
||||||
checkResult: null,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
|
|
||||||
// 新增属性
|
|
||||||
handleAddAttr() {
|
|
||||||
if (!this.row.id) return this.$message.error('请先选中保养记录');
|
|
||||||
this.resetAttrform();
|
|
||||||
this.attrTitle = '添加设备属性';
|
|
||||||
this.attrFormVisible = true;
|
|
||||||
},
|
|
||||||
|
|
||||||
// 编辑属性
|
|
||||||
async handleEditAttr(attrId) {
|
|
||||||
const res = await this.$axios({
|
|
||||||
url: '/base/equipment-check-order-det/get',
|
|
||||||
method: 'get',
|
|
||||||
params: { id: attrId },
|
|
||||||
});
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.attrForm = res.data;
|
|
||||||
this.attrTitle = '编辑巡检单详情';
|
|
||||||
this.attrFormVisible = true;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// 删除属性
|
|
||||||
handleDeleteAttr(attrId) {
|
|
||||||
this.$confirm('确定删除该巡检内容?', '提示', {
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning',
|
|
||||||
})
|
|
||||||
.then(async () => {
|
|
||||||
const res = await this.$axios({
|
|
||||||
url: '/base/equipment-check-order-det/delete?id=' + attrId,
|
|
||||||
method: 'delete',
|
|
||||||
});
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.$message({
|
|
||||||
message: '删除成功',
|
|
||||||
type: 'success',
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getAttrList();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
},
|
|
||||||
|
|
||||||
// 提交属性表
|
|
||||||
submitAttrForm() {
|
|
||||||
this.$refs['attrForm'].validate(async (valid) => {
|
|
||||||
if (!valid) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const isEdit = this.attrForm.id != null;
|
|
||||||
this.attrFormSubmitting = true;
|
|
||||||
const res = await this.$axios({
|
|
||||||
url: isEdit
|
|
||||||
? '/base/equipment-check-order-det/update'
|
|
||||||
: '/base/equipment-check-order-det/create',
|
|
||||||
method: isEdit ? 'put' : 'post',
|
|
||||||
data: { ...this.attrForm, orderId: this.row.id },
|
|
||||||
});
|
|
||||||
|
|
||||||
if (res.code == 0) {
|
|
||||||
this.closeAttrForm();
|
|
||||||
this.$message({
|
|
||||||
message: `${isEdit ? '更新' : '创建'}成功`,
|
|
||||||
type: 'success',
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getAttrList();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
this.attrFormSubmitting = false;
|
|
||||||
} catch (err) {
|
|
||||||
this.$message({
|
|
||||||
message: err,
|
|
||||||
type: 'error',
|
|
||||||
duration: 1500,
|
|
||||||
});
|
|
||||||
this.attrFormSubmitting = false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
closeAttrForm() {
|
|
||||||
this.attrFormVisible = false;
|
|
||||||
},
|
|
||||||
|
|
||||||
handleClick(raw) {
|
|
||||||
if (raw.type === 'delete') {
|
|
||||||
this.$confirm(
|
|
||||||
`确定对${
|
|
||||||
raw.data.name
|
|
||||||
? '[名称=' + raw.data.name + ']'
|
|
||||||
: '[序号=' + raw.data._pageIndex + ']'
|
|
||||||
}进行删除操作?`,
|
|
||||||
'提示',
|
|
||||||
{
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning',
|
|
||||||
}
|
|
||||||
)
|
|
||||||
.then(() => {
|
|
||||||
deleteProductAttr(raw.data.id).then(({ data }) => {
|
|
||||||
this.$message({
|
|
||||||
message: '操作成功',
|
|
||||||
type: 'success',
|
|
||||||
duration: 1500,
|
|
||||||
onClose: () => {
|
|
||||||
this.getList();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
});
|
|
||||||
})
|
|
||||||
.catch(() => {});
|
|
||||||
} else {
|
|
||||||
this.addNew(raw.data.id);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.drawer >>> .el-drawer {
|
|
||||||
border-radius: 8px 0 0 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-date-editor,
|
|
||||||
.drawer >>> .el-select {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer >>> .el-drawer__header {
|
|
||||||
margin: 0;
|
|
||||||
padding: 32px 32px 24px;
|
|
||||||
border-bottom: 1px solid #dcdfe6;
|
|
||||||
margin-bottom: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.small-title::before {
|
|
||||||
content: '';
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: top;
|
|
||||||
width: 4px;
|
|
||||||
height: 22px;
|
|
||||||
border-radius: 1px;
|
|
||||||
margin-right: 8px;
|
|
||||||
background-color: #0b58ff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer-body {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer-body__content {
|
|
||||||
flex: 1;
|
|
||||||
/* background: #eee; */
|
|
||||||
padding: 20px 30px;
|
|
||||||
overflow-y: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.drawer-body__footer {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
padding: 18px;
|
|
||||||
}
|
|
||||||
</style>
|
|
@ -11,6 +11,7 @@
|
|||||||
<SearchBar
|
<SearchBar
|
||||||
:formConfigs="searchBarFormConfig"
|
:formConfigs="searchBarFormConfig"
|
||||||
ref="search-bar"
|
ref="search-bar"
|
||||||
|
@select-changed="handleSearchBarChange"
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
|
|
||||||
<!-- 列表 -->
|
<!-- 列表 -->
|
||||||
@ -24,7 +25,7 @@
|
|||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
label="操作"
|
label="操作"
|
||||||
:width="70"
|
:width="120"
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleTableBtnClick" />
|
@clickBtn="handleTableBtnClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
@ -37,26 +38,47 @@
|
|||||||
:limit.sync="queryParams.pageSize"
|
:limit.sync="queryParams.pageSize"
|
||||||
@pagination="getList" />
|
@pagination="getList" />
|
||||||
|
|
||||||
<RecordDetail
|
<!-- 对话框(添加 / 修改) -->
|
||||||
ref="record-detail"
|
<base-dialog
|
||||||
v-if="detailOpen"
|
:dialogTitle="title"
|
||||||
|
:dialogVisible="open"
|
||||||
|
@close="cancel"
|
||||||
|
@cancel="cancel"
|
||||||
|
@confirm="submitForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="open"
|
||||||
|
ref="form"
|
||||||
|
v-model="form"
|
||||||
|
:disabled="mode == 'detail'"
|
||||||
|
:has-files="true"
|
||||||
|
:rows="rows" />
|
||||||
|
</base-dialog>
|
||||||
|
|
||||||
|
<addRecord
|
||||||
|
v-if="addOrUpdateVisible"
|
||||||
|
ref="addOrUpdate"
|
||||||
@refreshDataList="getList"
|
@refreshDataList="getList"
|
||||||
@destroy="detailOpen = false" />
|
@destroy="addOrUpdateVisible = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
|
import addRecord from './Record-add.vue';
|
||||||
|
import {
|
||||||
|
exportCheckLogExcel,
|
||||||
|
deleteEqCheckLog,
|
||||||
|
} from '@/api/equipment/base/inspection/record';
|
||||||
import { parseTime } from '../../core/mixins/code-filter';
|
import { parseTime } from '../../core/mixins/code-filter';
|
||||||
import RecordDetail from './Record-detail.vue';
|
|
||||||
|
|
||||||
|
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
export default {
|
export default {
|
||||||
name: 'SpecialEquipmentCheckRecord',
|
name: 'SpecialEquipmentCheckRecord',
|
||||||
components: { RecordDetail },
|
components: { addRecord },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
detailOpen: false,
|
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
searchBarKeys: ['name', 'actualCheckTime'],
|
searchBarKeys: ['name', 'actualCheckTime'],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
@ -66,50 +88,50 @@ export default {
|
|||||||
btnName: '详情',
|
btnName: '详情',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
// this.$auth.hasPermi('equipment:check-record:update')
|
this.$auth.hasPermi('equipment:check-record:update')
|
||||||
// ? {
|
? {
|
||||||
// type: 'edit',
|
type: 'edit',
|
||||||
// btnName: '修改',
|
btnName: '修改',
|
||||||
// }
|
}
|
||||||
// : undefined,
|
: undefined,
|
||||||
// this.$auth.hasPermi('equipment:check-record:delete')
|
this.$auth.hasPermi('equipment:check-record:delete')
|
||||||
// ? {
|
? {
|
||||||
// type: 'delete',
|
type: 'delete',
|
||||||
// btnName: '删除',
|
btnName: '删除',
|
||||||
// }
|
}
|
||||||
// : undefined,
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'name', label: '巡检单名称' },
|
{ prop: 'name', label: '巡检单名称' },
|
||||||
{ prop: 'department', label: '部门' },
|
{ prop: 'department', label: '部门' },
|
||||||
{ prop: 'actualCheckTime', label: '巡检时间', filter: parseTime },
|
{ prop: 'actualCheckTime', label: '巡检时间', filter: parseTime },
|
||||||
{ prop: 'groupClass', label: '班次' },
|
{ prop: 'groupClass', label: '班次' },
|
||||||
// {
|
{
|
||||||
// prop: '_detail',
|
prop: '_detail',
|
||||||
// label: '巡检内容',
|
label: '巡检内容',
|
||||||
// subcomponent: {
|
subcomponent: {
|
||||||
// name: 'ViewDetail',
|
name: 'ViewDetail',
|
||||||
// props: ['injectData'],
|
props: ['injectData'],
|
||||||
// data() {
|
data() {
|
||||||
// return {};
|
return {};
|
||||||
// },
|
},
|
||||||
// methods: {
|
methods: {
|
||||||
// handleClick() {
|
handleClick() {
|
||||||
// this.$emit('emitData', {
|
this.$emit('emitData', {
|
||||||
// action: this.injectData.label,
|
action: this.injectData.label,
|
||||||
// value: this.injectData,
|
value: this.injectData,
|
||||||
// });
|
});
|
||||||
// },
|
},
|
||||||
// },
|
},
|
||||||
// render: function (h) {
|
render: function (h) {
|
||||||
// return (
|
return (
|
||||||
// <el-button type="text" onClick={this.handleClick}>
|
<el-button type="text" onClick={this.handleClick}>
|
||||||
// 详情
|
详情
|
||||||
// </el-button>
|
</el-button>
|
||||||
// );
|
);
|
||||||
// },
|
},
|
||||||
// },
|
},
|
||||||
// },
|
},
|
||||||
{ prop: 'remark', label: '备注' },
|
{ prop: 'remark', label: '备注' },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
@ -171,41 +193,143 @@ export default {
|
|||||||
plain: true,
|
plain: true,
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// type: this.$auth.hasPermi('equipment:check-record:create')
|
type: this.$auth.hasPermi('equipment:check-record:create')
|
||||||
// ? 'button'
|
? 'button'
|
||||||
// : '',
|
: '',
|
||||||
// btnName: '新增',
|
btnName: '新增',
|
||||||
// name: 'add',
|
name: 'add',
|
||||||
// plain: true,
|
plain: true,
|
||||||
// },
|
},
|
||||||
|
],
|
||||||
|
rows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '维修单号',
|
||||||
|
prop: 'repairOrderNumber',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '设备名称',
|
||||||
|
prop: 'equipmentId',
|
||||||
|
url: '/base/core-equipment/listAll',
|
||||||
|
bind: {
|
||||||
|
filterable: true,
|
||||||
|
clearable: true,
|
||||||
|
},
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '设备名称不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
// TODO: 和班组联动
|
||||||
|
select: true,
|
||||||
|
label: '维修工',
|
||||||
|
prop: 'repairman',
|
||||||
|
// url: '/base/core-equipment/listAll',
|
||||||
|
bind: {
|
||||||
|
filterable: true,
|
||||||
|
clearable: true,
|
||||||
|
multiple: true,
|
||||||
|
},
|
||||||
|
rules: [
|
||||||
|
{ required: true, message: '维修工不能为空', trigger: 'blur' },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '联系方式',
|
||||||
|
prop: 'repairmanPhone',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
datetime: true,
|
||||||
|
label: '故障发生时间',
|
||||||
|
prop: 'faultTime',
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '故障发生时间不能为空',
|
||||||
|
trigger: 'blur',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
bind: {
|
||||||
|
format: 'yyyy-MM-dd HH:mm:ss',
|
||||||
|
'value-format': 'timestamp',
|
||||||
|
// 'value-format': 'yyyy-MM-dd HH:mm:ss',
|
||||||
|
clearable: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '故障级别',
|
||||||
|
prop: 'faultLevel', // 数据字典
|
||||||
|
options: this.getDictDatas(this.DICT_TYPE.FAULT_LEVEL),
|
||||||
|
},
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
// 是否显示弹出层
|
// 是否显示弹出层
|
||||||
open: false,
|
open: false,
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
|
actualTime: null,
|
||||||
|
configId: null,
|
||||||
special: true,
|
special: true,
|
||||||
status: 2,
|
specialType: null,
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
basePath: '/base/equipment-check-order',
|
basePath: '/base/equipment-check-order',
|
||||||
mode: null,
|
mode: null,
|
||||||
|
allSpecialEquipments: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
// this.initSearchBar();
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
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[1],
|
||||||
|
'selectOptions',
|
||||||
|
eqList.map((item) => ({
|
||||||
|
name: item.name,
|
||||||
|
id: item.id,
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
},
|
||||||
/** 查询列表 */
|
/** 查询列表 */
|
||||||
getList() {
|
getList() {
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
// 执行查询
|
// 执行查询
|
||||||
this.recv(this.queryParams).then((response) => {
|
this.recv(this.queryParams).then((response) => {
|
||||||
this.list = response.data.list;
|
// this.list = response.data.list;
|
||||||
|
this.list = [{}];
|
||||||
this.total = response.data.total;
|
this.total = response.data.total;
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
});
|
});
|
||||||
@ -214,44 +338,125 @@ export default {
|
|||||||
cancel() {
|
cancel() {
|
||||||
this.open = false;
|
this.open = false;
|
||||||
this.mode = null;
|
this.mode = null;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
/** 表单重置 */
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
id: null,
|
||||||
|
repairOrderNumber: null,
|
||||||
|
equipmentId: null,
|
||||||
|
repairman: null,
|
||||||
|
repairmanPhone: null,
|
||||||
|
faultTime: null,
|
||||||
|
faultLevel: null,
|
||||||
|
maintenanceStartTime: null,
|
||||||
|
maintenanceFinishTime: null,
|
||||||
|
faultType: null,
|
||||||
|
repairMode: null,
|
||||||
|
maintenanceStatus: null,
|
||||||
|
faultDetail: null,
|
||||||
|
maintenanceDetail: null,
|
||||||
|
remark: null,
|
||||||
|
files: [
|
||||||
|
// {
|
||||||
|
// fileName: '',
|
||||||
|
// fileType: '',
|
||||||
|
// fileUrl: '',
|
||||||
|
// },
|
||||||
|
],
|
||||||
|
};
|
||||||
|
this.resetForm('form');
|
||||||
},
|
},
|
||||||
/** 搜索按钮操作 */
|
/** 搜索按钮操作 */
|
||||||
handleQuery() {
|
handleQuery() {
|
||||||
this.queryParams.pageNo = 1;
|
this.queryParams.pageNo = 1;
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
handleDetail(row) {
|
resetQuery() {
|
||||||
this.detailOpen = true;
|
this.resetForm('queryForm');
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['record-detail'].init(row, true);
|
this.$refs.addOrUpdate.init();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
// this.reset();
|
||||||
|
// const id = row.id;
|
||||||
|
// this.info({ id }).then((response) => {
|
||||||
|
// this.form = response.data;
|
||||||
|
// this.open = true;
|
||||||
|
// this.title = '修改维修记录';
|
||||||
|
// });
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(row.id);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
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.configName + '"的数据项?'
|
||||||
|
)
|
||||||
|
.then(function () {
|
||||||
|
return deleteEqCheckLog(id);
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess('删除成功');
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
handleDetail({ id }) {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(id, true);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/** 导出按钮操作 */
|
/** 导出按钮操作 */
|
||||||
handleExport() {
|
handleExport() {
|
||||||
|
// 处理查询参数
|
||||||
|
let params = { ...this.queryParams };
|
||||||
|
params.pageNo = undefined;
|
||||||
|
params.pageSize = undefined;
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确认导出所有设备巡检记录?')
|
.confirm('是否确认导出所有设备巡检记录?')
|
||||||
.then(() => {
|
.then(() => {
|
||||||
this.exportLoading = true;
|
this.exportLoading = true;
|
||||||
return this.$axios({
|
return exportCheckLogExcel(params);
|
||||||
url: '/base/equipment-check-order/export-excel',
|
|
||||||
params: {
|
|
||||||
name: this.queryParams.name,
|
|
||||||
status: 2,
|
|
||||||
special: true,
|
|
||||||
},
|
|
||||||
responseType: 'blob',
|
|
||||||
});
|
|
||||||
})
|
})
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
// const link = document.createElement('a');
|
|
||||||
// link.href = window.URL.createObjectURL(new Blob([response]));
|
|
||||||
// link.download = '设备巡检记录.xls';
|
|
||||||
// document.body.appendChild(link);
|
|
||||||
// link.click();
|
|
||||||
// document.body.removeChild(link);
|
|
||||||
// window.URL.revokeObjectURL(link.href);
|
|
||||||
this.$download.excel(response, '设备巡检记录.xls');
|
this.$download.excel(response, '设备巡检记录.xls');
|
||||||
this.exportLoading = false;
|
this.exportLoading = false;
|
||||||
})
|
})
|
||||||
|
@ -86,6 +86,8 @@
|
|||||||
v-if="recordDetailVisible"
|
v-if="recordDetailVisible"
|
||||||
ref="recordDetailDrawer"
|
ref="recordDetailDrawer"
|
||||||
@closed="recordDetailVisible = false" />
|
@closed="recordDetailVisible = false" />
|
||||||
|
|
||||||
|
<!-- 详情 -->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user