From 3a73cd63039981d1f7cd324afea8f14f37738467 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期五, 07 三月 2025 11:24:49 +0800 Subject: [PATCH] 1、统计分析和统计图表、对比分析和利用率走势分析、利用率分段分析和报警分析页面新增筛选条件保持跟TEEP页面一致 2、全局中重要程度的筛选方式由多选改为单选 3、设备监控与车间看板页面的设备详情弹窗中的图表调整为一直展示但若无数据则不展示图表的指针与数值 --- src/views/eam/ABC/modules/StreamModal.vue | 91 ++++++++++++++++++++++++--------------------- 1 files changed, 48 insertions(+), 43 deletions(-) diff --git a/src/views/eam/ABC/modules/StreamModal.vue b/src/views/eam/ABC/modules/StreamModal.vue index 4c1d193..2418be9 100644 --- a/src/views/eam/ABC/modules/StreamModal.vue +++ b/src/views/eam/ABC/modules/StreamModal.vue @@ -1,64 +1,69 @@ <template> <j-modal :title="title" - :width="1200" + :width="1500" :visible="visible" :maskClosable="false" switchFullscreen - :fullscreen="true" + :fullscreen="false" @ok="handleOk" :okButtonProps="{ class:{'jee-hidden': disableSubmit} }" - @cancel="handleCancel"> - <stream-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"/> + @cancel="handleCancel" + > + <stream-form + ref="realForm" + @ok="submitCallback" + :disabled="disableSubmit" + /> </j-modal> </template> <script> - import StreamForm from './StreamForm' +import StreamForm from './StreamForm' - export default { - name: 'StreamModal', - components: { - StreamForm +export default { + name: 'StreamModal', + components: { + StreamForm + }, + data() { + return { + title: '', + width: 800, + visible: false, + disableSubmit: false + } + }, + methods: { + add() { + this.visible = true + this.$nextTick(() => { + this.$refs.realForm.add(); + }) }, - data() { - return { - title:'', - width:800, - visible: false, - disableSubmit: false - } + edit(record) { + this.visible = true + this.$nextTick(() => { + this.$refs.realForm.edit(record); + }) }, - methods:{ - add () { - this.visible=true - this.$nextTick(()=>{ - this.$refs.realForm.add(); - }) - }, - edit (record) { - this.visible=true - this.$nextTick(()=>{ - this.$refs.realForm.edit(record); - }) - }, - close () { - this.$emit('close'); - this.visible = false; - }, - handleOk () { - this.$refs.realForm.handleOk(); - }, - submitCallback(){ - this.$emit('ok'); - this.visible = false; - }, - handleCancel () { - this.close() - } + close() { + this.$emit('close'); + this.visible = false; + }, + handleOk() { + this.$refs.realForm.handleOk(); + }, + submitCallback() { + this.$emit('ok'); + this.visible = false; + }, + handleCancel() { + this.close() } } +} </script> <style scoped> -- Gitblit v1.9.3