From f7cc97f27910c7d570f07df5d0dbd29d3f06049c Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期六, 12 十月 2024 15:14:27 +0800 Subject: [PATCH] 1、调整导航栏为侧边模式时的项目标题 2、调整页面顶部栏颜色 3、解决设备报警页面由于缩放引起的组件遮挡文字问题 4、总控车间看板右侧图表调整为自动轮播 5、分控车间看板每日生产计划仅展示3项,完整表格在右上角查看更多中查看 --- src/views/mdc/base/EfficiencyShiftReport.vue | 26 -------------------------- 1 files changed, 0 insertions(+), 26 deletions(-) diff --git a/src/views/mdc/base/EfficiencyShiftReport.vue b/src/views/mdc/base/EfficiencyShiftReport.vue index c332e51..a495d8f 100644 --- a/src/views/mdc/base/EfficiencyShiftReport.vue +++ b/src/views/mdc/base/EfficiencyShiftReport.vue @@ -7,12 +7,8 @@ <a-tab-pane key="1" tab="杞﹂棿灞傜骇" force-render> <base-tree @getCurrSelected="changeSelectionNode"></base-tree> </a-tab-pane> - <a-tab-pane v-if="isDepartType == 0" key="2" tab="閮ㄩ棬灞傜骇"> - <depart-tree @getCurrSelectedDD="changeSelectionNodedd"></depart-tree> - </a-tab-pane> </a-tabs> </a-col> - <a-col :md="19"> <efficiencyShift-list ref="deviceList" :nodeTree='selectEquipment' :nodePeople='selectPeople' :Type="selectTypeTree"/> </a-col> @@ -27,13 +23,10 @@ import { JeecgListMixin } from '@/mixins/JeecgListMixin' import BaseTree from '../common/BaseTree' import EfficiencyShiftList from './modules/efficiencyShiftReport/EfficiencyShiftList' - import DepartTree from './modules/DepartList/DepartListTree/DepartTree' - import {mapActions} from 'vuex' export default { name: 'EfficiencyShiftReport', components: { BaseTree, - DepartTree, EfficiencyShiftList }, data() { @@ -47,28 +40,9 @@ url: { equipmentStatistics: '/mdc/equipment/equipmentStatistics' }, - isDepartType:'', } }, - created() { - this.queryTreeData() - }, methods: { - ...mapActions(['QueryDepartTree']), - queryTreeData() { - this.QueryDepartTree().then(res => { - if (res.success) { - this.isDepartType = res.result[0].value - } else { - // this.$message.warn(res.message) - this.$notification.warning({ - message:'娑堟伅', - description:res.message - }); - } - }).finally(() =>{ - }) - }, tabChange(val) { // console.log(val); this.activeKey = val -- Gitblit v1.9.3