merge test
This commit is contained in:
commit
c5925e54cd
5
.env.dev
5
.env.dev
@ -1,8 +1,8 @@
|
|||||||
###
|
###
|
||||||
# @Author: Do not edit
|
# @Author: Do not edit
|
||||||
# @Date: 2023-08-29 09:40:39
|
# @Date: 2023-08-29 09:40:39
|
||||||
# @LastEditTime: 2024-02-23 16:03:51
|
# @LastEditTime: 2024-02-26 08:45:43
|
||||||
# @LastEditors: zhp
|
# @LastEditors: DY
|
||||||
# @Description:
|
# @Description:
|
||||||
###
|
###
|
||||||
# 开发环境配置
|
# 开发环境配置
|
||||||
@ -23,7 +23,6 @@ VUE_APP_TITLE = MES系统
|
|||||||
VUE_APP_BASE_API = 'http://192.168.0.33:48082'
|
VUE_APP_BASE_API = 'http://192.168.0.33:48082'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.62:48082'
|
# VUE_APP_BASE_API = 'http://192.168.1.62:48082'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.78:48082'
|
# VUE_APP_BASE_API = 'http://192.168.1.78:48082'
|
||||||
# VUE_APP_BASE_API = 'http://192.168.1.78:48082'
|
|
||||||
# socket地址
|
# socket地址
|
||||||
VUE_APP_Socket_API = 'ws://192.168.0.30:8888'
|
VUE_APP_Socket_API = 'ws://192.168.0.30:8888'
|
||||||
VUE_APP_Socket_Dcs_API = 'ws://10.70.180.10:8081'
|
VUE_APP_Socket_Dcs_API = 'ws://10.70.180.10:8081'
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: Do not edit
|
* @Author: Do not edit
|
||||||
* @Date: 2023-11-08 15:56:52
|
* @Date: 2023-11-08 15:56:52
|
||||||
* @LastEditTime: 2023-11-16 20:15:02
|
* @LastEditTime: 2024-02-24 18:51:54
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@ -68,3 +68,38 @@ export function deleteEqCheckLog(id) {
|
|||||||
method: 'delete'
|
method: 'delete'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获得设备巡检单详情分页
|
||||||
|
export function getCheckOrderDetPage(query) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order-det/page',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建设备巡检单详情
|
||||||
|
export function createCheckOrderDet(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order-det/create',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新设备巡检单详情
|
||||||
|
export function updateCheckOrderDet(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order-det/update',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除设备巡检单详情
|
||||||
|
export function deleteCheckOrderDet(id) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order-det/delete?id=' + id,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: Do not edit
|
* @Author: Do not edit
|
||||||
* @Date: 2023-11-08 15:56:52
|
* @Date: 2023-11-08 15:56:52
|
||||||
* @LastEditTime: 2023-11-25 16:22:49
|
* @LastEditTime: 2024-02-25 22:23:54
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@ -100,3 +100,63 @@ export function updateCheckConfig(data) {
|
|||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 创建巡检单
|
||||||
|
export function createCheckOrder(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order/create',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新巡检单
|
||||||
|
export function updateCheckOrder(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order/update',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得设备巡检单code
|
||||||
|
export function getOrderCode() {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order/getCode',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得巡检单
|
||||||
|
export function getCheckOrder(id) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order/get?id=' + id,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得巡检单详细
|
||||||
|
export function getCheckOrderDet(id) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order-det/get?id=' + id,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建巡检单详情
|
||||||
|
export function createCheckOrderDet(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order-det/create',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新巡检单详情
|
||||||
|
export function updateCheckOrderDet(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-check-order-det/update',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
104
src/api/equipment/base/maintain/planconfig.js
Normal file
104
src/api/equipment/base/maintain/planconfig.js
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
/*
|
||||||
|
* @Author: Do not edit
|
||||||
|
* @Date: 2024-02-22 15:14:19
|
||||||
|
* @LastEditTime: 2024-02-23 19:18:22
|
||||||
|
* @LastEditors: DY
|
||||||
|
* @Description:
|
||||||
|
*/
|
||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 获得设备保养计划配置分页
|
||||||
|
export function getPlanPage(query) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan/page',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建设备保养计划
|
||||||
|
export function createPlan(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan/create',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新设备保养计划
|
||||||
|
export function updatePlan(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan/update',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得计划code
|
||||||
|
export function getCode() {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan/getCode',
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得计划
|
||||||
|
export function getPlan(query) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan/get',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得设备保养计划配置详情分页
|
||||||
|
export function getPlanDetPage(query) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan-det/page',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 创建设备保养计划详情
|
||||||
|
export function createPlanDet(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan-det/create',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新设备保养计划详情
|
||||||
|
export function updatePlanDet(data) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan-det/update',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得计划详情
|
||||||
|
export function getPlanDet(query) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan-det/get',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除设备保养计划
|
||||||
|
export function deletePlan(id) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan/delete?id=' + id,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除设备保养计划详情
|
||||||
|
export function deletePlanDet(id) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-plan-det/delete?id=' + id,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: Do not edit
|
* @Author: Do not edit
|
||||||
* @Date: 2023-11-08 15:56:52
|
* @Date: 2023-11-08 15:56:52
|
||||||
* @LastEditTime: 2023-11-23 19:10:07
|
* @LastEditTime: 2024-02-24 16:53:33
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@ -42,3 +42,29 @@ export function exportMaintainLogExcel(query) {
|
|||||||
responseType: 'blob'
|
responseType: 'blob'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获得保养记录
|
||||||
|
export function getLog(query) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-log/get',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得设备保养记录详情分页
|
||||||
|
export function getLogDetPage(query) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-log-det/page',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除设备保养记录详情
|
||||||
|
export function deleteLogDet(id) {
|
||||||
|
return request({
|
||||||
|
url: '/base/equipment-maintain-log-det/delete?id=' + id,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
/*
|
/*
|
||||||
* @Date: 2020-12-29 16:49:28
|
* @Date: 2020-12-29 16:49:28
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2023-09-12 11:13:34
|
* @LastEditTime: 2024-02-23 14:50:22
|
||||||
* @FilePath: \basic-admin\src\filters\basicData\index.js
|
* @FilePath: \basic-admin\src\filters\basicData\index.js
|
||||||
* @Description:
|
* @Description:
|
||||||
*/
|
*/
|
||||||
@ -62,6 +62,17 @@ export function parseTime(time, pattern) {
|
|||||||
})
|
})
|
||||||
return time_str
|
return time_str
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function toDay(time) {
|
||||||
|
if (time < 24) {
|
||||||
|
return time + '小时'
|
||||||
|
} else {
|
||||||
|
const day = ~~(time / 24)
|
||||||
|
const hour = time % 24
|
||||||
|
return day + '天' + hour + '小时'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export default function (dictTable) {
|
export default function (dictTable) {
|
||||||
return function (val) {
|
return function (val) {
|
||||||
return table?.[dictTable]?.[val]
|
return table?.[dictTable]?.[val]
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
<base-dialog
|
<base-dialog
|
||||||
:dialogTitle="title"
|
:dialogTitle="title"
|
||||||
:dialogVisible="open"
|
:dialogVisible="open"
|
||||||
width="700px"
|
width="30%"
|
||||||
@close="cancel"
|
@close="cancel"
|
||||||
@cancel="cancel"
|
@cancel="cancel"
|
||||||
@confirm="submitForm">
|
@confirm="submitForm">
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2024-02-21 18:31:44
|
* @LastEditTime: 2024-02-22 10:08:13
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -18,6 +18,7 @@
|
|||||||
v-model="dataForm.equipmentId"
|
v-model="dataForm.equipmentId"
|
||||||
:options="plLineList"
|
:options="plLineList"
|
||||||
:props="{value: 'id', label: 'name', children: 'children'}"
|
:props="{value: 'id', label: 'name', children: 'children'}"
|
||||||
|
style="width: 100%"
|
||||||
filterable />
|
filterable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="关联表名" prop="plcId">
|
<el-form-item label="关联表名" prop="plcId">
|
||||||
@ -110,11 +111,9 @@ export default {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
console.log('你好', this.plLineList)
|
|
||||||
},
|
},
|
||||||
// 表单提交
|
// 表单提交
|
||||||
dataFormSubmit() {
|
dataFormSubmit() {
|
||||||
console.log('11', this.dataForm.equipmentId)
|
|
||||||
this.$refs["dataForm"].validate((valid) => {
|
this.$refs["dataForm"].validate((valid) => {
|
||||||
if (!valid) {
|
if (!valid) {
|
||||||
return false;
|
return false;
|
||||||
|
312
src/views/equipment/base/inspection/Record/addContent.vue
Normal file
312
src/views/equipment/base/inspection/Record/addContent.vue
Normal file
@ -0,0 +1,312 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2021-11-18 14:16:25
|
||||||
|
* @LastEditors: DY
|
||||||
|
* @LastEditTime: 2024-02-24 19:02:14
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible.sync="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="isdetail"
|
||||||
|
class="drawer"
|
||||||
|
size="60%">
|
||||||
|
<small-title slot="title" :no-padding="true">
|
||||||
|
{{ '设备巡检记录详情' }}
|
||||||
|
</small-title>
|
||||||
|
<div class="content">
|
||||||
|
<div class="visual-part">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">巡检单名称</div>
|
||||||
|
<div class="lightTip">{{ dataForm.planMaintainWorker }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">部门</div>
|
||||||
|
<div class="lightTip">{{ dataForm.maintainWorker }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">班次</div>
|
||||||
|
<div class="lightTip">{{ dataForm.maintainWorker }}</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">巡检人</div>
|
||||||
|
<div class="lightTip">{{ dataForm.responsible }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">巡检时间</div>
|
||||||
|
<div class="lightTip">{{ parseTime(dataForm.actualTime) }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">确认人</div>
|
||||||
|
<div class="lightTip">{{ dataForm.maintainWorker }}</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="attr-list" v-if="idAttrShow">
|
||||||
|
<small-title
|
||||||
|
style="margin: 16px 0; padding-left: 8px"
|
||||||
|
:no-padding="true">
|
||||||
|
巡检内容
|
||||||
|
</small-title>
|
||||||
|
|
||||||
|
<div v-if="!isdetail" class="action_btn">
|
||||||
|
<template>
|
||||||
|
<span style="display: inline-block;">
|
||||||
|
<el-button type="text" @click="addNew()" icon="el-icon-plus">新增</el-button>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize"
|
||||||
|
:table-data="planList">
|
||||||
|
<method-btn
|
||||||
|
v-if="!isdetail"
|
||||||
|
slot="handleBtn"
|
||||||
|
:width="120"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleClick" />
|
||||||
|
</base-table>
|
||||||
|
<pagination
|
||||||
|
v-show="listQuery.total > 0"
|
||||||
|
:total="listQuery.total"
|
||||||
|
:page.sync="listQuery.pageNo"
|
||||||
|
:limit.sync="listQuery.pageSize"
|
||||||
|
:page-sizes="[5, 10, 15]"
|
||||||
|
@pagination="getList" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="!isdetail" class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="goback()">取消</el-button>
|
||||||
|
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- <attr-add
|
||||||
|
v-if="addOrUpdateVisible"
|
||||||
|
ref="addOrUpdate"
|
||||||
|
:plan-id="dataForm.id"
|
||||||
|
@refreshDataList="getList" /> -->
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import basicAdd from '../../../../core/mixins/basic-add';
|
||||||
|
import { getEqCheckLog, deleteCheckOrderDet, getCheckOrderDetPage } from '@/api/equipment/base/inspection/record';
|
||||||
|
// import { listData } from "@/api/system/dict/data";
|
||||||
|
import SmallTitle from '../../maintain/PlanConfig/SmallTitle.vue';
|
||||||
|
import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
// import attrAdd from './attr-add';
|
||||||
|
// import { getDictDatas } from "@/utils/dict";
|
||||||
|
|
||||||
|
const tableBtn = [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'program',
|
||||||
|
label: '巡检项目',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'checkResult',
|
||||||
|
label: '巡检结果',
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mixins: [basicAdd],
|
||||||
|
components: { SmallTitle },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tableBtn,
|
||||||
|
tableProps,
|
||||||
|
addOrUpdateVisible: false,
|
||||||
|
urlOptions: {
|
||||||
|
isGetCode: false,
|
||||||
|
infoURL: getEqCheckLog
|
||||||
|
},
|
||||||
|
listQuery: {
|
||||||
|
pageSize: 99,
|
||||||
|
pageNo: 1,
|
||||||
|
total: 0
|
||||||
|
},
|
||||||
|
dataForm: {},
|
||||||
|
planList: [],
|
||||||
|
visible: false,
|
||||||
|
isdetail: false,
|
||||||
|
idAttrShow: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {},
|
||||||
|
methods: {
|
||||||
|
initData() {
|
||||||
|
this.planList.splice(0);
|
||||||
|
this.listQuery.total = 0;
|
||||||
|
},
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`是否确认删除保养项目名为"${raw.data.program}"的数据项?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deleteCheckOrderDet(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getList() {
|
||||||
|
// 获取巡检单详情分页
|
||||||
|
getCheckOrderDetPage({
|
||||||
|
...this.listQuery,
|
||||||
|
orderId: this.dataForm.id,
|
||||||
|
}).then((response) => {
|
||||||
|
this.planList = response.data.list;
|
||||||
|
this.listQuery.total = response.data.total;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
init(id, isdetail) {
|
||||||
|
this.initData();
|
||||||
|
this.isdetail = isdetail || false;
|
||||||
|
this.dataForm.id = id || undefined;
|
||||||
|
this.visible = true;
|
||||||
|
if (id) {
|
||||||
|
this.idAttrShow = true
|
||||||
|
} else {
|
||||||
|
this.idAttrShow = false
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
// 获取巡检记录详情
|
||||||
|
this.urlOptions.infoURL(id).then(response => {
|
||||||
|
this.dataForm = response.data;
|
||||||
|
});
|
||||||
|
// 获取详情分页
|
||||||
|
this.getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
goback() {
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.visible = false;
|
||||||
|
// this.initData();
|
||||||
|
},
|
||||||
|
// 新增 / 修改
|
||||||
|
addNew(id) {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(id);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.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;
|
||||||
|
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: 18vh;
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
.action_btn {
|
||||||
|
float: right;
|
||||||
|
margin: -40px 15px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.add {
|
||||||
|
color: #0b58ff;
|
||||||
|
}
|
||||||
|
.blodTip {
|
||||||
|
height: 16px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: rgba(0,0,0,0.85);
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
.lightTip {
|
||||||
|
/* height: 16px; */
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: rgba(102,102,102,0.75);
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -50,6 +50,11 @@
|
|||||||
v-if="addOrUpdateVisible"
|
v-if="addOrUpdateVisible"
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
@refreshDataList="getList" />
|
@refreshDataList="getList" />
|
||||||
|
|
||||||
|
<add-content
|
||||||
|
v-if="addContent"
|
||||||
|
ref="addContent"
|
||||||
|
@refreshDataList="addContent = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -57,60 +62,84 @@
|
|||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import addRecord from './addRecord.vue';
|
import addRecord from './addRecord.vue';
|
||||||
|
import AddContent from './addContent.vue';
|
||||||
import { exportCheckLogExcel, deleteEqCheckLog } from '@/api/equipment/base/inspection/record'
|
import { exportCheckLogExcel, deleteEqCheckLog } from '@/api/equipment/base/inspection/record'
|
||||||
import { parseTime } from '../../../../core/mixins/code-filter';
|
import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
|
||||||
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
|
const btn = {
|
||||||
|
name: 'tableBtn',
|
||||||
|
props: ['injectData'],
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleClick() {
|
||||||
|
this.$emit('emitData', { action: this.injectData.label, value: this.injectData });
|
||||||
|
},
|
||||||
|
},
|
||||||
|
render: function (h) {
|
||||||
|
return (
|
||||||
|
<el-button type="text" onClick={this.handleClick}>
|
||||||
|
{this.injectData.name}
|
||||||
|
</el-button>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentRepair',
|
name: 'EquipmentInspectionRecord',
|
||||||
components: { addRecord },
|
components: { addRecord, AddContent },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
searchBarKeys: ['equipmentId', 'actualTime'],
|
searchBarKeys: ['equipmentId', 'actualTime'],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('equipment:check-record:detail')
|
// this.$auth.hasPermi('equipment:check-record:detail')
|
||||||
? {
|
// ? {
|
||||||
type: 'detail',
|
// type: 'detail',
|
||||||
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: 'configName', label: '配置名称' },
|
{ prop: 'configName', label: '巡检单名称' },
|
||||||
{ prop: 'equipmentName', label: '设备名称' },
|
{ prop: 'equipmentName', label: '部门' },
|
||||||
{ prop: 'origin', label: '数据来源', filter: (val) => ['', '手动', 'PDA'][val] },
|
{ prop: 'actualTime1', label: '巡检时间', filter: parseTime },
|
||||||
|
{ prop: 'actualTime', label: '班次' },
|
||||||
|
{ prop: 'opt', label: '巡检内容', name: '详情', subcomponent: btn },
|
||||||
|
{ prop: 'remark', label: '备注' }
|
||||||
|
// { prop: 'origin', label: '数据来源', filter: (val) => ['', '手动', 'PDA'][val] },
|
||||||
// { prop: 'sectionName', label: '计划巡检时间' },
|
// { prop: 'sectionName', label: '计划巡检时间' },
|
||||||
{ prop: 'actualTime', label: '实际巡检时间', filter: parseTime },
|
|
||||||
// { prop: 'maintenanceDetail', label: '完成状态' },
|
// { prop: 'maintenanceDetail', label: '完成状态' },
|
||||||
{ prop: 'responsible', label: '巡检人' },
|
// { prop: 'responsible', label: '巡检人' },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '设备',
|
label: '巡检单名称',
|
||||||
placeholder: '请选择设备',
|
placeholder: '请选择巡检单',
|
||||||
param: 'equipmentId',
|
param: 'equipmentId',
|
||||||
filterable: true
|
filterable: true
|
||||||
},
|
},
|
||||||
// 开始结束时间
|
// 开始结束时间
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '时间段',
|
label: '巡检时间',
|
||||||
dateType: 'daterange', // datetimerange
|
dateType: 'daterange', // datetimerange
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
@ -138,16 +167,16 @@ export default {
|
|||||||
name: 'export',
|
name: 'export',
|
||||||
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,
|
||||||
color: 'success',
|
// color: 'success',
|
||||||
},
|
// },
|
||||||
],
|
],
|
||||||
rows: [
|
rows: [
|
||||||
[
|
[
|
||||||
@ -231,6 +260,17 @@ export default {
|
|||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
handleEmitFun({action, value}) {
|
||||||
|
switch (action) {
|
||||||
|
// 查看详情
|
||||||
|
case '巡检内容':
|
||||||
|
this.addContent = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addContent.init(value.id, true);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
initSearchBar() {
|
initSearchBar() {
|
||||||
this.http('/base/core-equipment/page', 'get', {
|
this.http('/base/core-equipment/page', 'get', {
|
||||||
special: false,
|
special: false,
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2023-12-01 11:02:43
|
* @LastEditTime: 2024-02-26 08:40:22
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -13,34 +13,25 @@
|
|||||||
class="drawer"
|
class="drawer"
|
||||||
size="50%">
|
size="50%">
|
||||||
<small-title slot="title" :no-padding="true">
|
<small-title slot="title" :no-padding="true">
|
||||||
{{ isdetail ? '详情' : '添加巡检' }}
|
<!-- {{ isdetail ? '详情' : '添加巡检' }} -->
|
||||||
|
{{ '添加内容' }}
|
||||||
</small-title>
|
</small-title>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="visual-part">
|
<div class="visual-part">
|
||||||
<el-form
|
<el-row :gutter="20">
|
||||||
:model="dataForm"
|
<el-col :span="8">
|
||||||
:rules="dataRule"
|
<div class="blodTip">巡检单名称</div>
|
||||||
ref="dataForm"
|
<div class="lightTip">{{ dataForm.name }}</div>
|
||||||
@keyup.enter.native="dataFormSubmit()"
|
</el-col>
|
||||||
label-width="100px"
|
<el-col :span="8">
|
||||||
label-position="top">
|
<div class="blodTip">部门</div>
|
||||||
<el-row :gutter="20">
|
<div class="lightTip">{{ dataForm.department }}</div>
|
||||||
<el-col :span="12">
|
</el-col>
|
||||||
<el-form-item label="设备名称" prop="equipmentName">
|
<el-col :span="8">
|
||||||
<el-input v-model="dataForm.equipmentName" disabled clearable placeholder="请输入设备名称" />
|
<div class="blodTip">巡检时间</div>
|
||||||
</el-form-item>
|
<div class="lightTip">{{ parseTime(dataForm.planCheckTime) }}</div>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
</el-row>
|
||||||
<el-form-item label="设备编码" prop="equipmentCode">
|
|
||||||
<el-input
|
|
||||||
v-model="dataForm.equipmentCode"
|
|
||||||
clearable
|
|
||||||
disabled
|
|
||||||
placeholder="请输入设备编码" />
|
|
||||||
</el-form-item>
|
|
||||||
</el-col>
|
|
||||||
</el-row>
|
|
||||||
</el-form>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<el-divider />
|
<el-divider />
|
||||||
@ -49,7 +40,7 @@
|
|||||||
<small-title
|
<small-title
|
||||||
style="margin: 16px 0; padding-left: 8px"
|
style="margin: 16px 0; padding-left: 8px"
|
||||||
:no-padding="true">
|
:no-padding="true">
|
||||||
巡检项目
|
巡检内容
|
||||||
</small-title>
|
</small-title>
|
||||||
|
|
||||||
<div v-if="!isdetail" class="action_btn">
|
<div v-if="!isdetail" class="action_btn">
|
||||||
@ -90,16 +81,18 @@
|
|||||||
<attr-add
|
<attr-add
|
||||||
v-if="addOrUpdateVisible"
|
v-if="addOrUpdateVisible"
|
||||||
ref="addOrUpdate"
|
ref="addOrUpdate"
|
||||||
:config-id="dataForm.id"
|
:order-id="dataForm.id"
|
||||||
@refreshDataList="getList" />
|
@refreshDataList="getList" />
|
||||||
</el-drawer>
|
</el-drawer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getEqCheck, getCheckDetPage, deleteCheckDet } from "@/api/equipment/base/inspection/settings";
|
import { getCheckOrder } from "@/api/equipment/base/inspection/settings";
|
||||||
|
import { deleteCheckOrderDet, getCheckOrderDetPage } from '@/api/equipment/base/inspection/record';
|
||||||
import SmallTitle from './SmallTitle';
|
import SmallTitle from './SmallTitle';
|
||||||
import attrAdd from './attr-add';
|
import attrAdd from './attr-add';
|
||||||
import {DICT_TYPE, getDictDatas} from "@/utils/dict";
|
import {DICT_TYPE, getDictDatas} from "@/utils/dict";
|
||||||
|
import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
|
||||||
const tableBtn = [
|
const tableBtn = [
|
||||||
{
|
{
|
||||||
@ -112,22 +105,14 @@ const tableBtn = [
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
const tableProps = [
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
prop: 'program',
|
prop: 'program',
|
||||||
label: '巡检项目',
|
label: '检查项目',
|
||||||
},
|
}
|
||||||
{
|
|
||||||
prop: 'content',
|
|
||||||
label: '巡检内容',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'code',
|
|
||||||
label: '巡检内容编码',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
prop: 'description',
|
|
||||||
label: '备注',
|
|
||||||
},
|
|
||||||
];
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -138,7 +123,7 @@ export default {
|
|||||||
tableProps,
|
tableProps,
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
infoURL: getEqCheck,
|
infoURL: getCheckOrder,
|
||||||
},
|
},
|
||||||
listQuery: {
|
listQuery: {
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
@ -147,26 +132,13 @@ export default {
|
|||||||
},
|
},
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: undefined,
|
id: undefined,
|
||||||
code: undefined,
|
name: undefined,
|
||||||
name: '',
|
department: undefined,
|
||||||
materialType: undefined,
|
planCheckTime: undefined
|
||||||
productType: undefined,
|
|
||||||
area: undefined,
|
|
||||||
specifications: undefined,
|
|
||||||
processTime: 0,
|
|
||||||
remark: undefined,
|
|
||||||
unit: undefined
|
|
||||||
},
|
},
|
||||||
checkDetList: [],
|
checkDetList: [],
|
||||||
visible: false,
|
visible: false,
|
||||||
isdetail: false,
|
isdetail: false
|
||||||
dataRule: {
|
|
||||||
code: [{ required: true, message: "物料编码不能为空", trigger: "blur" }],
|
|
||||||
name: [{ required: true, message: "物料名称不能为空", trigger: "blur" }],
|
|
||||||
materialType: [{ required: true, message: "物料类型不能为空", trigger: "change" }],
|
|
||||||
productType: [{ required: true, message: "产品类型不能为空", trigger: "change" }],
|
|
||||||
processTime: [{ required: true, message: "产线生产单位用时不能为空", trigger: "blur" }]
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
mounted() {},
|
mounted() {},
|
||||||
@ -187,7 +159,7 @@ export default {
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
deleteCheckDet(raw.data.id).then(({ data }) => {
|
deleteCheckOrderDet(raw.data.id).then(({ data }) => {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: '操作成功',
|
message: '操作成功',
|
||||||
type: 'success',
|
type: 'success',
|
||||||
@ -205,9 +177,9 @@ export default {
|
|||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
// 获取巡检项目分页
|
// 获取巡检项目分页
|
||||||
getCheckDetPage({
|
getCheckOrderDetPage({
|
||||||
...this.listQuery,
|
...this.listQuery,
|
||||||
configId: this.dataForm.id,
|
orderId: this.dataForm.id,
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
this.checkDetList = response.data.list;
|
this.checkDetList = response.data.list;
|
||||||
this.listQuery.total = response.data.total;
|
this.listQuery.total = response.data.total;
|
||||||
@ -220,7 +192,7 @@ export default {
|
|||||||
this.visible = true;
|
this.visible = true;
|
||||||
|
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields();
|
// this.$refs['dataForm'].resetFields();
|
||||||
|
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
// 获取设备巡检详情
|
// 获取设备巡检详情
|
||||||
@ -287,7 +259,7 @@ export default {
|
|||||||
|
|
||||||
.drawer >>> .visual-part {
|
.drawer >>> .visual-part {
|
||||||
flex: 1 auto;
|
flex: 1 auto;
|
||||||
max-height: 16vh;
|
max-height: 10vh;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
padding-right: 10px; /* 调整滚动条样式 */
|
padding-right: 10px; /* 调整滚动条样式 */
|
||||||
@ -311,4 +283,18 @@ export default {
|
|||||||
.add {
|
.add {
|
||||||
color: #0b58ff;
|
color: #0b58ff;
|
||||||
}
|
}
|
||||||
|
.blodTip {
|
||||||
|
height: 16px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: rgba(0,0,0,0.85);
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
.lightTip {
|
||||||
|
/* height: 16px; */
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: rgba(102,102,102,0.75);
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* @Author: zwq
|
* @Author: zwq
|
||||||
* @Date: 2021-11-18 14:16:25
|
* @Date: 2021-11-18 14:16:25
|
||||||
* @LastEditors: DY
|
* @LastEditors: DY
|
||||||
* @LastEditTime: 2023-11-25 16:23:13
|
* @LastEditTime: 2024-02-24 20:50:51
|
||||||
* @Description:
|
* @Description:
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
@ -11,44 +11,83 @@
|
|||||||
:rules="dataRule"
|
:rules="dataRule"
|
||||||
ref="dataForm"
|
ref="dataForm"
|
||||||
@keyup.enter.native="dataFormSubmit()"
|
@keyup.enter.native="dataFormSubmit()"
|
||||||
label-width="80px">
|
label-width="120px">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="配置名称" prop="name">
|
<el-form-item label="巡检单名称" prop="name">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="dataForm.name"
|
v-model="dataForm.name"
|
||||||
placeholder="请输入配置名称" />
|
placeholder="请输入巡检单名称" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="配置编码" prop="code">
|
<el-form-item label="巡检单编码" prop="code">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="dataForm.code"
|
v-model="dataForm.code"
|
||||||
placeholder="请输入配置编码" />
|
placeholder="请输入巡检单编码" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="设备名称" prop="equipmentId">
|
<el-form-item
|
||||||
|
label="部门"
|
||||||
|
prop="departmentId"
|
||||||
|
:rules="[{ required: true, message: '请选择部门', trigger: 'blur' }]">
|
||||||
<el-select
|
<el-select
|
||||||
v-model="dataForm.equipmentId"
|
v-model="dataForm.departmentId"
|
||||||
filterable
|
:placeholder="`请选择部门`"
|
||||||
style="width: 100%"
|
style="width: 100%">
|
||||||
placeholder="请选择设备名称"
|
|
||||||
@change="setCode">
|
|
||||||
<el-option
|
<el-option
|
||||||
v-for="dict in eqList"
|
v-for="opt in departmentOptions"
|
||||||
:key="dict.id"
|
:key="opt.id"
|
||||||
:label="dict.name"
|
:label="opt.name"
|
||||||
:value="dict.id" />
|
:value="opt.id" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="设备编码" prop="equipmentCode">
|
<el-form-item label="计划巡检时间" prop="planCheckTime">
|
||||||
<el-input v-model="dataForm.equipmentCode" disabled placeholder="请输入设备编码" />
|
<el-date-picker
|
||||||
</el-form-item>
|
v-model="dataForm.planCheckTime"
|
||||||
|
type="datetime"
|
||||||
|
:placeholder="`请选择计划巡检时间`"
|
||||||
|
value-format="timestamp"
|
||||||
|
style="width: 100%" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="确认时限 (时)" prop="confirmTimeLimit">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.confirmTimeLimit"
|
||||||
|
:placeholder="`请输入确认时限`" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="12">
|
||||||
|
<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.id"
|
||||||
|
:label="d.name"
|
||||||
|
:value="d.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="12">
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="dataForm.remark" placeholder="请输入备注" />
|
||||||
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
@ -56,8 +95,10 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import basicAdd from '../../../../core/mixins/basic-add';
|
import basicAdd from '../../../../core/mixins/basic-add';
|
||||||
import { getEqCheck, getCode, createCheckConfig, updateCheckConfig } from "@/api/equipment/base/inspection/settings";
|
import { getCheckOrder, getOrderCode, createCheckOrder, updateCheckOrder } from "@/api/equipment/base/inspection/settings";
|
||||||
import { getEquipmentAll } from '@/api/base/equipment'
|
import { getCoreDepartmentList } from "@/api/base/coreDepartment";
|
||||||
|
import { groupClassesListAll } from '@/api/monitoring/teamProduction'
|
||||||
|
// import { getEquipmentAll } from '@/api/base/equipment'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
mixins: [basicAdd],
|
mixins: [basicAdd],
|
||||||
@ -65,23 +106,36 @@ export default {
|
|||||||
return {
|
return {
|
||||||
urlOptions: {
|
urlOptions: {
|
||||||
isGetCode: true,
|
isGetCode: true,
|
||||||
codeURL: getCode,
|
codeURL: getOrderCode,
|
||||||
createURL: createCheckConfig,
|
createURL: createCheckOrder,
|
||||||
updateURL: updateCheckConfig,
|
updateURL: updateCheckOrder,
|
||||||
infoURL: getEqCheck,
|
infoURL: getCheckOrder,
|
||||||
},
|
},
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: undefined,
|
id: null,
|
||||||
code: undefined,
|
code: null,
|
||||||
name: undefined,
|
name: null,
|
||||||
equipmentId: undefined,
|
departmentId: null,
|
||||||
equipmentCode: undefined
|
planCheckTime: null,
|
||||||
|
confirmTimeLimit: null,
|
||||||
|
groupClass: null,
|
||||||
|
remark: null
|
||||||
},
|
},
|
||||||
eqList: [],
|
groupOptions: [],
|
||||||
|
departmentOptions: [],
|
||||||
dataRule: {
|
dataRule: {
|
||||||
equipmentId: [{ required: true, message: "设备不能为空", trigger: "blur" }],
|
confirmTimeLimit: [
|
||||||
code: [{ required: true, message: "配置编码不能为空", trigger: "blur" }],
|
{ required: true, message: '确认时限不能为空', trigger: 'blur' }
|
||||||
name: [{ required: true, message: "配置名称不能为空", trigger: "blur" }],
|
],
|
||||||
|
code: [
|
||||||
|
{ required: true, message: '巡检单编码不能为空', trigger: 'blur' }
|
||||||
|
],
|
||||||
|
name: [
|
||||||
|
{ required: true, message: '巡检单名称不能为空', trigger: 'blur' }
|
||||||
|
],
|
||||||
|
planCheckTime: [
|
||||||
|
{ required: true, message: '计划巡检时间不能为空', trigger: 'blur' }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@ -90,16 +144,47 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getDict() {
|
async getDict() {
|
||||||
// 设备列表
|
// 部门列表
|
||||||
const res = await getEquipmentAll()
|
const res = await getCoreDepartmentList();
|
||||||
this.eqList = res.data
|
this.departmentOptions = res.data || [];
|
||||||
|
const res1 = await groupClassesListAll();
|
||||||
|
this.groupOptions = res1.data || [];
|
||||||
|
// const res = await getEquipmentAll()
|
||||||
|
// this.eqList = res.data
|
||||||
},
|
},
|
||||||
setCode() {
|
// 表单提交
|
||||||
const chooseM = this.eqList.filter(item => {
|
dataFormSubmit() {
|
||||||
return item.id === this.dataForm.equipmentId
|
this.$refs["dataForm"].validate((valid) => {
|
||||||
})
|
if (!valid) {
|
||||||
this.dataForm.equipmentCode = chooseM[0].code
|
return false;
|
||||||
}
|
}
|
||||||
|
// 修改的提交
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
this.urlOptions.updateURL({
|
||||||
|
...this.dataForm,
|
||||||
|
special: false,
|
||||||
|
status: 0,
|
||||||
|
groupClass: this.dataForm.groupClass.join(',')
|
||||||
|
}).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit("refreshDataList");
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 添加的提交
|
||||||
|
this.urlOptions.createURL({
|
||||||
|
...this.dataForm,
|
||||||
|
special: false,
|
||||||
|
status: 0,
|
||||||
|
groupClass: this.dataForm.groupClass.join(',')
|
||||||
|
}).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit("refreshDataList");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -17,18 +17,32 @@
|
|||||||
ref="dataForm"
|
ref="dataForm"
|
||||||
:model="dataForm"
|
:model="dataForm"
|
||||||
:rules="dataRule"
|
:rules="dataRule"
|
||||||
label-width="60px"
|
label-width="90px"
|
||||||
@keyup.enter.native="dataFormSubmit()">
|
@keyup.enter.native="dataFormSubmit()">
|
||||||
<el-form-item label="巡检" prop="checkId">
|
<el-form-item label="设备名称" prop="equipmentId">
|
||||||
<el-select v-model="dataForm.checkId" filterable placeholder="请选择巡检" style="width: 100%">
|
<el-select
|
||||||
<el-option v-for="dict in checkList" :key="dict.id" :label="dict.content"
|
v-model="dataForm.equipmentId"
|
||||||
|
filterable
|
||||||
|
clearable
|
||||||
|
placeholder="请选择设备名称"
|
||||||
|
style="width: 100%">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in equipmentOptions"
|
||||||
|
:key="dict.id"
|
||||||
|
:label="dict.name"
|
||||||
:value="dict.id" />
|
:value="dict.id" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="备注" prop="description">
|
<el-form-item label="巡检项目" prop="program">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="dataForm.description"
|
v-model="dataForm.program"
|
||||||
placeholder="请输入备注"
|
placeholder="请输入巡检项目"
|
||||||
|
clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="巡检结果" prop="checkResult">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.checkResult"
|
||||||
|
placeholder="请输入巡检结果"
|
||||||
clearable />
|
clearable />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
@ -41,11 +55,12 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getCheckDet, createCheckDet, updateCheckDet, getcheckList } from "@/api/equipment/base/inspection/settings";
|
import { getCheckOrderDet, createCheckOrderDet, updateCheckOrderDet } from "@/api/equipment/base/inspection/settings";
|
||||||
|
import { getEquipmentPage } from '@/api/base/equipment'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
configId: {
|
orderId: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
@ -54,14 +69,22 @@ export default {
|
|||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
dataForm: {
|
dataForm: {
|
||||||
id: undefined,
|
id: null,
|
||||||
checkId: undefined,
|
equipmentId: null,
|
||||||
configId: undefined,
|
program: null,
|
||||||
description: ''
|
checkResult: null
|
||||||
},
|
},
|
||||||
checkList: [],
|
equipmentOptions: [],
|
||||||
dataRule: {
|
dataRule: {
|
||||||
checkId: [{ required: true, message: '巡检不能为空', trigger: 'blur' }],
|
equipmentId: [
|
||||||
|
{ required: true, message: '设备不能为空', trigger: 'blur' }
|
||||||
|
],
|
||||||
|
program: [
|
||||||
|
{ required: true, message: '巡检项目不能为空', trigger: 'blur' }
|
||||||
|
],
|
||||||
|
checkResult: [
|
||||||
|
{ required: true, message: '巡检结果不能为空', trigger: 'blur' }
|
||||||
|
]
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
@ -70,8 +93,12 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async getDict() {
|
async getDict() {
|
||||||
const res = await getcheckList()
|
const res = await getEquipmentPage({
|
||||||
this.checkList = res.data
|
pageNo: 1,
|
||||||
|
pageSize: 100,
|
||||||
|
special: false
|
||||||
|
})
|
||||||
|
this.equipmentOptions = res.data.list
|
||||||
},
|
},
|
||||||
init(id) {
|
init(id) {
|
||||||
this.dataForm.id = id || '';
|
this.dataForm.id = id || '';
|
||||||
@ -79,7 +106,7 @@ export default {
|
|||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$refs['dataForm'].resetFields();
|
this.$refs['dataForm'].resetFields();
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
getCheckDet(this.dataForm.id).then((res) => {
|
getCheckOrderDet(this.dataForm.id).then((res) => {
|
||||||
// const { name, value } = res.data;
|
// const { name, value } = res.data;
|
||||||
// this.dataForm.name = name;
|
// this.dataForm.name = name;
|
||||||
// this.dataForm.value = value;
|
// this.dataForm.value = value;
|
||||||
@ -94,9 +121,9 @@ export default {
|
|||||||
if (valid) {
|
if (valid) {
|
||||||
// 修改的提交
|
// 修改的提交
|
||||||
if (this.dataForm.id) {
|
if (this.dataForm.id) {
|
||||||
updateCheckDet({
|
updateCheckOrderDet({
|
||||||
...this.dataForm,
|
...this.dataForm,
|
||||||
configId: this.configId
|
orderId: this.orderId
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
this.$modal.msgSuccess('修改成功');
|
this.$modal.msgSuccess('修改成功');
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
@ -105,9 +132,9 @@ export default {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// 添加的提交
|
// 添加的提交
|
||||||
createCheckDet({
|
createCheckOrderDet({
|
||||||
...this.dataForm,
|
...this.dataForm,
|
||||||
configId: this.configId,
|
orderId: this.orderId,
|
||||||
}).then((response) => {
|
}).then((response) => {
|
||||||
this.$modal.msgSuccess('新增成功');
|
this.$modal.msgSuccess('新增成功');
|
||||||
this.visible = false;
|
this.visible = false;
|
||||||
|
@ -53,6 +53,7 @@
|
|||||||
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 './add.vue'
|
import add from './add.vue'
|
||||||
|
import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
// import { publicFormatter } from '@/utils/dict';
|
// import { publicFormatter } from '@/utils/dict';
|
||||||
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
// const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
@ -79,12 +80,12 @@ export default {
|
|||||||
btnName: '修改',
|
btnName: '修改',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('equipment:check-setting:update')
|
// this.$auth.hasPermi('equipment:check-setting:update')
|
||||||
? {
|
// ? {
|
||||||
type: 'detail',
|
// type: 'detail',
|
||||||
btnName: '查看详情',
|
// btnName: '查看详情',
|
||||||
}
|
// }
|
||||||
: undefined,
|
// : undefined,
|
||||||
this.$auth.hasPermi('equipment:check-setting:delete')
|
this.$auth.hasPermi('equipment:check-setting:delete')
|
||||||
? {
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
@ -93,29 +94,31 @@ export default {
|
|||||||
: undefined,
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{ prop: 'name', label: '配置名', width: 110, showOverflowtooltip: true },
|
{ prop: 'name', label: '巡检单名称', width: 110, showOverflowtooltip: true },
|
||||||
{ prop: 'code', label: '编码', minWidth: 150, showOverflowtooltip: true },
|
{ prop: 'code', label: '巡检单编码', minWidth: 150, showOverflowtooltip: true },
|
||||||
{ prop: 'lineName', label: '产线', showOverflowtooltip: true },
|
{ prop: 'department', label: '部门', showOverflowtooltip: true },
|
||||||
{ prop: 'sectionName', label: '工段', showOverflowtooltip: true },
|
{ prop: 'planCheckTime', label: '计划巡检时间', filter: parseTime },
|
||||||
{ prop: 'equipmentName', label: '设备', showOverflowtooltip: true },
|
{ prop: 'confirmTimeLimit', label: '确认时限', showOverflowtooltip: true },
|
||||||
{ prop: 'equipmentCode', label: '设备编码', minWidth: 150, showOverflowtooltip: true },
|
{ prop: 'groupClass', label: '班次', showOverflowtooltip: true },
|
||||||
|
{ prop: 'checkPerson', label: '创建人', minWidth: 150, showOverflowtooltip: true },
|
||||||
|
{ prop: 'createTime', label: '创建时间', filter: parseTime },
|
||||||
// { prop: 'responsible', label: '负责人' },
|
// { prop: 'responsible', label: '负责人' },
|
||||||
{ prop: 'checkNumber', label: '巡检条数' }, // TODO: 操作 选项,四个,群里询问
|
{ prop: 'remark', label: '备注' } // TODO: 操作 选项,四个,群里询问
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
label: '配置名称',
|
label: '巡检单名称',
|
||||||
placeholder: '请输入配置名称',
|
placeholder: '请输入巡检单名称',
|
||||||
param: 'name',
|
param: 'name',
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: 'select',
|
// type: 'select',
|
||||||
label: '设备名称',
|
// label: '设备名称',
|
||||||
placeholder: '请选择设备',
|
// placeholder: '请选择设备',
|
||||||
param: 'equipmentId',
|
// param: 'equipmentId',
|
||||||
filterable: true,
|
// filterable: true,
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
@ -133,7 +136,7 @@ export default {
|
|||||||
name: 'add',
|
name: 'add',
|
||||||
plain: true,
|
plain: true,
|
||||||
color: 'success',
|
color: 'success',
|
||||||
},
|
}
|
||||||
// {
|
// {
|
||||||
// type: this.$auth.hasPermi('equipment:check-setting:export')
|
// type: this.$auth.hasPermi('equipment:check-setting:export')
|
||||||
// ? 'button'
|
// ? 'button'
|
||||||
@ -192,10 +195,11 @@ export default {
|
|||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
equipmentId: null,
|
equipmentId: null,
|
||||||
name: null,
|
name: null,
|
||||||
|
special: false
|
||||||
},
|
},
|
||||||
// 表单参数
|
// 表单参数
|
||||||
form: {},
|
form: {},
|
||||||
basePath: '/base/equipment-check-config',
|
basePath: '/base/equipment-check-order',
|
||||||
mode: null,
|
mode: null,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
@pagination="getList" />
|
@pagination="getList" />
|
||||||
|
|
||||||
<!-- 对话框(添加 / 修改) -->
|
<!-- 对话框(添加 / 修改) -->
|
||||||
<base-dialog
|
<!-- <base-dialog
|
||||||
:dialogTitle="title"
|
:dialogTitle="title"
|
||||||
:dialogVisible="open"
|
:dialogVisible="open"
|
||||||
@close="cancel"
|
@close="cancel"
|
||||||
@ -43,7 +43,11 @@
|
|||||||
v-model="form"
|
v-model="form"
|
||||||
:has-files="false"
|
:has-files="false"
|
||||||
:rows="rows" />
|
:rows="rows" />
|
||||||
</base-dialog>
|
</base-dialog> -->
|
||||||
|
<add-content
|
||||||
|
v-if="addContent"
|
||||||
|
ref="addContent"
|
||||||
|
@refreshDataList="addContent = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -53,6 +57,7 @@ import moment from 'moment';
|
|||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import { exportMaintainMonitorExcel } from '@/api/equipment/base/maintain/record'
|
import { exportMaintainMonitorExcel } from '@/api/equipment/base/maintain/record'
|
||||||
import { parseTime } from '@/utils/ruoyi'
|
import { parseTime } from '@/utils/ruoyi'
|
||||||
|
import AddContent from '../PlanConfig/addContent.vue';
|
||||||
|
|
||||||
const remainBox = {
|
const remainBox = {
|
||||||
name: 'RemainBox',
|
name: 'RemainBox',
|
||||||
@ -107,11 +112,12 @@ const btn = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'PlanConfig',
|
name: 'Monitor',
|
||||||
components: {},
|
components: { AddContent },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
addContent: false,
|
||||||
searchBarKeys: ['planId', 'equipmentId'],
|
searchBarKeys: ['planId', 'equipmentId'],
|
||||||
tableProps: [
|
tableProps: [
|
||||||
// {
|
// {
|
||||||
@ -121,46 +127,53 @@ export default {
|
|||||||
// width: 180,
|
// width: 180,
|
||||||
// filter: parseTime(createTime),
|
// filter: parseTime(createTime),
|
||||||
// },
|
// },
|
||||||
{ prop: 'name', label: '保养计划' },
|
{ prop: 'code', label: '保养计划单号' },
|
||||||
|
{ prop: 'name', label: '保养计划名称' },
|
||||||
|
{ prop: 'departmentName', label: '部门' },
|
||||||
{ prop: 'lineName', label: '产线名' },
|
{ prop: 'lineName', label: '产线名' },
|
||||||
{ prop: 'sectionName', label: '工段名' },
|
|
||||||
{ prop: 'equipmentName', label: '设备名称' },
|
|
||||||
{ prop: 'equipmentCode', label: '设备编码' },
|
|
||||||
{ prop: 'maintenancePeriod', label: '保养频率' },
|
|
||||||
{
|
{
|
||||||
prop: 'maintainType',
|
prop: 'lastPlanMaintainTime',
|
||||||
label: '保养类型',
|
label: '上次计划保养时间',
|
||||||
filter: publicFormatter(this.DICT_TYPE.MAINTAIN_TYPE),
|
filter: parseTime,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'lastMaintainTime',
|
prop: 'lastMaintainTime',
|
||||||
label: '上次保养时间',
|
label: '上次实际保养时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
},
|
},
|
||||||
{ prop: 'nextMaintainTime', label: '计划下次保养时间', filter: parseTime },
|
{ prop: 'nextMaintainTime', label: '下次计划保养时间', filter: parseTime },
|
||||||
|
{ prop: 'maintainer', label: '计划保养人员' },
|
||||||
|
// { prop: 'equipmentName', label: '设备名称' },
|
||||||
|
// { prop: 'equipmentCode', label: '设备编码' },
|
||||||
|
// { prop: 'maintenancePeriod', label: '保养频率' },
|
||||||
|
// {
|
||||||
|
// prop: 'maintainType',
|
||||||
|
// label: '保养类型',
|
||||||
|
// filter: publicFormatter(this.DICT_TYPE.MAINTAIN_TYPE),
|
||||||
|
// },
|
||||||
|
// { prop: 'opt1', label: '设备保养', name: '操作', subcomponent: btn },
|
||||||
|
{ prop: 'opt2', label: '保养内容', name: '详情', subcomponent: btn },
|
||||||
{
|
{
|
||||||
prop: 'remainDays',
|
prop: 'remainDays',
|
||||||
label: '距离保养时间(天)',
|
label: '距离下次保养剩余时间(天)',
|
||||||
subcomponent: remainBox,
|
subcomponent: remainBox,
|
||||||
},
|
}
|
||||||
{ prop: 'opt1', label: '设备保养', name: '操作', subcomponent: btn },
|
|
||||||
{ prop: 'opt2', label: '保养记录', name: '查看详情', subcomponent: btn },
|
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '保养计划',
|
label: '保养计划名称',
|
||||||
placeholder: '请选择保养计划',
|
placeholder: '请选择保养计划',
|
||||||
param: 'planId',
|
param: 'planId',
|
||||||
filterable: true,
|
filterable: true,
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: 'select',
|
// type: 'select',
|
||||||
label: '设备名',
|
// label: '设备名',
|
||||||
placeholder: '请选择设备',
|
// placeholder: '请选择设备',
|
||||||
param: 'equipmentId',
|
// param: 'equipmentId',
|
||||||
filterable: true,
|
// filterable: true,
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
@ -255,13 +268,18 @@ export default {
|
|||||||
row: value
|
row: value
|
||||||
} })
|
} })
|
||||||
break;
|
break;
|
||||||
case '保养记录':
|
case '保养内容':
|
||||||
const queryData = {
|
// 保养内容
|
||||||
equipmentId: value.equipmentId,
|
this.addContent = true;
|
||||||
maintainPlanId: value.id,
|
this.$nextTick(() => {
|
||||||
relatePlan: value.lastMaintainTime ? 1 : 2
|
this.$refs.addContent.init(value.id, true);
|
||||||
}
|
});
|
||||||
this.$router.push({ path: '/equipment/base/maintain/record',query: queryData })
|
// const queryData = {
|
||||||
|
// equipmentId: value.equipmentId,
|
||||||
|
// maintainPlanId: value.id,
|
||||||
|
// relatePlan: value.lastMaintainTime ? 1 : 2
|
||||||
|
// }
|
||||||
|
// this.$router.push({ path: '/equipment/base/maintain/record',query: queryData })
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
65
src/views/equipment/base/maintain/PlanConfig/SmallTitle.vue
Normal file
65
src/views/equipment/base/maintain/PlanConfig/SmallTitle.vue
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2023-08-01 15:27:31
|
||||||
|
* @LastEditors: zwq
|
||||||
|
* @LastEditTime: 2023-08-01 16:25:54
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<div :class="[className, { 'p-0': noPadding }]">
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
size: {
|
||||||
|
// 取值范围: xl lg md sm
|
||||||
|
type: String,
|
||||||
|
default: 'de',
|
||||||
|
validator: function (val) {
|
||||||
|
return ['xl', 'lg', 'de', 'md', 'sm'].indexOf(val) !== -1;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
noPadding: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
className: function () {
|
||||||
|
return `${this.size}-title`;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
$pxls: (xl, 28px) (lg, 24px) (de, 20px) (md, 18px) (sm, 16px);
|
||||||
|
$mgr: 8px;
|
||||||
|
@each $size, $height in $pxls {
|
||||||
|
.#{$size}-title {
|
||||||
|
font-size: 18px;
|
||||||
|
line-height: $height;
|
||||||
|
color: #000;
|
||||||
|
font-weight: 500;
|
||||||
|
font-family: '微软雅黑', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
|
||||||
|
|
||||||
|
&::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 4px;
|
||||||
|
height: $height + 2px;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: $mgr;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-0 {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
</style>
|
283
src/views/equipment/base/maintain/PlanConfig/add-or-updata.vue
Normal file
283
src/views/equipment/base/maintain/PlanConfig/add-or-updata.vue
Normal file
@ -0,0 +1,283 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2021-11-18 14:16:25
|
||||||
|
* @LastEditors: DY
|
||||||
|
* @LastEditTime: 2024-02-23 15:28:46
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<!-- <el-drawer
|
||||||
|
:visible.sync="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="isdetail"
|
||||||
|
class="drawer"
|
||||||
|
size="60%">
|
||||||
|
<small-title slot="title" :no-padding="true">
|
||||||
|
{{ isdetail ? '详情' : !dataForm.id ? '新增' : '编辑' }}
|
||||||
|
</small-title> -->
|
||||||
|
<div class="content">
|
||||||
|
<div class="visual-part">
|
||||||
|
<el-form
|
||||||
|
:model="dataForm"
|
||||||
|
:rules="dataRule"
|
||||||
|
ref="dataForm"
|
||||||
|
@keyup.enter.native="dataFormSubmit()"
|
||||||
|
label-width="100px"
|
||||||
|
label-position="top">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养计划名称" prop="name">
|
||||||
|
<el-input v-model="dataForm.name" :disabled="isdetail" clearable placeholder="请输入保养计划名称" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养计划编码" prop="code">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.code"
|
||||||
|
clearable
|
||||||
|
:disabled="isdetail"
|
||||||
|
placeholder="请输入保养计划编码" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="部门" prop="departmentId">
|
||||||
|
<treeselect v-model="dataForm.departmentId" :options="menuOptions" :normalizer="normalizer" :show-count="true" placeholder="选择部门"/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="产线名" prop="lineId">
|
||||||
|
<el-select
|
||||||
|
v-model="dataForm.lineId"
|
||||||
|
filterable
|
||||||
|
placeholder="请选择产线"
|
||||||
|
style="width: 100%">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in proLineList"
|
||||||
|
: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="maintenancePeriod">
|
||||||
|
<el-input-number v-model="dataForm.maintenancePeriod" :min="0" controls-position="right" style="width: 100%" :disabled="isdetail" clearable placeholder="请输入保养频率" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="确认时限" prop="confirmTimeLimit">
|
||||||
|
<el-input-number v-model="dataForm.confirmTimeLimit" :min="0" controls-position="right" style="width: 100%" :disabled="isdetail" clearable placeholder="请输入单位平方数" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="保养时长" prop="maintainDuration">
|
||||||
|
<el-input-number v-model="dataForm.maintainDuration" :min="0" controls-position="right" style="width: 100%" :disabled="isdetail" clearable placeholder="请输入保养时长" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="首次保养时间" prop="firstMaintenanceTime">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="dataForm.firstMaintenanceTime"
|
||||||
|
type="date"
|
||||||
|
format='yyyy-MM-dd'
|
||||||
|
:disabled="isedit"
|
||||||
|
value-format='timestamp'
|
||||||
|
placeholder="选择首次保养时间"
|
||||||
|
style="width: 100%" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<el-form-item label="计划保养人员" prop="maintainer">
|
||||||
|
<el-input v-model="dataForm.maintainer" style="width: 100%" :disabled="isdetail" clearable placeholder="请输入计划保养人员" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="dataForm.remark" :disabled="isdetail" clearable placeholder="请输入备注" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import basicAdd from '../../../../core/mixins/basic-add';
|
||||||
|
// import { getCoreProductAttrPage, deleteCoreProductAttr } from "@/api/base/coreProduct";
|
||||||
|
import { getCoreDepartmentList } from "@/api/base/coreDepartment";
|
||||||
|
import { createPlan, updatePlan, getCode, getPlan } from '@/api/equipment/base/maintain/planconfig';
|
||||||
|
import { getCorePLList } from '@/api/base/coreProductionLine';
|
||||||
|
import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
import attrAdd from './attr-add';
|
||||||
|
// import {DICT_TYPE, getDictDatas} from "@/utils/dict";
|
||||||
|
import Treeselect from "@riophae/vue-treeselect";
|
||||||
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mixins: [basicAdd],
|
||||||
|
components: { attrAdd, Treeselect },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
addOrUpdateVisible: false,
|
||||||
|
urlOptions: {
|
||||||
|
isGetCode: true,
|
||||||
|
codeURL: getCode,
|
||||||
|
createURL: createPlan,
|
||||||
|
updateURL: updatePlan,
|
||||||
|
infoURL: getPlan
|
||||||
|
},
|
||||||
|
dataForm: {
|
||||||
|
id: undefined,
|
||||||
|
code: undefined,
|
||||||
|
name: '',
|
||||||
|
departmentId: undefined,
|
||||||
|
lineId: undefined,
|
||||||
|
maintenancePeriod: undefined,
|
||||||
|
confirmTimeLimit: undefined,
|
||||||
|
maintainDuration: undefined,
|
||||||
|
remark: undefined,
|
||||||
|
firstMaintenanceTime: undefined,
|
||||||
|
maintainer: undefined
|
||||||
|
},
|
||||||
|
menuOptions: [],
|
||||||
|
proLineList: [],
|
||||||
|
visible: false,
|
||||||
|
isdetail: false,
|
||||||
|
isedit: false,
|
||||||
|
dataRule: {
|
||||||
|
code: [{ required: true, message: "保养计划编码不能为空", trigger: "blur" }],
|
||||||
|
name: [{ required: true, message: "保养计划名称不能为空", trigger: "blur" }],
|
||||||
|
departmentId: [{ required: true, message: "部门不能为空", trigger: "change" }],
|
||||||
|
lineId: [{ required: true, message: "产线不能为空", trigger: "change" }],
|
||||||
|
maintenancePeriod: [{ required: true, message: "保养频率不能为空", trigger: "blur" }],
|
||||||
|
confirmTimeLimit: [{ required: true, message: "确认时限不能为空", trigger: "blur" }],
|
||||||
|
maintainDuration: [{ required: true, message: "保养时长不能为空", trigger: "blur" }],
|
||||||
|
firstMaintenanceTime: [{ required: true, message: "首次保养时间不能为空", trigger: "blur" }],
|
||||||
|
maintainer: [{ required: true, message: "计划保养人员不能为空", trigger: "blur" }]
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.getDict()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
async getDict() {
|
||||||
|
// 部门列表
|
||||||
|
this.menuOptions = []
|
||||||
|
const res = await getCoreDepartmentList();
|
||||||
|
this.departmentlList = res.data.map(item => {
|
||||||
|
item.parentId = item.parentId ? item.parentId : 0
|
||||||
|
return item
|
||||||
|
});
|
||||||
|
// const menu = { id: 0, name: '总部门', children: [] };
|
||||||
|
// menu.children = this.handleTree(this.departmentlList, "id")
|
||||||
|
this.menuOptions = this.handleTree(this.departmentlList, "id")
|
||||||
|
// 产线列表
|
||||||
|
const resline = await getCorePLList();
|
||||||
|
this.proLineList = resline.data;
|
||||||
|
},
|
||||||
|
getList() {
|
||||||
|
// 获取产品属性列表
|
||||||
|
// getCoreProductAttrPage({
|
||||||
|
// ...this.listQuery,
|
||||||
|
// productId: this.dataForm.id,
|
||||||
|
// }).then((response) => {
|
||||||
|
// this.productAttrList = response.data.list;
|
||||||
|
// this.listQuery.total = response.data.total;
|
||||||
|
// });
|
||||||
|
},
|
||||||
|
init(id, isdetail) {
|
||||||
|
// this.initData();
|
||||||
|
this.isdetail = isdetail || false;
|
||||||
|
this.dataForm.id = id || undefined;
|
||||||
|
this.isedit = id ? true : false;
|
||||||
|
console.log('你好22', id)
|
||||||
|
this.visible = true;
|
||||||
|
// if (id) {
|
||||||
|
// this.idAttrShow = true
|
||||||
|
// } else {
|
||||||
|
// this.idAttrShow = false
|
||||||
|
// }
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['dataForm'].resetFields();
|
||||||
|
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
// 获取计划详情
|
||||||
|
this.urlOptions.infoURL({ id: this.dataForm.id }).then(response => {
|
||||||
|
this.dataForm = response.data
|
||||||
|
// if (this.dataForm.materialType !== undefined) {
|
||||||
|
// this.dataForm.materialType = String(this.dataForm.materialType)
|
||||||
|
// }
|
||||||
|
// if (this.dataForm.productType !== undefined) {
|
||||||
|
// this.dataForm.productType = String(this.dataForm.productType)
|
||||||
|
// }
|
||||||
|
});
|
||||||
|
// 获取产品属性列表
|
||||||
|
// this.getList();
|
||||||
|
} else {
|
||||||
|
if (this.urlOptions.isGetCode) {
|
||||||
|
this.getCode()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
goback() {
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.visible = false;
|
||||||
|
this.initData();
|
||||||
|
},
|
||||||
|
goEdit() {
|
||||||
|
this.isdetail = false;
|
||||||
|
},
|
||||||
|
// 新增 / 修改
|
||||||
|
addNew(id) {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(id);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 转换菜单数据结构 */
|
||||||
|
normalizer(node) {
|
||||||
|
if (node.children && !node.children.length) {
|
||||||
|
delete node.children;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
id: node.id,
|
||||||
|
label: node.name,
|
||||||
|
children: node.children
|
||||||
|
};
|
||||||
|
},
|
||||||
|
// 表单提交
|
||||||
|
dataFormSubmit() {
|
||||||
|
this.$refs["dataForm"].validate((valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
// 修改的提交
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
this.urlOptions.updateURL(this.dataForm).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit("refreshDataList");
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 添加的提交
|
||||||
|
this.urlOptions.createURL(this.dataForm).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
// this.idAttrShow = true
|
||||||
|
this.dataForm.id = response.data
|
||||||
|
// this.visible = false;
|
||||||
|
this.$emit("refreshDataList");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
</style>
|
308
src/views/equipment/base/maintain/PlanConfig/addContent.vue
Normal file
308
src/views/equipment/base/maintain/PlanConfig/addContent.vue
Normal file
@ -0,0 +1,308 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2021-11-18 14:16:25
|
||||||
|
* @LastEditors: DY
|
||||||
|
* @LastEditTime: 2024-02-23 19:48:12
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible.sync="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="isdetail"
|
||||||
|
class="drawer"
|
||||||
|
size="60%">
|
||||||
|
<small-title slot="title" :no-padding="true">
|
||||||
|
{{ '添加内容' }}
|
||||||
|
</small-title>
|
||||||
|
<div class="content">
|
||||||
|
<div class="visual-part">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">保养计划名称</div>
|
||||||
|
<div class="lightTip">{{ dataForm.name }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">部门</div>
|
||||||
|
<div class="lightTip">{{ dataForm.departmentName }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">产线名</div>
|
||||||
|
<div class="lightTip">{{ dataForm.lineName }}</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">保养频率</div>
|
||||||
|
<div class="lightTip">{{ dataForm.maintenancePeriod }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">保养时长</div>
|
||||||
|
<div class="lightTip">{{ dataForm.maintainDuration }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">计划保养人员</div>
|
||||||
|
<div class="lightTip">{{ dataForm.maintainer }}</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="attr-list" v-if="idAttrShow">
|
||||||
|
<small-title
|
||||||
|
style="margin: 16px 0; padding-left: 8px"
|
||||||
|
:no-padding="true">
|
||||||
|
保养内容
|
||||||
|
</small-title>
|
||||||
|
|
||||||
|
<div v-if="!isdetail" class="action_btn">
|
||||||
|
<template>
|
||||||
|
<span style="display: inline-block;">
|
||||||
|
<el-button type="text" @click="addNew()" icon="el-icon-plus">新增</el-button>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize"
|
||||||
|
:table-data="planList">
|
||||||
|
<method-btn
|
||||||
|
v-if="!isdetail"
|
||||||
|
slot="handleBtn"
|
||||||
|
:width="120"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleClick" />
|
||||||
|
</base-table>
|
||||||
|
<pagination
|
||||||
|
v-show="listQuery.total > 0"
|
||||||
|
:total="listQuery.total"
|
||||||
|
:page.sync="listQuery.pageNo"
|
||||||
|
:limit.sync="listQuery.pageSize"
|
||||||
|
:page-sizes="[5, 10, 15]"
|
||||||
|
@pagination="getList" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="!isdetail" class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="goback()">取消</el-button>
|
||||||
|
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<attr-add
|
||||||
|
v-if="addOrUpdateVisible"
|
||||||
|
ref="addOrUpdate"
|
||||||
|
:plan-id="dataForm.id"
|
||||||
|
@refreshDataList="getList" />
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import basicAdd from '../../../../core/mixins/basic-add';
|
||||||
|
import { getPlan, deletePlanDet, getPlanDetPage } from '@/api/equipment/base/maintain/planconfig';
|
||||||
|
// import { listData } from "@/api/system/dict/data";
|
||||||
|
import SmallTitle from './SmallTitle';
|
||||||
|
// import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
import attrAdd from './attr-add';
|
||||||
|
// import { getDictDatas } from "@/utils/dict";
|
||||||
|
|
||||||
|
const tableBtn = [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'program',
|
||||||
|
label: '保养项目',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mixins: [basicAdd],
|
||||||
|
components: { SmallTitle, attrAdd },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tableBtn,
|
||||||
|
tableProps,
|
||||||
|
addOrUpdateVisible: false,
|
||||||
|
urlOptions: {
|
||||||
|
isGetCode: false,
|
||||||
|
infoURL: getPlan
|
||||||
|
},
|
||||||
|
listQuery: {
|
||||||
|
pageSize: 99,
|
||||||
|
pageNo: 1,
|
||||||
|
total: 0
|
||||||
|
},
|
||||||
|
dataForm: {},
|
||||||
|
planList: [],
|
||||||
|
visible: false,
|
||||||
|
isdetail: false,
|
||||||
|
idAttrShow: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {},
|
||||||
|
methods: {
|
||||||
|
initData() {
|
||||||
|
this.planList.splice(0);
|
||||||
|
this.listQuery.total = 0;
|
||||||
|
},
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`是否确认删除保养项目名为"${raw.data.program}"的数据项?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deletePlanDet(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getList() {
|
||||||
|
// 获取物料的属性列表
|
||||||
|
getPlanDetPage({
|
||||||
|
...this.listQuery,
|
||||||
|
planId: this.dataForm.id,
|
||||||
|
}).then((response) => {
|
||||||
|
this.planList = response.data.list;
|
||||||
|
this.listQuery.total = response.data.total;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
init(id, isdetail) {
|
||||||
|
this.initData();
|
||||||
|
this.isdetail = isdetail || false;
|
||||||
|
this.dataForm.id = id || undefined;
|
||||||
|
this.visible = true;
|
||||||
|
if (id) {
|
||||||
|
this.idAttrShow = true
|
||||||
|
} else {
|
||||||
|
this.idAttrShow = false
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
// 获取计划详情
|
||||||
|
this.urlOptions.infoURL({ id: id}).then(response => {
|
||||||
|
this.dataForm = response.data;
|
||||||
|
});
|
||||||
|
// 获取详情分页
|
||||||
|
this.getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
goback() {
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.visible = false;
|
||||||
|
// this.initData();
|
||||||
|
},
|
||||||
|
// 新增 / 修改
|
||||||
|
addNew(id) {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(id);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.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;
|
||||||
|
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: 18vh;
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
.action_btn {
|
||||||
|
float: right;
|
||||||
|
margin: -40px 15px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.add {
|
||||||
|
color: #0b58ff;
|
||||||
|
}
|
||||||
|
.blodTip {
|
||||||
|
height: 16px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: rgba(0,0,0,0.85);
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
.lightTip {
|
||||||
|
/* height: 16px; */
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: rgba(102,102,102,0.75);
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
</style>
|
167
src/views/equipment/base/maintain/PlanConfig/attr-add.vue
Normal file
167
src/views/equipment/base/maintain/PlanConfig/attr-add.vue
Normal file
@ -0,0 +1,167 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
:visible.sync="visible"
|
||||||
|
:width="'35%'"
|
||||||
|
:append-to-body="true"
|
||||||
|
:close-on-click-modal="false"
|
||||||
|
class="dialog">
|
||||||
|
<template #title>
|
||||||
|
<slot name="title">
|
||||||
|
<div class="titleStyle">
|
||||||
|
{{ !dataForm.id ? '新增' : '编辑' }}
|
||||||
|
</div>
|
||||||
|
</slot>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<el-form
|
||||||
|
ref="dataForm"
|
||||||
|
:model="dataForm"
|
||||||
|
:rules="dataRule"
|
||||||
|
label-width="100px"
|
||||||
|
@keyup.enter.native="dataFormSubmit()">
|
||||||
|
<el-form-item label="设备名称" prop="equipmentId">
|
||||||
|
<el-select
|
||||||
|
v-model="dataForm.equipmentId"
|
||||||
|
filterable
|
||||||
|
style="width: 100%"
|
||||||
|
placeholder="请选择设备">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in eqList"
|
||||||
|
:key="dict.id"
|
||||||
|
:label="dict.name"
|
||||||
|
:value="dict.id" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="保养项目" prop="program">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.program"
|
||||||
|
placeholder="请输入保养项目"
|
||||||
|
clearable />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="保养描述" prop="maintenanceDes">
|
||||||
|
<el-input
|
||||||
|
v-model="dataForm.maintenanceDes"
|
||||||
|
placeholder="请输入保养描述"
|
||||||
|
clearable />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<el-row style="text-align: right">
|
||||||
|
<el-button @click="visible = false">取消</el-button>
|
||||||
|
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
||||||
|
</el-row>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { createPlanDet, updatePlanDet, getPlanDet } from '@/api/equipment/base/maintain/planconfig';
|
||||||
|
import { getEquipmentPage } from '@/api/base/equipment'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
props: {
|
||||||
|
planId: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
eqList: [],
|
||||||
|
dataForm: {
|
||||||
|
id: undefined,
|
||||||
|
equipmentId: '',
|
||||||
|
program: '',
|
||||||
|
maintenanceDes: ''
|
||||||
|
},
|
||||||
|
dataRule: {
|
||||||
|
equipmentId: [{ required: true, message: '设备不能为空', trigger: 'change' }],
|
||||||
|
program: [{ required: true, message: '保养项目不能为空', trigger: 'blur' }],
|
||||||
|
maintenanceDes: [{ required: true, message: '保养描述不能为空', trigger: 'blur' }]
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getDict()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
async getDict() {
|
||||||
|
const res = await getEquipmentPage({
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 100,
|
||||||
|
special: false
|
||||||
|
})
|
||||||
|
this.eqList = res.data.list
|
||||||
|
},
|
||||||
|
init(id) {
|
||||||
|
this.dataForm.id = id || '';
|
||||||
|
this.visible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs['dataForm'].resetFields();
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
getPlanDet({
|
||||||
|
id: this.dataForm.id
|
||||||
|
}).then((res) => {
|
||||||
|
const { equipmentId, program, maintenanceDes } = res.data;
|
||||||
|
this.dataForm.equipmentId = equipmentId;
|
||||||
|
this.dataForm.program = program;
|
||||||
|
this.dataForm.maintenanceDes = maintenanceDes;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 表单提交
|
||||||
|
dataFormSubmit() {
|
||||||
|
this.$refs['dataForm'].validate((valid) => {
|
||||||
|
if (valid) {
|
||||||
|
// 修改的提交
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
updatePlanDet({
|
||||||
|
...this.dataForm,
|
||||||
|
planId: this.planId,
|
||||||
|
}).then((response) => {
|
||||||
|
this.$modal.msgSuccess('修改成功');
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 添加的提交
|
||||||
|
createPlanDet({
|
||||||
|
...this.dataForm,
|
||||||
|
planId: this.planId,
|
||||||
|
}).then((response) => {
|
||||||
|
this.$modal.msgSuccess('新增成功');
|
||||||
|
this.visible = false;
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.dialog >>> .el-dialog__body {
|
||||||
|
padding: 30px 24px;
|
||||||
|
}
|
||||||
|
.dialog >>> .el-dialog__header {
|
||||||
|
font-size: 16px;
|
||||||
|
color: rgba(0, 0, 0, 0.85);
|
||||||
|
font-weight: 500;
|
||||||
|
padding: 13px 24px;
|
||||||
|
border-bottom: 1px solid #e9e9e9;
|
||||||
|
}
|
||||||
|
.dialog >>> .el-dialog__header .titleStyle::before {
|
||||||
|
content: '';
|
||||||
|
display: inline-block;
|
||||||
|
width: 4px;
|
||||||
|
height: 16px;
|
||||||
|
background-color: #0b58ff;
|
||||||
|
border-radius: 1px;
|
||||||
|
margin-right: 8px;
|
||||||
|
position: relative;
|
||||||
|
top: 2px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,143 +1,150 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<!-- 搜索工作栏 -->
|
<search-bar
|
||||||
<SearchBar
|
:formConfigs="formConfig"
|
||||||
:formConfigs="searchBarFormConfig"
|
ref="searchBarForm"
|
||||||
ref="search-bar"
|
@headBtnClick="buttonClick" />
|
||||||
@headBtnClick="handleSearchBarBtnClick" />
|
|
||||||
|
|
||||||
<!-- 列表 -->
|
|
||||||
<base-table
|
<base-table
|
||||||
|
v-loading="dataListLoading"
|
||||||
:table-props="tableProps"
|
:table-props="tableProps"
|
||||||
:page="queryParams.pageNo"
|
:page="listQuery.pageNo"
|
||||||
:limit="queryParams.pageSize"
|
:limit="listQuery.pageSize"
|
||||||
:table-data="list"
|
:table-data="tableData">
|
||||||
@emitFun="handleEmitFun">
|
|
||||||
<method-btn
|
<method-btn
|
||||||
v-if="tableBtn.length"
|
v-if="tableBtn.length"
|
||||||
slot="handleBtn"
|
slot="handleBtn"
|
||||||
|
:width="150"
|
||||||
label="操作"
|
label="操作"
|
||||||
:width="120"
|
|
||||||
:method-list="tableBtn"
|
:method-list="tableBtn"
|
||||||
@clickBtn="handleTableBtnClick" />
|
@clickBtn="handleClick" />
|
||||||
</base-table>
|
</base-table>
|
||||||
|
|
||||||
<!-- 分页组件 -->
|
|
||||||
<pagination
|
<pagination
|
||||||
v-show="total > 0"
|
:limit.sync="listQuery.pageSize"
|
||||||
:total="total"
|
:page.sync="listQuery.pageNo"
|
||||||
:page.sync="queryParams.pageNo"
|
:total="listQuery.total"
|
||||||
:limit.sync="queryParams.pageSize"
|
@pagination="getDataList" />
|
||||||
@pagination="getList" />
|
<!-- <add-or-update
|
||||||
|
v-if="addOrUpdateVisible"
|
||||||
<!-- 对话框(添加 / 修改) -->
|
ref="addOrUpdate"
|
||||||
<base-dialog
|
@refreshDataList="getDataList" /> -->
|
||||||
:dialogTitle="title"
|
<base-dialog
|
||||||
:dialogVisible="open"
|
:dialogTitle="addOrEditTitle"
|
||||||
@close="cancel"
|
:dialogVisible="addOrUpdateVisible"
|
||||||
@cancel="cancel"
|
@cancel="handleCancel"
|
||||||
@confirm="submitForm">
|
@confirm="handleConfirm"
|
||||||
<DialogForm
|
:before-close="handleCancel"
|
||||||
v-if="open"
|
width="55%">
|
||||||
ref="form"
|
<add-or-update
|
||||||
v-model="form"
|
ref="addOrUpdate"
|
||||||
:has-files="false"
|
@refreshDataList="successSubmit"></add-or-update>
|
||||||
:rows="rows" />
|
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
<add-content
|
||||||
|
v-if="addContent"
|
||||||
|
ref="addContent"
|
||||||
|
@refreshDataList="addContent = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import moment from 'moment';
|
import AddOrUpdate from './add-or-updata';
|
||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import AddContent from './addContent';
|
||||||
import { deleteEqMaintainPlan } from '@/api/equipment/base/maintain/record'
|
import basicPage from '../../../../core/mixins/basic-page';
|
||||||
|
import { parseTime, toDay } from '../../../../core/mixins/code-filter';
|
||||||
import { publicFormatter } from '@/utils/dict';
|
import { publicFormatter } from '@/utils/dict';
|
||||||
|
import { getPlanPage } from '@/api/equipment/base/maintain/planconfig';
|
||||||
|
import { deleteEqMaintainPlan } from '@/api/equipment/base/maintain/record';
|
||||||
|
|
||||||
|
const tableProps = [
|
||||||
|
// {
|
||||||
|
// prop: 'createTime',
|
||||||
|
// label: '添加时间',
|
||||||
|
// filter: parseTime
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
prop: 'name',
|
||||||
|
label: '保养计划名称'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'departmentName',
|
||||||
|
label: '部门'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'lineName',
|
||||||
|
label: '产线名'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'maintenancePeriod',
|
||||||
|
label: '保养频率(天/次)'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'firstMaintenanceTime',
|
||||||
|
label: '首次保养时间',
|
||||||
|
filter: parseTime
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'maintainDuration',
|
||||||
|
label: '保养时长'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'maintainer',
|
||||||
|
label: '计划保养人员'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'confirmTimeLimit',
|
||||||
|
label: '确认时限',
|
||||||
|
filter: toDay
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'remark',
|
||||||
|
label: '备注'
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'PlanConfig',
|
mixins: [basicPage],
|
||||||
components: {},
|
|
||||||
mixins: [basicPageMixin],
|
|
||||||
data() {
|
data() {
|
||||||
const t = new Date();
|
|
||||||
const [y, m, d] = [t.getFullYear(), t.getMonth(), t.getDate()];
|
|
||||||
return {
|
return {
|
||||||
searchBarKeys: ['equipmentName', 'createTime'],
|
urlOptions: {
|
||||||
|
getDataListURL: getPlanPage,
|
||||||
|
deleteURL: deleteEqMaintainPlan
|
||||||
|
},
|
||||||
|
tableProps,
|
||||||
|
addContent: false,
|
||||||
|
listQuery: {
|
||||||
|
pageSize: 10,
|
||||||
|
pageNo: 1,
|
||||||
|
total: 0,
|
||||||
|
special: false,
|
||||||
|
planName: undefined
|
||||||
|
},
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
{
|
this.$auth.hasPermi(`equipment:plan-config:add`)
|
||||||
type: 'detail',
|
|
||||||
btnName: '保养记录',
|
|
||||||
},
|
|
||||||
this.$auth.hasPermi('equipment:plan-config:update')
|
|
||||||
? {
|
? {
|
||||||
type: 'edit',
|
type: 'add',
|
||||||
btnName: '修改',
|
btnName: '添加内容',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('equipment:plan-config:delete')
|
this.$auth.hasPermi(`equipment:plan-config:update`)
|
||||||
|
? {
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
this.$auth.hasPermi(`equipment:plan-config:delete`)
|
||||||
? {
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
btnName: '删除',
|
btnName: '删除',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v)=>v),
|
||||||
tableProps: [
|
tableData: [],
|
||||||
{
|
formConfig: [
|
||||||
prop: 'createTime',
|
|
||||||
label: '添加时间',
|
|
||||||
fixed: true,
|
|
||||||
width: 180,
|
|
||||||
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
|
||||||
},
|
|
||||||
{ prop: 'name', label: '计划名称' },
|
|
||||||
{ prop: 'code', label: '计划编号' },
|
|
||||||
{ prop: 'enabled', label: '启用状态', filter: (val) => ['停用', '启用'][val] },
|
|
||||||
{ prop: 'lineName', label: '产线' },
|
|
||||||
{ prop: 'sectionName', label: '工段' },
|
|
||||||
{ prop: 'equipmentName', label: '设备名称' },
|
|
||||||
{ prop: 'maintainDuration', label: '计划保养用时(h)' },
|
|
||||||
{ prop: 'maintenancePeriod', label: '保养频率(天/次)' },
|
|
||||||
{ prop: 'maintainType', label: '保养类型', filter: publicFormatter('maintain_type') },
|
|
||||||
{ prop: 'remark', label: '备注' },
|
|
||||||
],
|
|
||||||
searchBarFormConfig: [
|
|
||||||
{
|
{
|
||||||
type: 'input',
|
type: 'input',
|
||||||
label: '设备名',
|
label: '保养计划名称',
|
||||||
placeholder: '请输入设备名称',
|
placeholder: '保养计划名称',
|
||||||
param: 'equipmentName',
|
param: 'planName'
|
||||||
},
|
},
|
||||||
// 时间段
|
|
||||||
// {
|
|
||||||
// type: 'datePicker',
|
|
||||||
// label: '时间段',
|
|
||||||
// dateType: 'daterange', // datetimerange
|
|
||||||
// format: 'yyyy-MM-dd',
|
|
||||||
// valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
|
||||||
// // valueFormat: 'timestamp',
|
|
||||||
// rangeSeparator: '-',
|
|
||||||
// startPlaceholder: '开始日期',
|
|
||||||
// endPlaceholder: '结束日期',
|
|
||||||
// defaultTime: ['00:00:00', '23:59:59'],
|
|
||||||
// param: 'createTime',
|
|
||||||
// // defaultSelect: [
|
|
||||||
// // new Date(y, m, d)
|
|
||||||
// // .toLocaleString()
|
|
||||||
// // .split('/')
|
|
||||||
// // .map((item, index) => {
|
|
||||||
// // if (index == 1 || index == 2) return item.padStart(2, '0');
|
|
||||||
// // return item;
|
|
||||||
// // })
|
|
||||||
// // .join('-'),
|
|
||||||
// // new Date(y, m, d, 23, 59, 59)
|
|
||||||
// // .toLocaleString()
|
|
||||||
// // .split('/')
|
|
||||||
// // .map((item, index) => {
|
|
||||||
// // if (index == 1 || index == 2) return item.padStart(2, '0');
|
|
||||||
// // return item;
|
|
||||||
// // })
|
|
||||||
// // .join('-'),
|
|
||||||
// // ],
|
|
||||||
// },
|
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
@ -148,228 +155,81 @@ export default {
|
|||||||
type: 'separate',
|
type: 'separate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: this.$auth.hasPermi('equipment:plan-config:create')
|
type: this.$auth.hasPermi('equipment:plan-config:create') ? 'button' : '',
|
||||||
? 'button'
|
|
||||||
: '',
|
|
||||||
btnName: '新增',
|
btnName: '新增',
|
||||||
name: 'add',
|
name: 'add',
|
||||||
plain: true,
|
|
||||||
color: 'success',
|
color: 'success',
|
||||||
|
plain: true
|
||||||
},
|
},
|
||||||
// {
|
|
||||||
// type: this.$auth.hasPermi('base:quality-inspection-type:export')
|
|
||||||
// ? 'button'
|
|
||||||
// : '',
|
|
||||||
// btnName: '导出',
|
|
||||||
// name: 'export',
|
|
||||||
// color: 'warning',
|
|
||||||
// },
|
|
||||||
],
|
],
|
||||||
rows: [
|
|
||||||
[
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '计划名称',
|
|
||||||
prop: 'name',
|
|
||||||
rules: [{ required: true, message: '计划名称不能为空', trigger: 'blur' }],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '计划编号',
|
|
||||||
prop: 'code',
|
|
||||||
url: '/base/equipment-maintain-plan/getCode',
|
|
||||||
rules: [{ required: true, message: '计划编号不能为空', trigger: 'blur' }],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
select: true,
|
|
||||||
label: '设备名称',
|
|
||||||
prop: 'equipmentId',
|
|
||||||
// url: '/base/core-equipment/listAll?special=false',
|
|
||||||
url: '/base/core-equipment/page?special=false&pageNo=1&pageSize=99',
|
|
||||||
rules: [{ required: true, message: '设备名称不能为空', trigger: 'blur' }],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
select: true,
|
|
||||||
label: '保养类型',
|
|
||||||
prop: 'maintainType',
|
|
||||||
options: this.getDictDatas(this.DICT_TYPE.MAINTAIN_TYPE),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '保养时长(h)',
|
|
||||||
prop: 'maintainDuration',
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
type: 'number',
|
|
||||||
trigger: 'blur',
|
|
||||||
message: '请输入正确的数字',
|
|
||||||
transform: (val) => Number(val),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
input: true,
|
|
||||||
label: '保养频率(天/次)',
|
|
||||||
prop: 'maintenancePeriod',
|
|
||||||
rules: [
|
|
||||||
{
|
|
||||||
type: 'number',
|
|
||||||
trigger: 'blur',
|
|
||||||
message: '请输入正确的数字',
|
|
||||||
transform: (val) => Number(val),
|
|
||||||
},
|
|
||||||
],
|
|
||||||
rules: [{ required: true, message: '保养频率不能为空', trigger: 'blur' }],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
switch: true,
|
|
||||||
label: '启用状态',
|
|
||||||
prop: 'enabled',
|
|
||||||
bind: {
|
|
||||||
'active-value': 1,
|
|
||||||
'inactive-value': 0,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[{ input: true, label: '备注', prop: 'remark' }],
|
|
||||||
],
|
|
||||||
// 是否显示弹出层
|
|
||||||
open: false,
|
|
||||||
// 查询参数
|
|
||||||
queryParams: {
|
|
||||||
pageNo: 1,
|
|
||||||
pageSize: 10,
|
|
||||||
special: false,
|
|
||||||
equipmentName: null,
|
|
||||||
createTime: null,
|
|
||||||
},
|
|
||||||
// 表单参数
|
|
||||||
form: {},
|
|
||||||
basePath: '/base/equipment-maintain-plan',
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
created() {
|
components: {
|
||||||
if (this.$route.query) {
|
AddOrUpdate,
|
||||||
this.queryParams.equipmentId = this.$route.query?.equipmentId ?? undefined
|
AddContent
|
||||||
this.searchBarFormConfig[0].defaultSelect = this.$route.query.equipmentName ?? undefined
|
|
||||||
}
|
|
||||||
this.getList();
|
|
||||||
},
|
},
|
||||||
|
created() {},
|
||||||
methods: {
|
methods: {
|
||||||
/** 查询列表 */
|
// 删除
|
||||||
getList() {
|
deleteHandle(id, name, index) {
|
||||||
this.loading = true;
|
this.$confirm(`是否确认删除产品名称为"${name}"的数据项`, "提示", {
|
||||||
// 执行查询
|
confirmButtonText: "确定",
|
||||||
this.recv(this.queryParams).then((response) => {
|
cancelButtonText: "取消",
|
||||||
this.list = response.data.list;
|
type: "warning",
|
||||||
this.total = response.data.total;
|
})
|
||||||
this.loading = false;
|
.then(() => {
|
||||||
});
|
this.urlOptions.deleteURL(id).then(({ data }) => {
|
||||||
},
|
this.$message({
|
||||||
/** 取消按钮 */
|
message: "操作成功",
|
||||||
cancel() {
|
type: "success",
|
||||||
this.open = false;
|
duration: 1500,
|
||||||
this.reset();
|
onClose: () => {
|
||||||
},
|
this.getDataList();
|
||||||
/** 表单重置 */
|
},
|
||||||
reset() {
|
});
|
||||||
this.form = {
|
});
|
||||||
code: null,
|
})
|
||||||
name: null,
|
.catch(() => { });
|
||||||
equipmentId: null,
|
},
|
||||||
enabled: null,
|
// 查看详情
|
||||||
maintenancePeriod: null,
|
otherMethods(val) {
|
||||||
maintainDuration: null,
|
if (val.type === 'add') {
|
||||||
maintainType: null,
|
this.addContent = true;
|
||||||
remark: null,
|
// this.addOrEditTitle = '详情';
|
||||||
enabled: 1
|
this.$nextTick(() => {
|
||||||
};
|
this.$refs.addContent.init(val.data.id);
|
||||||
this.resetForm('form');
|
|
||||||
},
|
|
||||||
/** 搜索按钮操作 */
|
|
||||||
handleQuery() {
|
|
||||||
this.queryParams.pageNo = 1;
|
|
||||||
this.getList();
|
|
||||||
},
|
|
||||||
/** 重置按钮操作 */
|
|
||||||
resetQuery() {
|
|
||||||
this.resetForm('queryForm');
|
|
||||||
this.handleQuery();
|
|
||||||
},
|
|
||||||
/** 新增按钮操作 */
|
|
||||||
handleAdd() {
|
|
||||||
this.reset();
|
|
||||||
this.open = true;
|
|
||||||
this.title = '添加保养计划';
|
|
||||||
},
|
|
||||||
handleDetail(row){
|
|
||||||
// alert('跳转到 保养记录')
|
|
||||||
// console.log(row)
|
|
||||||
const queryData = {
|
|
||||||
equipmentId: row.equipmentId,
|
|
||||||
maintainPlanId: row.id,
|
|
||||||
isAdd: 1
|
|
||||||
// relatePlan: row.enabled
|
|
||||||
}
|
|
||||||
if (this.queryParams.createTime) {
|
|
||||||
queryData.createTime = this.queryParams.createTime
|
|
||||||
}
|
|
||||||
console.log('你好', queryData)
|
|
||||||
this.$router.push({ path: '/equipment/base/maintain/record',query: queryData })
|
|
||||||
// this.$router.push({ path: '/equipment/base/maintain/record', query: { orderNo: row.orderNo }})
|
|
||||||
},
|
|
||||||
/** 修改按钮操作 */
|
|
||||||
handleUpdate(row) {
|
|
||||||
this.reset();
|
|
||||||
const id = row.id;
|
|
||||||
this.info({ id }).then((response) => {
|
|
||||||
this.form = response.data;
|
|
||||||
this.open = true;
|
|
||||||
this.title = '修改保养计划';
|
|
||||||
});
|
|
||||||
},
|
|
||||||
/** 提交按钮 */
|
|
||||||
submitForm() {
|
|
||||||
this.$refs['form'].validate((valid) => {
|
|
||||||
if (!valid) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 修改的提交
|
|
||||||
if (this.form.id != null) {
|
|
||||||
this.put(this.form).then((response) => {
|
|
||||||
this.$modal.msgSuccess('修改成功');
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// 添加的提交
|
|
||||||
this.post(this.form).then((response) => {
|
|
||||||
this.$modal.msgSuccess('新增成功');
|
|
||||||
this.open = false;
|
|
||||||
this.getList();
|
|
||||||
});
|
});
|
||||||
});
|
}
|
||||||
},
|
},
|
||||||
/** 删除按钮操作 */
|
buttonClick(val) {
|
||||||
handleDelete(row) {
|
switch (val.btnName) {
|
||||||
const id = row.id;
|
case 'search':
|
||||||
this.$modal
|
// this.listQuery.pageNo = 1;
|
||||||
.confirm('是否确认删除计划名称为"' + row.name + '"的数据项?')
|
// this.listQuery.pageSize = 10;
|
||||||
.then(function () {
|
this.listQuery.planName = val.planName ? val.planName : undefined;
|
||||||
return deleteEqMaintainPlan(id);
|
this.listQuery.code = val.code ? val.code : undefined;
|
||||||
})
|
this.getDataList();
|
||||||
.then(() => {
|
break;
|
||||||
this.getList();
|
case 'reset':
|
||||||
this.$modal.msgSuccess('删除成功');
|
this.$refs.searchBarForm.resetForm();
|
||||||
})
|
this.listQuery = {
|
||||||
.catch(() => {});
|
pageSize: 10,
|
||||||
|
pageNo: 1,
|
||||||
|
total: 1,
|
||||||
|
};
|
||||||
|
this.getDataList();
|
||||||
|
break;
|
||||||
|
case 'add':
|
||||||
|
this.addOrEditTitle = '新增';
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.addOrUpdateHandle();
|
||||||
|
break;
|
||||||
|
case 'export':
|
||||||
|
this.handleExport();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
console.log(val);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
376
src/views/equipment/base/maintain/PlanConfig/index1.vue
Normal file
376
src/views/equipment/base/maintain/PlanConfig/index1.vue
Normal file
@ -0,0 +1,376 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<!-- 搜索工作栏 -->
|
||||||
|
<SearchBar
|
||||||
|
:formConfigs="searchBarFormConfig"
|
||||||
|
ref="search-bar"
|
||||||
|
@headBtnClick="handleSearchBarBtnClick" />
|
||||||
|
|
||||||
|
<!-- 列表 -->
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="queryParams.pageNo"
|
||||||
|
:limit="queryParams.pageSize"
|
||||||
|
:table-data="list"
|
||||||
|
@emitFun="handleEmitFun">
|
||||||
|
<method-btn
|
||||||
|
v-if="tableBtn.length"
|
||||||
|
slot="handleBtn"
|
||||||
|
label="操作"
|
||||||
|
:width="120"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleTableBtnClick" />
|
||||||
|
</base-table>
|
||||||
|
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNo"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList" />
|
||||||
|
|
||||||
|
<!-- 对话框(添加 / 修改) -->
|
||||||
|
<base-dialog
|
||||||
|
:dialogTitle="title"
|
||||||
|
:dialogVisible="open"
|
||||||
|
@close="cancel"
|
||||||
|
@cancel="cancel"
|
||||||
|
@confirm="submitForm">
|
||||||
|
<DialogForm
|
||||||
|
v-if="open"
|
||||||
|
ref="form"
|
||||||
|
v-model="form"
|
||||||
|
:has-files="false"
|
||||||
|
:rows="rows" />
|
||||||
|
</base-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import moment from 'moment';
|
||||||
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
|
import { deleteEqMaintainPlan } from '@/api/equipment/base/maintain/record'
|
||||||
|
import { publicFormatter } from '@/utils/dict';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'PlanConfig',
|
||||||
|
components: {},
|
||||||
|
mixins: [basicPageMixin],
|
||||||
|
data() {
|
||||||
|
const t = new Date();
|
||||||
|
const [y, m, d] = [t.getFullYear(), t.getMonth(), t.getDate()];
|
||||||
|
return {
|
||||||
|
searchBarKeys: ['equipmentName', 'createTime'],
|
||||||
|
tableBtn: [
|
||||||
|
{
|
||||||
|
type: 'detail',
|
||||||
|
btnName: '保养记录',
|
||||||
|
},
|
||||||
|
this.$auth.hasPermi('equipment:plan-config:update')
|
||||||
|
? {
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '修改',
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
this.$auth.hasPermi('equipment:plan-config:delete')
|
||||||
|
? {
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
}
|
||||||
|
: undefined,
|
||||||
|
].filter((v) => v),
|
||||||
|
tableProps: [
|
||||||
|
{
|
||||||
|
prop: 'createTime',
|
||||||
|
label: '添加时间',
|
||||||
|
fixed: true,
|
||||||
|
width: 180,
|
||||||
|
filter: (val) => moment(val).format('yyyy-MM-DD HH:mm:ss'),
|
||||||
|
},
|
||||||
|
{ prop: 'name', label: '计划名称' },
|
||||||
|
{ prop: 'code', label: '计划编号' },
|
||||||
|
{ prop: 'enabled', label: '启用状态', filter: (val) => ['停用', '启用'][val] },
|
||||||
|
{ prop: 'lineName', label: '产线' },
|
||||||
|
{ prop: 'sectionName', label: '工段' },
|
||||||
|
{ prop: 'equipmentName', label: '设备名称' },
|
||||||
|
{ prop: 'maintainDuration', label: '计划保养用时(h)' },
|
||||||
|
{ prop: 'maintenancePeriod', label: '保养频率(天/次)' },
|
||||||
|
{ prop: 'maintainType', label: '保养类型', filter: publicFormatter('maintain_type') },
|
||||||
|
{ prop: 'remark', label: '备注' },
|
||||||
|
],
|
||||||
|
searchBarFormConfig: [
|
||||||
|
{
|
||||||
|
type: 'input',
|
||||||
|
label: '设备名',
|
||||||
|
placeholder: '请输入设备名称',
|
||||||
|
param: 'equipmentName',
|
||||||
|
},
|
||||||
|
// 时间段
|
||||||
|
// {
|
||||||
|
// type: 'datePicker',
|
||||||
|
// label: '时间段',
|
||||||
|
// dateType: 'daterange', // datetimerange
|
||||||
|
// format: 'yyyy-MM-dd',
|
||||||
|
// valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
|
// // valueFormat: 'timestamp',
|
||||||
|
// rangeSeparator: '-',
|
||||||
|
// startPlaceholder: '开始日期',
|
||||||
|
// endPlaceholder: '结束日期',
|
||||||
|
// defaultTime: ['00:00:00', '23:59:59'],
|
||||||
|
// param: 'createTime',
|
||||||
|
// // defaultSelect: [
|
||||||
|
// // new Date(y, m, d)
|
||||||
|
// // .toLocaleString()
|
||||||
|
// // .split('/')
|
||||||
|
// // .map((item, index) => {
|
||||||
|
// // if (index == 1 || index == 2) return item.padStart(2, '0');
|
||||||
|
// // return item;
|
||||||
|
// // })
|
||||||
|
// // .join('-'),
|
||||||
|
// // new Date(y, m, d, 23, 59, 59)
|
||||||
|
// // .toLocaleString()
|
||||||
|
// // .split('/')
|
||||||
|
// // .map((item, index) => {
|
||||||
|
// // if (index == 1 || index == 2) return item.padStart(2, '0');
|
||||||
|
// // return item;
|
||||||
|
// // })
|
||||||
|
// // .join('-'),
|
||||||
|
// // ],
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
btnName: '查询',
|
||||||
|
name: 'search',
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'separate',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: this.$auth.hasPermi('equipment:plan-config:create')
|
||||||
|
? 'button'
|
||||||
|
: '',
|
||||||
|
btnName: '新增',
|
||||||
|
name: 'add',
|
||||||
|
plain: true,
|
||||||
|
color: 'success',
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// type: this.$auth.hasPermi('base:quality-inspection-type:export')
|
||||||
|
// ? 'button'
|
||||||
|
// : '',
|
||||||
|
// btnName: '导出',
|
||||||
|
// name: 'export',
|
||||||
|
// color: 'warning',
|
||||||
|
// },
|
||||||
|
],
|
||||||
|
rows: [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '计划名称',
|
||||||
|
prop: 'name',
|
||||||
|
rules: [{ required: true, message: '计划名称不能为空', trigger: 'blur' }],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '计划编号',
|
||||||
|
prop: 'code',
|
||||||
|
url: '/base/equipment-maintain-plan/getCode',
|
||||||
|
rules: [{ required: true, message: '计划编号不能为空', trigger: 'blur' }],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '设备名称',
|
||||||
|
prop: 'equipmentId',
|
||||||
|
// url: '/base/core-equipment/listAll?special=false',
|
||||||
|
url: '/base/core-equipment/page?special=false&pageNo=1&pageSize=99',
|
||||||
|
rules: [{ required: true, message: '设备名称不能为空', trigger: 'blur' }],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
select: true,
|
||||||
|
label: '保养类型',
|
||||||
|
prop: 'maintainType',
|
||||||
|
options: this.getDictDatas(this.DICT_TYPE.MAINTAIN_TYPE),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养时长(h)',
|
||||||
|
prop: 'maintainDuration',
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
type: 'number',
|
||||||
|
trigger: 'blur',
|
||||||
|
message: '请输入正确的数字',
|
||||||
|
transform: (val) => Number(val),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
input: true,
|
||||||
|
label: '保养频率(天/次)',
|
||||||
|
prop: 'maintenancePeriod',
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
type: 'number',
|
||||||
|
trigger: 'blur',
|
||||||
|
message: '请输入正确的数字',
|
||||||
|
transform: (val) => Number(val),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
rules: [{ required: true, message: '保养频率不能为空', trigger: 'blur' }],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
switch: true,
|
||||||
|
label: '启用状态',
|
||||||
|
prop: 'enabled',
|
||||||
|
bind: {
|
||||||
|
'active-value': 1,
|
||||||
|
'inactive-value': 0,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[{ input: true, label: '备注', prop: 'remark' }],
|
||||||
|
],
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
special: false,
|
||||||
|
equipmentName: null,
|
||||||
|
createTime: null,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
basePath: '/base/equipment-maintain-plan',
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
if (this.$route.query) {
|
||||||
|
this.queryParams.equipmentId = this.$route.query?.equipmentId ?? undefined
|
||||||
|
this.searchBarFormConfig[0].defaultSelect = this.$route.query.equipmentName ?? undefined
|
||||||
|
}
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
// 执行查询
|
||||||
|
this.recv(this.queryParams).then((response) => {
|
||||||
|
this.list = response.data.list;
|
||||||
|
this.total = response.data.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 取消按钮 */
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
/** 表单重置 */
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
code: null,
|
||||||
|
name: null,
|
||||||
|
equipmentId: null,
|
||||||
|
enabled: null,
|
||||||
|
maintenancePeriod: null,
|
||||||
|
maintainDuration: null,
|
||||||
|
maintainType: null,
|
||||||
|
remark: null,
|
||||||
|
enabled: 1
|
||||||
|
};
|
||||||
|
this.resetForm('form');
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNo = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm('queryForm');
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = '添加保养计划';
|
||||||
|
},
|
||||||
|
handleDetail(row){
|
||||||
|
// alert('跳转到 保养记录')
|
||||||
|
// console.log(row)
|
||||||
|
const queryData = {
|
||||||
|
equipmentId: row.equipmentId,
|
||||||
|
maintainPlanId: row.id,
|
||||||
|
isAdd: 1
|
||||||
|
// relatePlan: row.enabled
|
||||||
|
}
|
||||||
|
if (this.queryParams.createTime) {
|
||||||
|
queryData.createTime = this.queryParams.createTime
|
||||||
|
}
|
||||||
|
console.log('你好', queryData)
|
||||||
|
this.$router.push({ path: '/equipment/base/maintain/record',query: queryData })
|
||||||
|
// this.$router.push({ path: '/equipment/base/maintain/record', query: { orderNo: row.orderNo }})
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const id = row.id;
|
||||||
|
this.info({ id }).then((response) => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = '修改保养计划';
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs['form'].validate((valid) => {
|
||||||
|
if (!valid) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 修改的提交
|
||||||
|
if (this.form.id != null) {
|
||||||
|
this.put(this.form).then((response) => {
|
||||||
|
this.$modal.msgSuccess('修改成功');
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 添加的提交
|
||||||
|
this.post(this.form).then((response) => {
|
||||||
|
this.$modal.msgSuccess('新增成功');
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
const id = row.id;
|
||||||
|
this.$modal
|
||||||
|
.confirm('是否确认删除计划名称为"' + row.name + '"的数据项?')
|
||||||
|
.then(function () {
|
||||||
|
return deleteEqMaintainPlan(id);
|
||||||
|
})
|
||||||
|
.then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess('删除成功');
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
294
src/views/equipment/base/maintain/Record/addContent.vue
Normal file
294
src/views/equipment/base/maintain/Record/addContent.vue
Normal file
@ -0,0 +1,294 @@
|
|||||||
|
<!--
|
||||||
|
* @Author: zwq
|
||||||
|
* @Date: 2021-11-18 14:16:25
|
||||||
|
* @LastEditors: DY
|
||||||
|
* @LastEditTime: 2024-02-24 16:59:05
|
||||||
|
* @Description:
|
||||||
|
-->
|
||||||
|
<template>
|
||||||
|
<el-drawer
|
||||||
|
:visible.sync="visible"
|
||||||
|
:show-close="false"
|
||||||
|
:wrapper-closable="isdetail"
|
||||||
|
class="drawer"
|
||||||
|
size="60%">
|
||||||
|
<small-title slot="title" :no-padding="true">
|
||||||
|
{{ '设备保养记录详情' }}
|
||||||
|
</small-title>
|
||||||
|
<div class="content">
|
||||||
|
<div class="visual-part">
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">计划保养人员</div>
|
||||||
|
<div class="lightTip">{{ dataForm.planMaintainWorker }}</div>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="8">
|
||||||
|
<div class="blodTip">实际保养人员</div>
|
||||||
|
<div class="lightTip">{{ dataForm.maintainWorker }}</div>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="attr-list" v-if="idAttrShow">
|
||||||
|
<small-title
|
||||||
|
style="margin: 16px 0; padding-left: 8px"
|
||||||
|
:no-padding="true">
|
||||||
|
保养内容
|
||||||
|
</small-title>
|
||||||
|
|
||||||
|
<div v-if="!isdetail" class="action_btn">
|
||||||
|
<template>
|
||||||
|
<span style="display: inline-block;">
|
||||||
|
<el-button type="text" @click="addNew()" icon="el-icon-plus">新增</el-button>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</div>
|
||||||
|
<base-table
|
||||||
|
:table-props="tableProps"
|
||||||
|
:page="listQuery.pageNo"
|
||||||
|
:limit="listQuery.pageSize"
|
||||||
|
:table-data="planList">
|
||||||
|
<method-btn
|
||||||
|
v-if="!isdetail"
|
||||||
|
slot="handleBtn"
|
||||||
|
:width="120"
|
||||||
|
label="操作"
|
||||||
|
:method-list="tableBtn"
|
||||||
|
@clickBtn="handleClick" />
|
||||||
|
</base-table>
|
||||||
|
<pagination
|
||||||
|
v-show="listQuery.total > 0"
|
||||||
|
:total="listQuery.total"
|
||||||
|
:page.sync="listQuery.pageNo"
|
||||||
|
:limit.sync="listQuery.pageSize"
|
||||||
|
:page-sizes="[5, 10, 15]"
|
||||||
|
@pagination="getList" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="!isdetail" class="drawer-body__footer">
|
||||||
|
<el-button style="" @click="goback()">取消</el-button>
|
||||||
|
<el-button type="primary" @click="dataFormSubmit()">确定</el-button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- <attr-add
|
||||||
|
v-if="addOrUpdateVisible"
|
||||||
|
ref="addOrUpdate"
|
||||||
|
:plan-id="dataForm.id"
|
||||||
|
@refreshDataList="getList" /> -->
|
||||||
|
</el-drawer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import basicAdd from '../../../../core/mixins/basic-add';
|
||||||
|
import { getLog, deleteLogDet, getLogDetPage } from '@/api/equipment/base/maintain/record';
|
||||||
|
// import { listData } from "@/api/system/dict/data";
|
||||||
|
import SmallTitle from '../PlanConfig/SmallTitle';
|
||||||
|
// import { parseTime } from '../../../../core/mixins/code-filter';
|
||||||
|
// import attrAdd from './attr-add';
|
||||||
|
// import { getDictDatas } from "@/utils/dict";
|
||||||
|
|
||||||
|
const tableBtn = [
|
||||||
|
{
|
||||||
|
type: 'edit',
|
||||||
|
btnName: '编辑',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'delete',
|
||||||
|
btnName: '删除',
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const tableProps = [
|
||||||
|
{
|
||||||
|
prop: 'equipmentName',
|
||||||
|
label: '设备名称',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'program',
|
||||||
|
label: '保养项目',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'maintenanceDes',
|
||||||
|
label: '保养描述',
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
export default {
|
||||||
|
mixins: [basicAdd],
|
||||||
|
components: { SmallTitle },
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tableBtn,
|
||||||
|
tableProps,
|
||||||
|
addOrUpdateVisible: false,
|
||||||
|
urlOptions: {
|
||||||
|
isGetCode: false,
|
||||||
|
infoURL: getLog
|
||||||
|
},
|
||||||
|
listQuery: {
|
||||||
|
pageSize: 99,
|
||||||
|
pageNo: 1,
|
||||||
|
total: 0
|
||||||
|
},
|
||||||
|
dataForm: {},
|
||||||
|
planList: [],
|
||||||
|
visible: false,
|
||||||
|
isdetail: false,
|
||||||
|
idAttrShow: false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
mounted() {},
|
||||||
|
methods: {
|
||||||
|
initData() {
|
||||||
|
this.planList.splice(0);
|
||||||
|
this.listQuery.total = 0;
|
||||||
|
},
|
||||||
|
handleClick(raw) {
|
||||||
|
if (raw.type === 'delete') {
|
||||||
|
this.$confirm(
|
||||||
|
`是否确认删除保养项目名为"${raw.data.program}"的数据项?`,
|
||||||
|
'提示',
|
||||||
|
{
|
||||||
|
confirmButtonText: '确定',
|
||||||
|
cancelButtonText: '取消',
|
||||||
|
type: 'warning',
|
||||||
|
}
|
||||||
|
)
|
||||||
|
.then(() => {
|
||||||
|
deleteLogDet(raw.data.id).then(({ data }) => {
|
||||||
|
this.$message({
|
||||||
|
message: '操作成功',
|
||||||
|
type: 'success',
|
||||||
|
duration: 1500,
|
||||||
|
onClose: () => {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
} else {
|
||||||
|
this.addNew(raw.data.id);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getList() {
|
||||||
|
// 获取物料的属性列表
|
||||||
|
getLogDetPage({
|
||||||
|
...this.listQuery,
|
||||||
|
logId: this.dataForm.id,
|
||||||
|
}).then((response) => {
|
||||||
|
this.planList = response.data.list;
|
||||||
|
this.listQuery.total = response.data.total;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
init(id, isdetail) {
|
||||||
|
this.initData();
|
||||||
|
this.isdetail = isdetail || false;
|
||||||
|
this.dataForm.id = id || undefined;
|
||||||
|
this.visible = true;
|
||||||
|
if (id) {
|
||||||
|
this.idAttrShow = true
|
||||||
|
} else {
|
||||||
|
this.idAttrShow = false
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
|
||||||
|
if (this.dataForm.id) {
|
||||||
|
// 获取计划详情
|
||||||
|
this.urlOptions.infoURL({ id: id}).then(response => {
|
||||||
|
this.dataForm = response.data;
|
||||||
|
});
|
||||||
|
// 获取详情分页
|
||||||
|
this.getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
goback() {
|
||||||
|
this.$emit('refreshDataList');
|
||||||
|
this.visible = false;
|
||||||
|
// this.initData();
|
||||||
|
},
|
||||||
|
// 新增 / 修改
|
||||||
|
addNew(id) {
|
||||||
|
this.addOrUpdateVisible = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addOrUpdate.init(id);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style scoped>
|
||||||
|
.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;
|
||||||
|
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: 10vh;
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
.action_btn {
|
||||||
|
float: right;
|
||||||
|
margin: -40px 15px;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.add {
|
||||||
|
color: #0b58ff;
|
||||||
|
}
|
||||||
|
.blodTip {
|
||||||
|
height: 16px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
color: rgba(0,0,0,0.85);
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
|
.lightTip {
|
||||||
|
/* height: 16px; */
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: rgba(102,102,102,0.75);
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -51,6 +51,10 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</base-dialog>
|
</base-dialog>
|
||||||
|
<add-content
|
||||||
|
v-if="addContent"
|
||||||
|
ref="addContent"
|
||||||
|
@refreshDataList="addContent = false" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -59,15 +63,37 @@ import moment from 'moment';
|
|||||||
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
import basicPageMixin from '@/mixins/lb/basicPageMixin';
|
||||||
import Editor from '@/components/Editor';
|
import Editor from '@/components/Editor';
|
||||||
import { deleteEqMaintainLog, exportMaintainLogExcel } from '@/api/equipment/base/maintain/record';
|
import { deleteEqMaintainLog, exportMaintainLogExcel } from '@/api/equipment/base/maintain/record';
|
||||||
|
import AddContent from './addContent.vue';
|
||||||
|
|
||||||
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
const timeFilter = (val) => moment(val).format('yyyy-MM-DD HH:mm:ss');
|
||||||
|
|
||||||
|
const btn = {
|
||||||
|
name: 'tableBtn',
|
||||||
|
props: ['injectData'],
|
||||||
|
data() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
handleClick() {
|
||||||
|
this.$emit('emitData', { action: this.injectData.label, value: this.injectData });
|
||||||
|
},
|
||||||
|
},
|
||||||
|
render: function (h) {
|
||||||
|
return (
|
||||||
|
<el-button type="text" onClick={this.handleClick}>
|
||||||
|
{this.injectData.name}
|
||||||
|
</el-button>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'EquipmentMaintainRecord',
|
name: 'EquipmentMaintainRecord',
|
||||||
components: {},
|
components: { AddContent },
|
||||||
mixins: [basicPageMixin],
|
mixins: [basicPageMixin],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
addContent: false,
|
||||||
searchBarKeys: [
|
searchBarKeys: [
|
||||||
'maintainPlanId',
|
'maintainPlanId',
|
||||||
'startTime',
|
'startTime',
|
||||||
@ -75,65 +101,70 @@ export default {
|
|||||||
'equipmentId',
|
'equipmentId',
|
||||||
],
|
],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('equipment:maintain-record:update')
|
// this.$auth.hasPermi('equipment:maintain-record:update')
|
||||||
? {
|
// ? {
|
||||||
type: 'detail',
|
// type: 'detail',
|
||||||
btnName: '详情',
|
// btnName: '详情',
|
||||||
}
|
// }
|
||||||
: undefined,
|
// : undefined,
|
||||||
this.$auth.hasPermi('equipment:maintain-record:update')
|
// this.$auth.hasPermi('equipment:maintain-record:update')
|
||||||
? {
|
// ? {
|
||||||
type: 'edit',
|
// type: 'edit',
|
||||||
btnName: '修改',
|
// btnName: '修改',
|
||||||
}
|
// }
|
||||||
: undefined,
|
// : undefined,
|
||||||
this.$auth.hasPermi('equipment:maintain-record:delete')
|
// this.$auth.hasPermi('equipment:maintain-record:delete')
|
||||||
? {
|
// ? {
|
||||||
type: 'delete',
|
// type: 'delete',
|
||||||
btnName: '删除',
|
// btnName: '删除',
|
||||||
}
|
// }
|
||||||
: undefined,
|
// : undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
{
|
// {
|
||||||
prop: 'createTime',
|
// prop: 'createTime',
|
||||||
label: '添加时间',
|
// label: '添加时间',
|
||||||
fixed: true,
|
// fixed: true,
|
||||||
width: 180,
|
// width: 180,
|
||||||
filter: timeFilter,
|
// filter: timeFilter,
|
||||||
},
|
// },
|
||||||
{ prop: 'maintainOrderNumber', label: '设备保养单号' },
|
{ prop: 'maintainOrderNumber', label: '设备保养单号' },
|
||||||
{ prop: 'startTime', label: '开始时间', filter: timeFilter },
|
{ prop: 'planName', label: '保养计划名称' },
|
||||||
{ prop: 'endTime', label: '结束时间', filter: timeFilter },
|
{ prop: 'departmentName', label: '部门' },
|
||||||
{ prop: 'equipmentName', label: '设备名称' },
|
{ prop: 'lineName', label: '产线名' },
|
||||||
{ prop: 'maintainWorker', label: '保养人员' },
|
{ prop: 'planStartTime', label: '计划开始时间', filter: timeFilter },
|
||||||
|
{ prop: 'planEndTime', label: '计划结束时间', filter: timeFilter },
|
||||||
|
{ prop: 'startTime', label: '实际开始时间', filter: timeFilter },
|
||||||
|
{ prop: 'endTime', label: '实际结束时间', filter: timeFilter },
|
||||||
|
// { prop: 'equipmentName', label: '设备名称' },
|
||||||
|
// { prop: 'maintainWorker', label: '保养人员' },
|
||||||
{
|
{
|
||||||
prop: 'relatePlan',
|
prop: 'relatePlan',
|
||||||
label: '是否计划保养',
|
label: '保养计划类型',
|
||||||
filter: (v) => (v != null ? ['', '是', '否'][v] : ''),
|
filter: (v) => (v != null ? ['', '计划型', '非计划型'][v] : ''),
|
||||||
},
|
},
|
||||||
{ prop: 'planName', label: '保养计划名称' },
|
{ prop: 'opt', label: '详情', name: '详情', subcomponent: btn }
|
||||||
{ prop: 'maintainDuration', label: '计划保养用时(h)' },
|
// { prop: 'maintainDuration', label: '计划保养用时(h)' },
|
||||||
{ prop: 'timeUsed', label: '实际保养用时(h)' },
|
// { prop: 'timeUsed', label: '实际保养用时(h)' },
|
||||||
{ prop: 'remark', label: '备注' },
|
// { prop: 'remark', label: '备注' },
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
|
// {
|
||||||
|
// type: 'select',
|
||||||
|
// label: '设备',
|
||||||
|
// placeholder: '请选择设备',
|
||||||
|
// param: 'equipmentId',
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '设备',
|
label: '保养计划名称',
|
||||||
placeholder: '请选择设备',
|
|
||||||
param: 'equipmentId',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: 'select',
|
|
||||||
label: '计划名称',
|
|
||||||
placeholder: '请选择计划名称',
|
placeholder: '请选择计划名称',
|
||||||
param: 'maintainPlanId',
|
param: 'maintainPlanId',
|
||||||
},
|
},
|
||||||
// 开始结束时间
|
// 开始结束时间
|
||||||
{
|
{
|
||||||
type: 'datePicker',
|
type: 'datePicker',
|
||||||
label: '保养开始时间',
|
label: '实际开始时间',
|
||||||
dateType: 'daterange', // datetimerange
|
dateType: 'daterange', // datetimerange
|
||||||
format: 'yyyy-MM-dd',
|
format: 'yyyy-MM-dd',
|
||||||
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
valueFormat: 'yyyy-MM-dd HH:mm:ss',
|
||||||
@ -144,15 +175,15 @@ export default {
|
|||||||
param: 'startTime',
|
param: 'startTime',
|
||||||
// width: 350,
|
// width: 350,
|
||||||
},
|
},
|
||||||
{
|
// {
|
||||||
type: 'select',
|
// type: 'select',
|
||||||
label: '是否计划保养',
|
// label: '是否计划保养',
|
||||||
selectOptions: [
|
// selectOptions: [
|
||||||
{ name: '是', id: 1 },
|
// { name: '是', id: 1 },
|
||||||
{ name: '否', id: 2 },
|
// { name: '否', id: 2 },
|
||||||
],
|
// ],
|
||||||
param: 'relatePlan',
|
// param: 'relatePlan',
|
||||||
},
|
// },
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
btnName: '查询',
|
btnName: '查询',
|
||||||
@ -170,24 +201,24 @@ export default {
|
|||||||
name: 'export',
|
name: 'export',
|
||||||
plain: true,
|
plain: true,
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
},
|
}
|
||||||
{
|
// {
|
||||||
type: this.$auth.hasPermi('equipment:maintain-record:create')
|
// type: this.$auth.hasPermi('equipment:maintain-record:create')
|
||||||
? 'button'
|
// ? 'button'
|
||||||
: '',
|
// : '',
|
||||||
btnName: '新增',
|
// btnName: '新增',
|
||||||
name: 'add',
|
// name: 'add',
|
||||||
plain: true,
|
// plain: true,
|
||||||
color: 'success',
|
// color: 'success',
|
||||||
},
|
// },
|
||||||
{
|
// {
|
||||||
type: this.$auth.hasPermi('equipment:maintain-record:export')
|
// type: this.$auth.hasPermi('equipment:maintain-record:export')
|
||||||
? 'button'
|
// ? 'button'
|
||||||
: '',
|
// : '',
|
||||||
btnName: '导出',
|
// btnName: '导出',
|
||||||
name: 'export',
|
// name: 'export',
|
||||||
color: 'warning',
|
// color: 'warning',
|
||||||
},
|
// },
|
||||||
],
|
],
|
||||||
rows: [
|
rows: [
|
||||||
[
|
[
|
||||||
@ -339,6 +370,18 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
handleEmitFun({action, value}) {
|
||||||
|
switch (action) {
|
||||||
|
// 查看详情
|
||||||
|
case '详情':
|
||||||
|
// this.handleDetail({ id: value.id })
|
||||||
|
this.addContent = true;
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.addContent.init(value.id, true);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
},
|
||||||
initSearchBar() {
|
initSearchBar() {
|
||||||
this.http('/base/core-equipment/page', 'get', {
|
this.http('/base/core-equipment/page', 'get', {
|
||||||
special: false,
|
special: false,
|
||||||
|
@ -68,7 +68,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
searchBarKeys: ['maintenanceStatus', 'createTime', 'equipmentId'],
|
searchBarKeys: ['maintenanceResult', 'createTime', 'equipmentId'],
|
||||||
tableBtn: [
|
tableBtn: [
|
||||||
this.$auth.hasPermi('equipment:repair:update')
|
this.$auth.hasPermi('equipment:repair:update')
|
||||||
? {
|
? {
|
||||||
@ -76,18 +76,18 @@ export default {
|
|||||||
btnName: '详情',
|
btnName: '详情',
|
||||||
}
|
}
|
||||||
: undefined,
|
: undefined,
|
||||||
this.$auth.hasPermi('equipment:repair:finish')
|
// this.$auth.hasPermi('equipment:repair:finish')
|
||||||
? {
|
// ? {
|
||||||
type: 'finish',
|
// type: 'finish',
|
||||||
btnName: '完成',
|
// btnName: '完成',
|
||||||
}
|
// }
|
||||||
: undefined,
|
// : undefined,
|
||||||
this.$auth.hasPermi('equipment:repair:update')
|
// this.$auth.hasPermi('equipment:repair:update')
|
||||||
? {
|
// ? {
|
||||||
type: 'edit',
|
// type: 'edit',
|
||||||
btnName: '修改',
|
// btnName: '修改',
|
||||||
}
|
// }
|
||||||
: undefined,
|
// : undefined,
|
||||||
this.$auth.hasPermi('equipment:repair:delete')
|
this.$auth.hasPermi('equipment:repair:delete')
|
||||||
? {
|
? {
|
||||||
type: 'delete',
|
type: 'delete',
|
||||||
@ -96,33 +96,40 @@ export default {
|
|||||||
: undefined,
|
: undefined,
|
||||||
].filter((v) => v),
|
].filter((v) => v),
|
||||||
tableProps: [
|
tableProps: [
|
||||||
|
// {
|
||||||
|
// prop: 'createTime',
|
||||||
|
// label: '添加时间',
|
||||||
|
// fixed: true,
|
||||||
|
// width: 180,
|
||||||
|
// filter: parseTime,
|
||||||
|
// },
|
||||||
|
{ prop: 'repairOrderNumber', label: '维修单号' },
|
||||||
|
{ prop: 'lineName', label: '产线名' },
|
||||||
|
{ prop: 'sectionName', label: '工段名' },
|
||||||
|
{ prop: 'equipmentName', label: '设备名称', minWidth: 100, showOverflowtooltip: true },
|
||||||
|
{ prop: 'faultDetail', label: '故障明细' },
|
||||||
|
// { prop: 'maintenanceDetail', label: '维修明细', subcomponent: htmls, minWidth: 100, showOverflowtooltip: true },
|
||||||
{
|
{
|
||||||
prop: 'createTime',
|
prop: 'maintenanceStartTime',
|
||||||
label: '添加时间',
|
label: '维修开始时间',
|
||||||
fixed: true,
|
|
||||||
width: 180,
|
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
},
|
},
|
||||||
{ prop: 'repairOrderNumber', label: '设备维修单号' },
|
|
||||||
{ prop: 'maintenanceStartTime', label: '开始时间', filter: parseTime },
|
|
||||||
{
|
{
|
||||||
prop: 'maintenanceFinishTime',
|
prop: 'maintenanceFinishTime',
|
||||||
label: '结束时间',
|
label: '维修结束时间',
|
||||||
filter: parseTime,
|
filter: parseTime,
|
||||||
},
|
},
|
||||||
|
// { prop: 'maintenanceStartTime', label: '开始时间', filter: parseTime },
|
||||||
{
|
{
|
||||||
prop: 'maintenanceStatus',
|
prop: 'maintenanceResult',
|
||||||
label: '维修状态',
|
label: '维修结果',
|
||||||
filter: (v) => (v != null ? ['未完成', '完成', '进行中'][v] : ''),
|
filter: (v) => (v != null ? ['成功', '失败'][v] : ''),
|
||||||
},
|
},
|
||||||
{ prop: 'maintenanceDuration', label: '维修时长(h)' },
|
// { prop: 'maintenanceDuration', label: '维修时长(h)' },
|
||||||
{ prop: 'lineName', label: '产线' },
|
{ prop: 'remark', label: '维修描述' }, // 没有参数
|
||||||
{ prop: 'sectionName', label: '工段' },
|
// { prop: 'repairman', label: '维修工', minWidth: 100, showOverflowtooltip: true },
|
||||||
{ prop: 'equipmentName', label: '设备名称', minWidth: 100, showOverflowtooltip: true },
|
// { prop: 'repairmanPhone', label: '联系方式', minWidth: 100, showOverflowtooltip: true },
|
||||||
{ prop: 'maintenanceDetail', label: '维修明细', subcomponent: htmls, minWidth: 100, showOverflowtooltip: true },
|
{ prop: 'remark', label: '备注', minWidth: 120, showOverflowtooltip: true }
|
||||||
{ prop: 'repairman', label: '维修工', minWidth: 100, showOverflowtooltip: true },
|
|
||||||
{ prop: 'repairmanPhone', label: '联系方式', minWidth: 100, showOverflowtooltip: true },
|
|
||||||
{ prop: 'remark', label: '备注', minWidth: 120, showOverflowtooltip: true },
|
|
||||||
],
|
],
|
||||||
searchBarFormConfig: [
|
searchBarFormConfig: [
|
||||||
{
|
{
|
||||||
@ -134,13 +141,12 @@ export default {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: 'select',
|
type: 'select',
|
||||||
label: '状态',
|
label: '维修结果',
|
||||||
placeholder: '请选择状态',
|
placeholder: '请选择状态',
|
||||||
param: 'maintenanceStatus',
|
param: 'maintenanceResult',
|
||||||
selectOptions: [
|
selectOptions: [
|
||||||
{ name: '未完成', id: '0' },
|
{ name: '成功', id: '0' },
|
||||||
{ name: '完成', id: '1' },
|
{ name: '失败', id: '1' }
|
||||||
{ name: '进行中', id: '2' },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
// 时间段
|
// 时间段
|
||||||
@ -253,7 +259,7 @@ export default {
|
|||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
special: false,
|
special: false,
|
||||||
maintenanceStatus: null,
|
maintenanceResult: null,
|
||||||
createTime: null,
|
createTime: null,
|
||||||
equipmentId: null,
|
equipmentId: null,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user