hyingbo
16 小时以前 1598fac6c5769b061dd02e937fbaf969b5e1c20d
首页样式调整
已修改4个文件
334 ■■■■ 文件已修改
src/components/layouts/TabLayout.vue 108 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/page/GlobalFooter.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/page/GlobalLayout.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/dashboard/DncManagerSignage.vue 219 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/layouts/TabLayout.vue
@@ -5,7 +5,7 @@
    <!-- update-end- author:sunjianlei --- date:20191009 --- for: 提升右键菜单的层级 -->
    <a-tabs
      @contextmenu.native="e => onContextmenu(e)"
      v-if="$route.meta.title!=='首页'&&multipage"
      v-if="multipage"
      :active-key="activePage"
      class="tab-layout-tabs"
      style="height:52px"
@@ -14,12 +14,11 @@
      @change="changePage"
      @tabClick="tabCallBack"
      @edit="editPage">
      <a-tab-pane :id="page.path" :key="page.path" v-for="page in pageList"
                  :closable="!(page.meta.title=='首页')">
        <span slot="tab" :pagekey="page.path">{{ page.meta.title }}</span>
      <a-tab-pane :id="page.fullPath" :key="page.fullPath" v-for="page in pageList" :closable="!(page.meta.title=='首页')">
        <span slot="tab" :pagekey="page.fullPath">{{ page.meta.title }}</span>
      </a-tab-pane>
    </a-tabs>
    <div :style="{padding: $route.meta.title=='首页'?'0':'12px 12px 0'}">
    <div style="margin: 12px 12px 0;">
      <!-- update-begin-author:taoyan date:20201221 for:此处删掉transition标签 不知道为什么加上后 页面路由切换的时候即1及菜单切到2及菜单的时候 两个菜单页面会同时出现300-500秒左右 -->
      <keep-alive v-if="multipage">
        <router-view v-if="reloadFlag"/>
@@ -29,6 +28,9 @@
      </template>
      <!-- update-end-author:taoyan date:20201221 for:此处删掉transition标签 不知道为什么加上后 页面路由切换的时候即1及菜单切到2及菜单的时候 两个菜单页面会同时出现300-500秒左右 -->
    </div>
    <!-- update-begin-author:zyf date:20211129 for:qiankun 挂载子应用盒子 -->
    <div id="content" class="app-view-box"></div>
    <!-- update-end-author:zyf date:20211129 for: qiankun 挂载子应用盒子-->
  </global-layout>
</template>
@@ -39,6 +41,7 @@
import { triggerWindowResizeEvent } from '@/utils/util'
import Vue from 'vue'
import { CACHE_INCLUDED_ROUTES } from '@/store/mutation-types'
import registerApps from "@/qiankun";
const indexKey = '/dashboard/analysis'
@@ -67,7 +70,9 @@
  /* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用 ->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
  provide() {
    return {
      closeCurrent: this.closeCurrent
      closeCurrent:this.closeCurrent,
      changeTitle: this.changeTitle,
      changeTabTitle: this.changeTabTitle,
    }
  },
  /* update_end author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
@@ -91,9 +96,16 @@
    this.pageList.push(currentRoute)
    this.linkList.push(currentRoute.fullPath)
    this.activePage = currentRoute.fullPath
    this.$bus.$on('clickMenuTitleSelected', this.clickMenuTitleSelected)
  },
  mounted() {
    if (process.env.VUE_APP_QIANKUN == 'true') {
      //update-begin-author:zyf date:20211129 for:qiankun 注册子应用
      if (!window.qiankunStarted) {
        window.qiankunStarted = true;
        registerApps();
      }
      //update-end-author:zyf date:20211129 for:qiankun 注册子应用
    }
  },
  watch: {
    '$route': function(newRoute) {
@@ -127,7 +139,7 @@
      let index = this.linkList.lastIndexOf(key)
      let waitRouter = this.pageList[index]
      // 【TESTA-523】修复:不允许重复跳转路由异常
      if (waitRouter.path !== this.$route.fullPath) {
      if (waitRouter.fullPath !== this.$route.fullPath) {
        this.$router.push(Object.assign({}, waitRouter))
      }
      this.changeTitle(waitRouter.meta.title)
@@ -145,7 +157,7 @@
      if (this.multipage && this.linkList.indexOf(indexKey) === -1) {
        this.addIndexToFirst()
      }
    }
    },
    // update-end-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
  },
  methods: {
@@ -166,13 +178,30 @@
    // update-end-author:sunjianlei date:20191223 for: 修复从单页模式切换回多页模式后首页不居第一位的 BUG
    // update-begin-author:sunjianlei date:20200120 for: 动态更改页面标题
    /**
     * 修改当前页面的窗口标题
     * @param title 要修改的新标题
     */
    changeTitle(title) {
      let projectTitle = 'MDC智慧车间'
      let projectTitle = "MDC智慧车间"
      // 首页特殊处理
      if (this.$route.path === indexKey) {
        document.title = projectTitle
      } else {
        document.title = title + ' · ' + projectTitle
      }
    },
    /**
     * 修改tab标签的标题
     * @param title 要修改的新标题
     * @param fullPath 要修改的路由全路径,如果不填就是修改当前路由
     */
    changeTabTitle(title, fullPath = '') {
      if (title) {
        let currentRoute = this.pageList.find((r) => r.fullPath === (fullPath ? fullPath : this.$route.fullPath))
        if (currentRoute != null) {
          currentRoute.meta = {...currentRoute.meta, title}
        }
      }
    },
    // update-end-author:sunjianlei date:20200120 for: 动态更改页面标题
@@ -202,8 +231,9 @@
        this.$message.warning('这是最后一页,不能再关闭了啦')
        return
      }
      let removeRoute = this.pageList.filter(item => item.path == key)
      this.pageList = this.pageList.filter(item => item.path !== key)
      console.log("this.pageList ",this.pageList );
      let removeRoute = this.pageList.filter(item => item.fullPath == key)
      this.pageList = this.pageList.filter(item => item.fullPath !== key)
      let index = this.linkList.indexOf(key)
      this.linkList = this.linkList.filter(item => item !== key)
      index = index >= this.linkList.length ? this.linkList.length - 1 : index
@@ -214,6 +244,8 @@
      let cacheRouterArray = Vue.ls.get(CACHE_INCLUDED_ROUTES) || []
      if (removeRoute && removeRoute[0]) {
        let componentName = removeRoute[0].meta.componentName
        console.log("key: ", key);
        console.log("componentName: ", componentName);
        if (cacheRouterArray.includes(componentName)) {
          cacheRouterArray.splice(cacheRouterArray.findIndex(item => item === componentName), 1)
          Vue.ls.set(CACHE_INCLUDED_ROUTES, cacheRouterArray)
@@ -221,7 +253,7 @@
        this.emitPageClosed(removeRoute[0])
      }
      //update-end--Author:scott  Date:20201015 for:路由缓存问题,关闭了tab页时再打开就不刷新 #842
      this.tabCallBack()
    },
    // 触发 page-closed (页面关闭)全局事件
    emitPageClosed(closedRoute) {
@@ -269,7 +301,7 @@
    },
    /* update_begin author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
    closeCurrent() {
      this.remove(this.activePage)
      this.remove(this.activePage);
    },
    /* update_end author:wuxianquan date:20190828 for: 关闭当前tab页,供子页面调用->望菜单能配置外链,直接弹出新页面而不是嵌入iframe #428 */
    closeOthers(pageKey) {
@@ -282,7 +314,7 @@
        let indexContent = this.pageList.slice(0, 1)[0]
        this.linkList = this.linkList.slice(index, index + 1)
        this.pageList = this.pageList.slice(index, index + 1)
        this.linkList.unshift(indexContent.path)
        this.linkList.unshift(indexContent.fullPath)
        this.pageList.unshift(indexContent)
        this.activePage = this.linkList[1]
      }
@@ -296,19 +328,17 @@
      let index = this.linkList.indexOf(pageKey)
      this.linkList = this.linkList.slice(index)
      this.pageList = this.pageList.slice(index)
      this.linkList.unshift(indexContent.path)
      this.linkList.unshift(indexContent.fullPath)
      this.pageList.unshift(indexContent)
      // 若将激活页一并关闭则显示导航栏除首页第一个页面
      if (this.linkList.indexOf(this.activePage) < 0) {
        this.activePage = this.linkList[1]
        this.activePage = this.linkList[0]
      }
    },
    closeRight(pageKey) {
      let index = this.linkList.indexOf(pageKey)
      this.linkList = this.linkList.slice(0, index + 1)
      this.pageList = this.pageList.slice(0, index + 1)
      // 若将激活页一并关闭则显示导航栏最后一个页面
      if (this.linkList.indexOf(this.activePage) < 0) {
      if (this.linkList.indexOf(this.activePage < 0)) {
        this.activePage = this.linkList[this.linkList.length - 1]
      }
    },
@@ -329,7 +359,7 @@
    //update-begin-author:taoyan date:20191008 for:路由刷新
    routeReload() {
      this.reloadFlag = false
      let ToggleMultipage = 'ToggleMultipage'
      let ToggleMultipage = "ToggleMultipage"
      this.$store.dispatch(ToggleMultipage, false)
      this.$nextTick(() => {
        this.$store.dispatch(ToggleMultipage, true)
@@ -341,38 +371,6 @@
    excuteCallback(callback) {
      callback()
    },
    clickMenuTitleSelected(selectedMenus) {
      //console.log("新的路由",newRoute)
      this.activePage = selectedMenus[0].path
      if (!this.multipage) {
        this.linkList = [this.linkList[0], selectedMenus[0].path]
        this.pageList = [this.pageList[0], Object.assign({}, selectedMenus[0])]
        // update-begin-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存
      } else if (indexKey == selectedMenus[0].path) {
        //首页时 判断是否缓存 没有缓存 刷新之
        if (selectedMenus[0].meta.keepAlive === false) {
          this.routeReload()
        }
        // update-end-author:taoyan date:20200211 for: TASK #3368 【路由缓存】首页的缓存设置有问题,需要根据后台的路由配置来实现是否缓存
      } else {
        // selectedMenus.forEach(menuItem => {
        //   if (!this.linkList.includes(menuItem.path)) {
        //     console.log('触发增加')
        //     this.linkList.push(menuItem.path)
        //     this.pageList.push(menuItem)
        //   } else {
        //     console.log('触发没有增加')
        //     let oldIndex = this.linkList.indexOf(menuItem.path)
        //     let oldPositionRoute = this.pageList[oldIndex]
        //     this.pageList.splice(oldIndex, 1, Object.assign({}, menuItem, { meta: oldPositionRoute.meta }))
        //   }
        // })
        // 点击标题后在导航栏覆盖前一个标题所展开的下级菜单
        this.linkList = [this.linkList[0], ...selectedMenus.map(item => item.path)]
        this.pageList = [this.pageList[0], ...selectedMenus]
      }
    }
  }
}
</script>
@@ -425,9 +423,9 @@
    &.ant-tabs-card .ant-tabs-tab {
    padding: 0 20px 0 2px !important;
    padding: 0 24px !important;
    background-color: white !important;
    /*margin-right: 10px !important;*/
    margin-right: 10px !important;
      .ant-tabs-close-x {
        width: 12px !important;
src/components/page/GlobalFooter.vue
@@ -1,7 +1,6 @@
<template>
  <div class="footer">
    <div class="copyright"
         :style="{background:$route.meta.title==='首页'?'#151548':'',color:$route.meta.title==='首页'?'#fff':''}">
    <div class="copyright">
      Copyright
      <a-icon type="copyright"/>
      2024 <span>2015-2025 灵秀智能</span>
@@ -34,6 +33,7 @@
        }
      }
    }
    .copyright {
      color: rgba(0, 0, 0, .45);
      font-size: 14px;
src/components/page/GlobalLayout.vue
@@ -69,8 +69,7 @@
      />
      <!-- layout content -->
      <a-layout-content
        :style="{ height: '100%', paddingTop: fixedHeader ? '59px' : '0' ,background: $route.meta.title=='首页'?'#151548':''}">
      <a-layout-content :style="{ height: '100%', paddingTop: fixedHeader ? '59px' : '0' }">
        <slot></slot>
      </a-layout-content>
src/views/dashboard/DncManagerSignage.vue
@@ -1,25 +1,31 @@
<template>
  <div class="page-container">
    <div class="content-container">
      <div style="width: 50%" class="left-col">
        <dv-border-box-9 style="padding: 30px 20px 0">
          <div id="running_state_chart" style="width:100%;height: 300px"></div>
          <div id="efficiency_chart" style="width: 100%;height: 465px"></div>
        </dv-border-box-9>
  <div class="home-container">
    <div class="left-card">
      <div class="card">
        <h2 class="card-title">卡片1</h2>
        <div class="card-content">
        </div>
      </div>
      </div>
      <div style="width: 50%" class="middle-col">
        <dv-border-box-9 style="padding: 10px 10px 0">
          <!-- 添加"我的待办"标题 -->
          <div class="flow-todo-title">我的待办</div>
    <!-- 右侧两个小卡片 -->
    <div class="right-cards">
      <div class="card top-card">
        <h2 class="card-title">我的待办</h2>
        <div class="card-content">
          <!-- 嵌入FlowTodo组件并设置默认分类 -->
          <flow-todo
            ref="flowTodo"
            class="embedded-flow-todo"
            :defaultCategories="['drApproval','ggApproval','programConfirmApproval']"
          ></flow-todo>
        </dv-border-box-9>
        </div>
      </div>
      <div class="card bottom-card">
        <h2 class="card-title">卡片2</h2>
        <div class="card-content">
        </div>
      </div>
    </div>
  </div>
@@ -43,7 +49,6 @@
    // 确保组件加载后使用默认分类查询数据
    this.$nextTick(() => {
      if (this.$refs.flowTodo) {
        // 触发查询,使用默认的category条件[1,2]
        this.$refs.flowTodo.searchQuery()
      }
    })
@@ -54,115 +59,103 @@
}
</script>
<style lang="less" scoped>
.page-container {
  background-color: #000b29;
<style scoped>
.home-container {
  display: flex;
  min-height: 100vh;
  padding: 15px;
  padding: 20px;
  box-sizing: border-box;
  gap: 20px;
  background-color: #f5f7fa;
}
  .content-container {
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
.left-card {
  flex: 1;
  min-width: 0;
}
    .left-col, .middle-col {
.right-cards {
  flex: 1;
  min-width: 0;
      display: flex;
  flex-direction: column;
  gap: 20px;
}
.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.top-card {
  flex: 1;
}
.bottom-card {
  flex: 1;
}
.card-title {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.card-content {
  flex: 1;
  overflow: auto;
}
/* 清除待办页面查询条件、选中条数、复选框 */
.embedded-flow-todo >>> .table-page-search-wrapper {
  display: none !important;
}
.embedded-flow-todo >>> .table-operator {
  display: none !important;
}
.embedded-flow-todo >>> .ant-alert.ant-alert-info {
  display: none !important;
}
.embedded-flow-todo >>> .ant-table-thead .ant-table-selection-column,
.embedded-flow-todo >>> .ant-table-tbody .ant-table-selection-column {
  display: none !important;
}
.embedded-flow-todo >>> .ant-table-selection {
  display: none !important;
}
.embedded-flow-todo >>> .ant-table-row-selected {
  background: transparent !important;
}
.embedded-flow-todo >>> .a-table {
  margin-top: 0 !important;
  border-top: none !important;
}
@media (max-width: 992px) {
  .home-container {
      flex-direction: column;
    }
    .middle-col {
      .dv-border-box-9 {
        background-color: #000b29;
        flex-grow: 1;
      }
      .flow-todo-title {
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        text-align: center;
      }
      .embedded-flow-todo {
  .left-card, .right-cards {
        width: 100%;
        height: 340px; /* 控制高度为右侧一半区域 */
        overflow: auto;
        background-color: inherit;
      }
    }
  }
}
// 嵌入组件样式调整
.embedded-flow-todo {
  // 隐藏查询区域、操作按钮和选择提示
  /deep/ .table-page-search-wrapper,
  /deep/ .table-operator,
  /deep/ .ant-alert {
    display: none !important;
  .left-card {
    margin-bottom: 20px;
  }
  // 隐藏多选框列
  /deep/ .ant-table-selection-column {
    display: none !important;
  }
  // 表格边框样式
  /deep/ .ant-table {
    border: 1px solid rgba(9, 9, 9, 0.1) !important;
    border-collapse: collapse !important;
  }
  /deep/ .ant-table-thead > tr > th {
    border: 1px solid rgba(9, 9, 9, 0.1) !important;
  }
  /deep/ .ant-table-tbody > tr > td {
    border: 1px solid rgba(9, 9, 9, 0.1) !important;
  }
  // 表格样式调整
  /deep/ .ant-table,
  /deep/ .ant-table-tbody > tr > td,
  /deep/ .ant-table-thead > tr > th,
  /deep/ .ant-table-thead > tr > th span {
    background-color: transparent !important;
    color: #000000 !important;
  }
  // 分页控件样式
  /deep/ .ant-pagination-item,
  /deep/ .ant-pagination-prev,
  /deep/ .ant-pagination-next {
    background-color: rgb(255, 255, 255) !important;
    border-color: rgb(255, 255, 255) !important;
  }
  /deep/ .ant-pagination-item a,
  /deep/ .ant-pagination-prev a,
  /deep/ .ant-pagination-next a {
    color: #000000 !important;
  }
  /deep/ .ant-pagination-item-active {
    background-color: rgba(33, 186, 198, 0.6) !important;
    border-color: rgba(33, 186, 198, 0.8) !important;
  }
  /deep/ .ant-card {
    background-color: transparent !important;
    border: none !important;
  }
  // 操作列链接样式
  /deep/ .ant-table-tbody > tr > td a {
    color: #40a9ff !important;
  }
}
// 边框组件样式
/deep/ .dv-border-box-9 {
  --color: rgba(33, 186, 198, 0.6) !important;
  background-color: #000b29 !important;
}
</style>