From 7f76d4b5d52d9f6ae65c429fe26faf3a7f730dba Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期四, 27 二月 2025 10:56:02 +0800 Subject: [PATCH] 1、新增车间看板页面、大屏车间入口及大屏车间管理页面 2、新增vue-drag-resize和dataV插件 --- src/views/mdc/base/modules/OEEAnalysis/OEEAnalysisList.vue | 12 +++++++++++- 1 files changed, 11 insertions(+), 1 deletions(-) diff --git a/src/views/mdc/base/modules/OEEAnalysis/OEEAnalysisList.vue b/src/views/mdc/base/modules/OEEAnalysis/OEEAnalysisList.vue index 5f19c98..b09a6a0 100644 --- a/src/views/mdc/base/modules/OEEAnalysis/OEEAnalysisList.vue +++ b/src/views/mdc/base/modules/OEEAnalysis/OEEAnalysisList.vue @@ -28,6 +28,7 @@ <!-- 鎿嶄綔鎸夐挳鍖哄煙 --> <div class="table-operator"> <a-button type="primary" icon="download" @click="handleExportXls('OEE')">瀵煎嚭</a-button> + <a-button type="primary" icon="edit" @click="handleComputeModalOpen">璁$畻</a-button> </div> <!-- table鍖哄煙-begin --> @@ -47,17 +48,20 @@ </template> </a-table> </div> + + <ComputeOeeModal ref="computeOeeModalRef"/> </div> </template> <script> import moment from 'moment' import { JeecgListMixin } from '@/mixins/JeecgListMixin' + import ComputeOeeModal from './ComputeOeeModal' export default { name: 'OEEAnalysisList', mixins: [JeecgListMixin], - components: {}, + components: { ComputeOeeModal }, props: { nodeTree: '', Type: '', nodePeople: '' }, data() { return { @@ -217,11 +221,16 @@ } }, methods: { + handleComputeModalOpen() { + this.$refs.computeOeeModalRef.visible = true + }, + dateParamChange(v1, v2) { this.queryParam.startTime = v2[0] this.queryParam.endTime = v2[1] this.dates = [v1[0], v1[1]] }, + searchReset() { this.dates = [moment().subtract(1, 'day'), moment()] this.queryParam = { @@ -230,6 +239,7 @@ } this.loadData(1) }, + /** * 褰撴祻瑙堝櫒鍙绐楀彛灏哄鍙戠敓鏀瑰彉鏃惰Е鍙� */ -- Gitblit v1.9.3