This commit is contained in:
helloDy 2024-03-14 20:19:42 +08:00
parent 149ec4c844
commit 67948c10cb
20 changed files with 299 additions and 112 deletions

View File

@ -1,7 +1,7 @@
/* /*
* @Author: Do not edit * @Author: Do not edit
* @Date: 2024-02-21 13:43:02 * @Date: 2024-02-21 13:43:02
* @LastEditTime: 2024-02-21 15:00:17 * @LastEditTime: 2024-03-14 19:12:31
* @LastEditors: DY * @LastEditors: DY
* @Description: * @Description:
*/ */
@ -33,3 +33,21 @@ export function listByParentId(query) {
params: query params: query
}) })
} }
// 获得产线工段设备树形结构
export function getTree(query) {
return request({
url: '/base/core-factory/getTree',
method: 'get',
params: query
})
}
// 获得设备分组列表
export function getgroupAllList(query) {
return request({
url: '/base/equipment-group/listAll',
method: 'get',
params: query
})
}

View File

@ -32,7 +32,7 @@ import { parseTime } from '../../core/mixins/code-filter';
import { import {
getcoreAlarmLogPage getcoreAlarmLogPage
} from '@/api/base/coreAlarmLog'; } from '@/api/base/coreAlarmLog';
import {DICT_TYPE, getDictDatas} from "@/utils/dict"; import {DICT_TYPE, getDictDatas, publicFormatter } from "@/utils/dict";
const tableProps = [ const tableProps = [
{ {
@ -50,7 +50,8 @@ const tableProps = [
}, },
{ {
prop: 'alarmGrade', prop: 'alarmGrade',
label: '报警级别' label: '报警级别',
filter: publicFormatter(DICT_TYPE.EQU_ALARM_LEVEL)
}, },
{ {
prop: 'alarmReason', prop: 'alarmReason',

View File

@ -7,10 +7,11 @@
<template> <template>
<el-drawer <el-drawer
:visible="visible" :visible.sync="visible"
:show-close="false" :show-close="false"
:wrapper-closable="false" :wrapper-closable="true"
class="drawer" class="drawer"
:before-close="beforeClose"
custom-class="mes-drawer" custom-class="mes-drawer"
size="60%" size="60%"
@closed="$emit('destroy')"> @closed="$emit('destroy')">
@ -81,12 +82,12 @@
</section> </section>
</div> </div>
<div class="drawer-body__footer"> <div v-if="mode == 'edit'" class="drawer-body__footer">
<el-button style="" @click="handleCancel">取消</el-button> <el-button style="" @click="handleCancel">取消</el-button>
<el-button v-if="mode == 'detail'" type="primary" @click="toggleEdit"> <!-- <el-button v-if="mode == 'detail'" type="primary" @click="toggleEdit">
编辑 编辑
</el-button> </el-button> -->
<el-button v-else type="primary" @click="handleConfirm">保存</el-button> <el-button type="primary" @click="handleConfirm">保存</el-button>
<!-- sections的第二项必须是 属性列表 --> <!-- sections的第二项必须是 属性列表 -->
<!-- <el-button <!-- <el-button
v-if="sections[1].allowAdd" v-if="sections[1].allowAdd"
@ -298,6 +299,17 @@ export default {
} }
}, },
methods: { methods: {
beforeClose(done) {
if (this.mode.includes('edit')) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {});
} else {
done()
}
},
handleTableBtnClick({ type, data }) { handleTableBtnClick({ type, data }) {
switch (type) { switch (type) {
case 'edit': case 'edit':

View File

@ -486,6 +486,7 @@ export default {
pageSize: 10, pageSize: 10,
code: '', code: '',
name: '', name: '',
special: false
}, },
// //
form: { form: {

View File

@ -298,9 +298,9 @@ export default {
// //
sort: undefined, sort: undefined,
// 线 // 线
lineDataType: undefined, lineDataType: 0,
// //
sectionDataType: undefined, sectionDataType: 0,
}; };
this.resetForm('form'); this.resetForm('form');
}, },

View File

@ -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-14 13:52:42 * @LastEditTime: 2024-03-14 10:02:53
* @Description: * @Description:
--> -->
<template> <template>
@ -169,7 +169,7 @@ export default {
// //
if (this.dataForm.id) { if (this.dataForm.id) {
this.urlOptions.updateURL(this.dataForm).then(response => { this.urlOptions.updateURL(this.dataForm).then(response => {
if (this.test.length > 1 || this.test[0].name) { if (this.test.length > 1 || this.test[0]?.name) {
this.test.forEach(check => { this.test.forEach(check => {
check.hotMaterialId = this.dataForm.id check.hotMaterialId = this.dataForm.id
if (check.id) { if (check.id) {
@ -191,7 +191,7 @@ export default {
} }
// //
this.urlOptions.createURL(this.dataForm).then(response => { this.urlOptions.createURL(this.dataForm).then(response => {
if (this.test.length > 1 || this.test[0].name) { if (this.test.length > 1 || this.test[0]?.name) {
this.test.forEach(check => { this.test.forEach(check => {
check.hotMaterialId = response.data check.hotMaterialId = response.data
createHotMaterialCheck(check).then(res => { createHotMaterialCheck(check).then(res => {

View File

@ -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-29 15:01:25 * @LastEditTime: 2024-03-13 13:54:01
* @Description: * @Description:
--> -->
<template> <template>
@ -254,7 +254,7 @@ export default {
dataRule: { dataRule: {
code: [{ required: true, message: "产品编码不能为空", trigger: "blur" }], code: [{ required: true, message: "产品编码不能为空", trigger: "blur" }],
name: [{ required: true, message: "产品名称不能为空", trigger: "blur" }], name: [{ required: true, message: "产品名称不能为空", trigger: "blur" }],
specifications: [{ required: true, message: "规格不能为空", trigger: "blur" }], specifications: [{ required: false, message: "规格不能为空", trigger: "blur" }],
materialType: [{ required: true, message: "物料类型不能为空", trigger: "change" }], materialType: [{ required: true, message: "物料类型不能为空", trigger: "change" }],
productType: [{ required: true, message: "产品类型不能为空", trigger: "change" }] productType: [{ required: true, message: "产品类型不能为空", trigger: "change" }]
} }

View File

@ -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-03-01 19:52:55 * @LastEditTime: 2024-03-13 13:54:48
* @Description: * @Description:
--> -->
<template> <template>
@ -33,6 +33,7 @@
<el-select <el-select
v-model="dataForm.roomNameDict" v-model="dataForm.roomNameDict"
filterable filterable
clearable
style="width: 100%" style="width: 100%"
placeholder="请选择车间名称"> placeholder="请选择车间名称">
<el-option <el-option

View File

@ -84,7 +84,7 @@
<el-radio :label="1">产品基础BOM</el-radio> <el-radio :label="1">产品基础BOM</el-radio>
<el-radio :label="2">工艺扩展BOM</el-radio> <el-radio :label="2">工艺扩展BOM</el-radio>
</el-radio-group> --> </el-radio-group> -->
<el-select v-model="dataForm.materialMethod" placeholder="请选择物料计算方式" style="width: 100%;" @change="materialMethodChange"> <el-select v-model="dataForm.materialMethod" placeholder="请选择物料计算方式" style="width: 100%;" clearable @change="materialMethodChange">
<el-option key="1" label="产品基础BOM" :value="1" /> <el-option key="1" label="产品基础BOM" :value="1" />
<el-option key="2" label="工艺扩展BOM" :value="2" /> <el-option key="2" label="工艺扩展BOM" :value="2" />
</el-select> </el-select>
@ -92,7 +92,7 @@
</el-col> </el-col>
<el-col :span='8'> <el-col :span='8'>
<el-form-item label="优先级" prop="priority"> <el-form-item label="优先级" prop="priority">
<el-select v-model="dataForm.priority" placeholder="请选择优先级" style="width: 100%;"> <el-select v-model="dataForm.priority" clearable placeholder="请选择优先级" style="width: 100%;">
<el-option <el-option
v-for="item in getDictDatas(DICT_TYPE.ORDER_PRIORITY)" v-for="item in getDictDatas(DICT_TYPE.ORDER_PRIORITY)"
:key="item.value" :key="item.value"
@ -104,7 +104,7 @@
</el-col> </el-col>
<el-col :span='8'> <el-col :span='8'>
<el-form-item label="工单类型" prop="type"> <el-form-item label="工单类型" prop="type">
<el-select v-model="dataForm.type" placeholder="请选择工单类型" style="width: 100%;"> <el-select v-model="dataForm.type" clearable placeholder="请选择工单类型" style="width: 100%;">
<el-option <el-option
v-for="item in workOrderTypeList" v-for="item in workOrderTypeList"
:key="item.id" :key="item.id"
@ -121,6 +121,7 @@
<el-select <el-select
v-model="dataForm.roomNameDict" v-model="dataForm.roomNameDict"
filterable filterable
clearable
style="width: 100%" style="width: 100%"
placeholder="请选择车间名称"> placeholder="请选择车间名称">
<el-option <el-option
@ -133,7 +134,7 @@
</el-col> </el-col>
<el-col :span='8'> <el-col :span='8'>
<el-form-item label="关联产线" prop="productLineIds"> <el-form-item label="关联产线" prop="productLineIds">
<el-select v-model="dataForm.productLineIds" placeholder="请选择关联产线" multiple style="width: 100%;"> <el-select v-model="dataForm.productLineIds" clearable placeholder="请选择关联产线" multiple style="width: 100%;">
<el-option <el-option
v-for="item in productLineList" v-for="item in productLineList"
:key="item.id" :key="item.id"
@ -145,7 +146,7 @@
</el-col> </el-col>
<el-col :span='8'> <el-col :span='8'>
<el-form-item label="负责人" prop="workers"> <el-form-item label="负责人" prop="workers">
<el-input v-model="dataForm.workers" placeholder="请输入负责人"></el-input> <el-input v-model="dataForm.workers" clearable placeholder="请输入负责人"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
@ -204,7 +205,8 @@ export default {
planAssignQuantity: [{ required: true, message: "计划投入数量不能为空", trigger: "blur" }], planAssignQuantity: [{ required: true, message: "计划投入数量不能为空", trigger: "blur" }],
planQuantity: [{ required: true, message: "计划生产数量不能为空", trigger: "blur" }], planQuantity: [{ required: true, message: "计划生产数量不能为空", trigger: "blur" }],
roomNameDict: [{ required: true, message: "车间名称不能为空", trigger: "blur" }], roomNameDict: [{ required: true, message: "车间名称不能为空", trigger: "blur" }],
productLineIds: [{ required: true, message: "关联产线不能为空", trigger: "change" }] productLineIds: [{ required: true, message: "关联产线不能为空", trigger: "change" }],
materialMethod: [{ required: true, message: "物料计算方式不能为空", trigger: "change" }]
}, },
productList: [], productList: [],
processFlowList: [], processFlowList: [],

View File

@ -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-29 10:01:52 * @LastEditTime: 2024-03-13 14:47:44
* @Description: * @Description:
--> -->
<template> <template>
@ -18,15 +18,28 @@
<div class="content"> <div class="content">
<div class="formContent"> <div class="formContent">
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="12">工单名称:{{ dataForm.name }}</el-col> <el-col :span="8">
<el-col :span="12">工单编码:{{ dataForm.code }}</el-col> <div class="blodTip">工单名称</div>
<div class="lightTip">{{ dataForm.name }}</div>
</el-col>
<el-col :span="8">
<div class="blodTip">工单编码</div>
<div class="lightTip">{{ dataForm.code }}</div>
</el-col>
<el-col :span="8">
<div class="blodTip">产品名称</div>
<div class="lightTip">{{ dataForm.productName }}</div>
</el-col>
</el-row> </el-row>
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="12">产品名称:{{ dataForm.productName }}</el-col> <el-col :span="8">
<el-col :span="12">产品规格:{{ dataForm.specifications }}</el-col> <div class="blodTip">产品规格</div>
</el-row> <div class="lightTip">{{ dataForm.specifications }}</div>
<el-row :gutter="20"> </el-col>
<el-col :span="12">实际生产数量:{{ dataForm.expectedTime }}</el-col> <el-col :span="8">
<div class="blodTip">实际生产数量</div>
<div class="lightTip">{{ dataForm.expectedTime }}</div>
</el-col>
</el-row> </el-row>
</div> </div>
@ -296,4 +309,18 @@ export default {
margin-bottom: 10px; margin-bottom: 10px;
width: 100%; width: 100%;
} }
.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>

View File

@ -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-29 15:35:02 * @LastEditTime: 2024-03-13 14:42:32
* @Description: * @Description:
--> -->
<template> <template>
@ -274,6 +274,10 @@ const tableProps1 = [
prop: 'remaining', prop: 'remaining',
label: '剩余生产预计消耗' label: '剩余生产预计消耗'
}, },
{
prop: 'num',
label: '库存数量'
}
]; ];
export default { export default {

View File

@ -28,7 +28,7 @@
<el-form-item <el-form-item
label="报警级别" label="报警级别"
prop="grade" prop="grade"
:rules="[{ required: true, message: '报警级别不能为空', trigger: 'blur' }]"> :rules="[{ required: false, message: '报警级别不能为空', trigger: 'blur' }]">
<el-select <el-select
:disabled="disabled" :disabled="disabled"
v-model="dataForm.grade" v-model="dataForm.grade"

View File

@ -7,10 +7,11 @@
<template> <template>
<el-drawer <el-drawer
:visible="visible" :visible.sync="visible"
:show-close="false" :show-close="false"
:wrapper-closable="false" :wrapper-closable="true"
class="drawer" class="drawer"
:before-close="beforeClose"
custom-class="mes-drawer" custom-class="mes-drawer"
:size="size || '50%'" :size="size || '50%'"
@closed="$emit('destroy')"> @closed="$emit('destroy')">
@ -43,7 +44,51 @@
:rows="formRows" /> --> :rows="formRows" /> -->
<!-- <el-row v-if="mode.includes('detail')" style="margin-bottom: 24px"> --> <!-- <el-row v-if="mode.includes('detail')" style="margin-bottom: 24px"> -->
<el-row style="margin-bottom: 24px"> <el-form
ref="form"
:model="dataForm"
label-width="100px"
v-loading="formLoading">
<el-row :gutter="20">
<el-col :span="12">
<el-form-item
label="设备"
prop="equipmentId"
:rules="[{ required: true, message: '设备不能为空', trigger: 'change' }]">
<el-select
:disabled="isdetail"
v-model="dataForm.equipmentId"
placeholder="请选择设备"
@change="$emit('update', dataForm)">
<el-option
v-for="opt in equipmentList"
:key="opt.id"
:label="opt.name"
:value="opt.id" />
</el-select>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item
label="报警分组"
prop="groupId"
:rules="[{ required: true, message: '报警分组不能为空', trigger: 'change' }]">
<el-select
:disabled="isdetail"
v-model="dataForm.groupId"
placeholder="请选择报警分组"
@change="$emit('update', dataForm)">
<el-option
v-for="opt in grouList"
:key="opt.id"
:label="opt.name"
:value="opt.id" />
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<!-- <el-row style="margin-bottom: 24px">
<el-col :span="8"> <el-col :span="8">
<div <div
class="title" class="title"
@ -62,7 +107,7 @@
{{ form.code }} {{ form.code }}
</div> </div>
</el-col> </el-col>
</el-row> </el-row> -->
<!-- <el-row v-else style="margin-bottom: 24px" :gutter="20"> <!-- <el-row v-else style="margin-bottom: 24px" :gutter="20">
<el-form ref="form" :model="form"> <el-form ref="form" :model="form">
<el-col :span="8"> <el-col :span="8">
@ -128,12 +173,11 @@
</section> </section>
</div> </div>
<div class="drawer-body__footer"> <div v-if="!mode.includes('detail')" class="drawer-body__footer">
<el-button style="" @click="handleCancel">取消</el-button> <el-button style="" @click="handleCancel">取消</el-button>
<el-button <el-button
type="primary" type="primary"
v-if="!mode.includes('detail')" @click="handleSave">
@click="handleCancel">
确定 确定
</el-button> </el-button>
</div> </div>
@ -163,6 +207,8 @@
<script> <script>
import BaseInfoForm from '@/components/DialogForm'; import BaseInfoForm from '@/components/DialogForm';
import DialogForm from './dialogForm'; import DialogForm from './dialogForm';
import { getEquipmentList, getgroupAllList } from '@/api/equipment/base/config/config'
import { updateEquipmentBindGroup } from '@/api/base/equipmentBindGroup';
const SmallTitle = { const SmallTitle = {
name: 'SmallTitle', name: 'SmallTitle',
@ -191,16 +237,21 @@ const SmallTitle = {
export default { export default {
components: { SmallTitle, DialogForm, BaseInfoForm }, components: { SmallTitle, DialogForm, BaseInfoForm },
props: ['sections', 'defaultMode', 'dataId', 'size'], // dataId id props: ['sections', 'defaultMode', 'dataId', 'size', 'equipmentId', 'id'], // dataId id
data() { data() {
return { return {
mode: '', mode: '',
visible: false, visible: false,
showForm: false, showForm: false,
isdetail: false,
formLoading: false,
grouList: [],
equipmentList: [],
total: 0, total: 0,
form: {}, form: {},
list: [], list: [],
attrTitle: '', attrTitle: '',
dataForm: {},
attrForm: { attrForm: {
id: null, id: null,
equipmentGroupId: '', equipmentGroupId: '',
@ -325,6 +376,34 @@ export default {
} }
}, },
methods: { methods: {
// handleSave() {
// updateEquipmentBindGroup(this.form).then((response) => {
// this.$modal.msgSuccess('');
// this.open = false;
// this.getList();
// });
// },
async getDict() {
const res = await getEquipmentList({
pageNo: 1,
pageSize: 100,
special: false
})
this.equipmentList = res.data.list
const groupRes = await getgroupAllList()
this.grouList = groupRes.data
},
beforeClose(done) {
if (this.mode.includes('edit')) {
this.$confirm('确认关闭?')
.then(_ => {
done();
})
.catch(_ => {});
} else {
done()
}
},
handleTableBtnClick({ type, data }) { handleTableBtnClick({ type, data }) {
switch (type) { switch (type) {
case 'edit': case 'edit':
@ -342,6 +421,16 @@ export default {
init() { init() {
this.visible = true; this.visible = true;
//
// this.dataForm = {
// equipmentId: this.equipmentId,
// groupId: this.dataId
// }
this.getDict()
this.$set(this.dataForm, 'equipmentId', this.equipmentId)
this.$set(this.dataForm, 'groupId', this.dataId)
this.$set(this.dataForm, 'id', this.id)
this.isdetail = this.mode === 'detail' ? true : false
}, },
async getAttrList() { async getAttrList() {
@ -360,9 +449,9 @@ export default {
if (valid) { if (valid) {
const isEdit = !this.mode.includes('detail'); const isEdit = !this.mode.includes('detail');
await this.$axios({ await this.$axios({
url: this.sections[0][isEdit ? 'urlUpdate' : 'urlCreate'], url: '/base/equipment-bind-group/update',
method: isEdit ? 'put' : 'post', method: isEdit ? 'put' : 'post',
data: this.form, data: this.dataForm,
}); });
this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`); this.$modal.msgSuccess(`${isEdit ? '更新' : '创建'}成功`);
this.visible = false; this.visible = false;

View File

@ -48,6 +48,8 @@
size="45%" size="45%"
:default-mode="editMode" :default-mode="editMode"
:data-id="alarmForm.id" :data-id="alarmForm.id"
:equipment-id="equipmentId"
:id="id"
:sections="[ :sections="[
{ {
name: '基本信息', name: '基本信息',
@ -220,7 +222,7 @@ export default {
{ {
select: true, select: true,
label: '设备', label: '设备',
url: '/base/core-equipment/page?pageNo=1&pageSize=100', url: '/base/core-equipment/page?pageNo=1&pageSize=100&special=false',
prop: 'equipmentId', prop: 'equipmentId',
bind: { bind: {
filterable: true, filterable: true,
@ -266,6 +268,8 @@ export default {
equipmentGroupCode: undefined, equipmentGroupCode: undefined,
equipmentGroupName: undefined, equipmentGroupName: undefined,
}, },
equipmentId: undefined,
id: undefined,
editVisible: false, editVisible: false,
editMode: '', editMode: '',
drawerBaseInfoRows: [ drawerBaseInfoRows: [
@ -440,6 +444,8 @@ export default {
this.alarmForm.id = groupId; this.alarmForm.id = groupId;
this.alarmForm.equipmentGroupCode = groupCode; this.alarmForm.equipmentGroupCode = groupCode;
this.alarmForm.equipmentGroupName = groupName; this.alarmForm.equipmentGroupName = groupName;
this.equipmentId = equipmentId;
this.id = id;
this.editVisible = true; this.editVisible = true;
this.$nextTick(() => { this.$nextTick(() => {
this.$refs['drawer'].init(); this.$refs['drawer'].init();

View File

@ -379,7 +379,7 @@ export default {
}); });
this.searchBarFormConfig[1].selectOptions = plcList.map((item) => { this.searchBarFormConfig[1].selectOptions = plcList.map((item) => {
return { return {
name: item.name, name: item.code,
id: item.id, id: item.id,
}; };
}); });
@ -463,7 +463,8 @@ export default {
handleAdd() { handleAdd() {
this.reset(); this.reset();
this.open = true; this.open = true;
this.title = '添加设备与实时采集关系表(一对多)'; this.title = '添加设备采集配置';
this.$refs.addOrUpdate.init()
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
handleUpdate(row) { handleUpdate(row) {
@ -472,7 +473,7 @@ export default {
getEquipmentPlcConnect(id).then((response) => { getEquipmentPlcConnect(id).then((response) => {
this.form = response.data; this.form = response.data;
this.open = true; this.open = true;
this.title = '修改设备与实时采集关系表(一对多)'; this.title = '修改设备采集配置';
}); });
}, },
/** 提交按钮 */ /** 提交按钮 */

View File

@ -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-22 10:08:13 * @LastEditTime: 2024-03-13 16:47:02
* @Description: * @Description:
--> -->
<template> <template>
@ -39,9 +39,9 @@
<script> <script>
import basicAdd from '../../../../core/mixins/basic-add'; import basicAdd from '../../../../core/mixins/basic-add';
import { createCorePL, updateCorePL, getCorePL, getCode, getCorePLList } from "@/api/base/coreProductionLine"; import { createCorePL, updateCorePL, getCorePL, getCode } from "@/api/base/coreProductionLine";
import { createEquipmentPlcConnect, updateEquipmentPlcConnect } from '@/api/base/equipmentPlcConnect'; import { createEquipmentPlcConnect, updateEquipmentPlcConnect } from '@/api/base/equipmentPlcConnect';
import { getplcAllList, listByParentId } from "@/api/equipment/base/config/config"; import { getplcAllList, getTree } from "@/api/equipment/base/config/config";
export default { export default {
mixins: [basicAdd], mixins: [basicAdd],
@ -95,22 +95,29 @@ export default {
this.getDict() this.getDict()
}, },
methods: { methods: {
init() {
this.$nextTick(() => {
this.$refs['dataForm'].resetFields()
})
},
async getDict() { async getDict() {
// //
const res = await getplcAllList(); const res = await getplcAllList();
this.plcList = res.data; this.plcList = res.data;
// 线 //
const res1 = await getCorePLList(); const res1 = await getTree();
this.plLineList = res1.data; this.plLineList = res1.data;
this.plLineList.forEach(item => { // const res1 = await getCorePLList();
listByParentId({ id: item.id }).then(resp => { // this.plLineList = res1.data;
if (resp.data.length > 0) { // this.plLineList.forEach(item => {
// item.children = resp.data // listByParentId({ id: item.id }).then(resp => {
this.$set(item, 'children', resp.data) // if (resp.data.length > 0) {
// this.$forceUpdate() // // item.children = resp.data
} // this.$set(item, 'children', resp.data)
}) // // this.$forceUpdate()
}) // }
// })
// })
}, },
// //
dataFormSubmit() { dataFormSubmit() {

View File

@ -98,12 +98,12 @@ export default {
addContent: false, addContent: false,
searchBarKeys: ['name', 'actualCheckTime'], searchBarKeys: ['name', 'actualCheckTime'],
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',
@ -122,7 +122,7 @@ export default {
{ prop: 'department', label: '部门' }, { prop: 'department', label: '部门' },
{ prop: 'actualCheckTime', label: '巡检时间', filter: parseTime }, { prop: 'actualCheckTime', label: '巡检时间', filter: parseTime },
{ prop: 'groupClass', label: '班次' }, { prop: 'groupClass', label: '班次' },
{ prop: 'opt', label: '巡检内容', name: '详情', subcomponent: btn }, // { prop: 'opt', label: '', name: '', subcomponent: btn },
{ prop: 'remark', label: '备注' } { prop: 'remark', label: '备注' }
// { prop: 'origin', label: '', filter: (val) => ['', '', 'PDA'][val] }, // { prop: 'origin', label: '', filter: (val) => ['', '', 'PDA'][val] },
// { prop: 'sectionName', label: '' }, // { prop: 'sectionName', label: '' },
@ -416,10 +416,14 @@ export default {
.catch(() => {}); .catch(() => {});
}, },
handleDetail({ id }) { handleDetail({ id }) {
this.addOrUpdateVisible = true this.addContent = true;
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.addOrUpdate.init(id, true); this.$refs.addContent.init(id, true);
}); });
// this.addOrUpdateVisible = true
// this.$nextTick(() => {
// this.$refs.addOrUpdate.init(id, true);
// });
}, },
/** 导出按钮操作 */ /** 导出按钮操作 */
handleExport() { handleExport() {

View File

@ -73,7 +73,7 @@ const remainBox = {
color() { color() {
if (this.value) { if (this.value) {
const v = +this.value; const v = +this.value;
return v < 0 ? 'red' : v >= 0 && v < 2 ? 'yellow' : 'green'; return v <= 1 ? 'red' : v > 1 && v <= 2 ? 'yellow' : 'green';
} }
return 'unset'; return 'unset';
}, },
@ -84,9 +84,10 @@ const remainBox = {
style={`background: ${ style={`background: ${
this.color this.color
}; position:absolute; inset: 0; padding: 0 10px; display: flex; align-items: center; color: ${ }; position:absolute; inset: 0; padding: 0 10px; display: flex; align-items: center; color: ${
this.color == 'red' ? '#fff' : 'unset' // this.color == 'red' ? '#fff' : 'unset'
'#fff'
}`}> }`}>
{this.injectData[this.injectData.prop] || ''} {this.injectData[this.injectData.prop]?.toFixed(0) || ''}
</div> </div>
); );
}, },
@ -128,22 +129,26 @@ export default {
// width: 180, // width: 180,
// filter: parseTime(createTime), // filter: parseTime(createTime),
// }, // },
{ prop: 'code', label: '保养计划单号' }, { prop: 'code', label: '保养计划单号', minWidth: 118, showOverflowtooltip: true },
{ prop: 'name', label: '保养计划名称' }, { prop: 'name', label: '保养计划名称', minWidth: 118, showOverflowtooltip: true },
{ prop: 'departmentName', label: '部门' }, { prop: 'departmentName', label: '部门', minWidth: 100, showOverflowtooltip: true },
{ prop: 'lineName', label: '产线名' }, { prop: 'lineName', label: '产线名', minWidth: 100, showOverflowtooltip: true },
{ {
prop: 'lastPlanMaintainTime', prop: 'lastPlanMaintainTime',
label: '上次计划保养时间', label: '上次计划保养时间',
filter: parseTime, filter: parseTime,
minWidth: 160,
showOverflowtooltip: true
}, },
{ {
prop: 'lastMaintainTime', prop: 'lastMaintainTime',
label: '上次实际保养时间', label: '上次实际保养时间',
filter: parseTime, filter: parseTime,
minWidth: 160,
showOverflowtooltip: true
}, },
{ prop: 'nextPlanMaintainTime', label: '下次计划保养时间', filter: parseTime }, { prop: 'nextPlanMaintainTime', label: '下次计划保养时间', filter: parseTime, minWidth: 160, showOverflowtooltip: true },
{ prop: 'maintainer', label: '计划保养人员' }, { prop: 'maintainer', label: '计划保养人员', minWidth: 160, showOverflowtooltip: true },
// { prop: 'equipmentName', label: '' }, // { prop: 'equipmentName', label: '' },
// { prop: 'equipmentCode', label: '' }, // { prop: 'equipmentCode', label: '' },
// { prop: 'maintenancePeriod', label: '' }, // { prop: 'maintenancePeriod', label: '' },
@ -153,11 +158,12 @@ export default {
// filter: publicFormatter(this.DICT_TYPE.MAINTAIN_TYPE), // filter: publicFormatter(this.DICT_TYPE.MAINTAIN_TYPE),
// }, // },
// { prop: 'opt1', label: '', name: '', subcomponent: btn }, // { prop: 'opt1', label: '', name: '', subcomponent: btn },
{ prop: 'opt2', label: '保养内容', name: '详情', subcomponent: btn }, { prop: 'opt2', label: '保养内容', name: '详情', subcomponent: btn, width: 100 },
{ {
prop: 'remainDays', prop: 'remainDays',
label: '距离下次保养剩余时间(天)', label: '距离下次保养剩余时间(天)',
subcomponent: remainBox, subcomponent: remainBox,
minWidth: 210,
} }
], ],
searchBarFormConfig: [ searchBarFormConfig: [
@ -232,23 +238,24 @@ export default {
.catch(() => { }); .catch(() => { });
}, },
initSearchBar() { initSearchBar() {
this.http('/base/core-equipment/page', 'get', { // this.http('/base/core-equipment/page', 'get', {
special: false, // special: false,
pageNo: 1, // pageNo: 1,
pageSize: 99 // pageSize: 99
}).then(({ data }) => { // }).then(({ data }) => {
this.$set( // this.$set(
this.searchBarFormConfig[1], // this.searchBarFormConfig[1],
'selectOptions', // 'selectOptions',
(data?.list || []).map((item) => ({ // (data?.list || []).map((item) => ({
name: item.name, // name: item.name,
id: item.id, // id: item.id,
})) // }))
); // );
}); // });
this.http('/base/equipment-maintain-plan/page', 'get', { this.http('/base/equipment-maintain-plan/page', 'get', {
pageNo: 1, pageNo: 1,
pageSize: 100, pageSize: 100,
special: false
}).then(({ data }) => { }).then(({ data }) => {
this.$set( this.$set(
this.searchBarFormConfig[0], this.searchBarFormConfig[0],

View File

@ -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-28 19:52:13 * @LastEditTime: 2024-03-13 15:55:36
* @Description: * @Description:
--> -->
<template> <template>
@ -67,7 +67,7 @@
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="确认时限(h)" prop="confirmTimeLimit"> <el-form-item label="确认时限(h)" prop="confirmTimeLimit">
<el-input-number v-model="dataForm.confirmTimeLimit" :min="0" controls-position="right" style="width: 100%" :disabled="isdetail" clearable placeholder="请输入单位平方数" /> <el-input-number v-model="dataForm.confirmTimeLimit" :min="0" controls-position="right" style="width: 100%" :disabled="isdetail" clearable placeholder="请输入确认时限" />
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>

View File

@ -64,6 +64,7 @@ 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'; import AddContent from './addContent.vue';
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');
@ -174,6 +175,7 @@ export default {
endPlaceholder: '结束日期', endPlaceholder: '结束日期',
defaultTime: ['00:00:00', '23:59:59'], defaultTime: ['00:00:00', '23:59:59'],
param: 'startTime', param: 'startTime',
defaultSelect: []
// width: 350, // width: 350,
}, },
// { // {
@ -349,23 +351,28 @@ export default {
}; };
}, },
created() { created() {
let end = moment().format('YYYY-MM-DD 08:00:00')
const current = new Date()
let start = parseTime(new Date(current.getFullYear(), current.getMonth(), current.getDate() - 3, 8, 0, 0))
this.searchBarFormConfig[1].defaultSelect = [start, end]
this.queryParams.startTime = [start, end]
this.initSearchBar(); this.initSearchBar();
if (this.$route.query) { // if (this.$route.query) {
// this.queryParams.equipmentId = // // this.queryParams.equipmentId =
// this.$route.query?.equipmentId ?? undefined; // // this.$route.query?.equipmentId ?? undefined;
this.queryParams.maintainPlanId = // this.queryParams.maintainPlanId =
this.$route.query?.maintainPlanId ?? undefined; // this.$route.query?.maintainPlanId ?? undefined;
// this.queryParams.relatePlan = this.$route.query?.relatePlan ?? undefined; // // this.queryParams.relatePlan = this.$route.query?.relatePlan ?? undefined;
this.queryParams.startTime = this.$route.query?.createTime ?? undefined; // this.queryParams.startTime = this.$route.query?.createTime ?? undefined;
// this.searchBarFormConfig[0].defaultSelect = // // this.searchBarFormConfig[0].defaultSelect =
// this.$route.query.equipmentId ?? undefined; // // this.$route.query.equipmentId ?? undefined;
this.searchBarFormConfig[0].defaultSelect = // this.searchBarFormConfig[0].defaultSelect =
this.$route.query.maintainPlanId ?? undefined; // this.$route.query.maintainPlanId ?? undefined;
this.searchBarFormConfig[1].defaultSelect = // this.searchBarFormConfig[1].defaultSelect =
this.$route.query?.createTime ?? undefined; // this.$route.query?.createTime ?? undefined;
// this.searchBarFormConfig[3].defaultSelect = // // this.searchBarFormConfig[3].defaultSelect =
// Number(this.$route.query.relatePlan) ?? undefined; // // Number(this.$route.query.relatePlan) ?? undefined;
} // }
this.getList(); this.getList();
if (this.$route.query.addRecord) { if (this.$route.query.addRecord) {
this.handleAdd() this.handleAdd()