ruoyi-nbcio项目修改主页与主题

简介: ruoyi-nbcio项目修改主页与主题

为了配合后续项目,主页与主题都进行修改。

1、主页修改如下:

<template>
  <div class="dashboard-editor-container">
    <panel-group @handleSetLineChartData="handleSetLineChartData" />
    <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
      <line-chart :chart-data="lineChartData" />
    </el-row>
    <el-row :gutter="32">
      <el-col :xs="24" :sm="24" :lg="8">
        <div class="chart-wrapper">
          <raddar-chart />
        </div>
      </el-col>
      <el-col :xs="24" :sm="24" :lg="8">
        <div class="chart-wrapper">
          <pie-chart />
        </div>
      </el-col>
      <el-col :xs="24" :sm="24" :lg="8">
        <div class="chart-wrapper">
          <bar-chart />
        </div>
      </el-col>
    </el-row>
    
  </div>
</template>
<script>
import PanelGroup from './dashboard/PanelGroup'
import LineChart from './dashboard/LineChart'
import RaddarChart from './dashboard/RaddarChart'
import PieChart from './dashboard/PieChart'
import BarChart from './dashboard/BarChart'
const lineChartData = {
  newVisitis: {
    expectedData: [100, 120, 161, 134, 105, 160, 165],
    actualData: [120, 82, 91, 154, 162, 140, 145]
  },
  messages: {
    expectedData: [200, 192, 120, 144, 160, 130, 140],
    actualData: [180, 160, 151, 106, 145, 150, 130]
  },
  purchases: {
    expectedData: [80, 100, 121, 104, 105, 90, 100],
    actualData: [120, 90, 100, 138, 142, 130, 130]
  },
  shoppings: {
    expectedData: [130, 140, 141, 142, 145, 150, 160],
    actualData: [120, 82, 91, 154, 162, 140, 130]
  }
}
export default {
  name: 'Index',
  components: {
    PanelGroup,
    LineChart,
    RaddarChart,
    PieChart,
    BarChart
  },
  data() {
    return {
      lineChartData: lineChartData.newVisitis
    }
  },
  methods: {
    handleSetLineChartData(type) {
      this.lineChartData = lineChartData[type]
    }
  }
}
</script>
<style lang="scss" scoped>
.dashboard-editor-container {
  padding: 32px;
  background-color: rgb(240, 242, 245);
  position: relative;
  .chart-wrapper {
    background: #fff;
    padding: 16px 16px 0;
    margin-bottom: 32px;
  }
}
@media (max-width:1024px) {
  .chart-wrapper {
    padding: 8px;
  }
}
</style>

2、主题修改如下:

module.exports = {
  /**
   * 侧边栏主题 深色主题theme-dark,浅色主题theme-light
   */
  sideTheme: 'theme-light',
  /**
   * 是否系统布局配置
   */
  showSettings: false,
  /**
   * 是否显示顶部导航
   */
  topNav: false,
  /**
   * 是否显示 tagsView
   */
  tagsView: true,
  /**
   * 是否固定头部
   */
  fixedHeader: false,
  /**
   * 是否显示logo
   */
  sidebarLogo: true,
  /**
   * 是否显示动态标题
   */
  dynamicTitle: false,
  /**
   * @type {string | array} 'production' | ['production', 'development']
   * @description Need show err logs component.
   * The default is only used in the production env
   * If you want to also use it in dev, you can pass ['production', 'development']
   */
  errorLog: 'production'
}



相关文章
|
8月前
ruoyi-nbcio项目增加右上角的消息提醒
ruoyi-nbcio项目增加右上角的消息提醒
199 0
|
8月前
若依框架 --- ruoyi 表格的设置
若依框架 --- ruoyi 表格的设置
1113 0
|
8月前
|
Java 数据库
若依框架---模板生成
若依框架---模板生成
198 0
|
8月前
基于RuoYi-Flowable-Plus的若依ruoyi-nbcio支持formdesigner的本地图片上传与回显的功能实现
基于RuoYi-Flowable-Plus的若依ruoyi-nbcio支持formdesigner的本地图片上传与回显的功能实现
96 2
|
8月前
|
对象存储
基于RuoYi-Flowable-Plus的若依ruoyi-nbcio支持本地图片上传与回显的功能实现(二)
基于RuoYi-Flowable-Plus的若依ruoyi-nbcio支持本地图片上传与回显的功能实现(二)
156 0
|
8月前
|
前端开发 数据库 对象存储
基于RuoYi-Flowable-Plus的若依ruoyi-nbcio支持本地图片上传与回显的功能实现(一)
基于RuoYi-Flowable-Plus的若依ruoyi-nbcio支持本地图片上传与回显的功能实现(一)
609 0
|
6月前
|
JavaScript Java 测试技术
基于SpringBoot+Vue+uniapp的BBS论坛系统的详细设计和实现(源码+lw+部署文档+讲解等)
基于SpringBoot+Vue+uniapp的BBS论坛系统的详细设计和实现(源码+lw+部署文档+讲解等)
|
6月前
|
前端开发
网页设计,若依项目修改(网页设计,若依项目修改(It must be done)09------通用下载方法前段代码
网页设计,若依项目修改(网页设计,若依项目修改(It must be done)09------通用下载方法前段代码
|
8月前
|
JavaScript Java 关系型数据库
springboot+vue简历系统(源码+文档)
本文介绍了基于SpringBoot的简历系统,由Java开发者风歌分享。系统采用Java语言,SpringBoot框架,JDK1.8,MySQL 5.7+,前端使用nodejs和vue。系统包括管理员管理界面、用户功能界面和前台首页界面,支持管理员登录、用户管理、模板类型管理、招聘会管理、报名招聘管理等功能。此外,还展示了各模块的详细操作界面,如用户信息编辑、招聘会详情等。项目源码可联系作者风歌获取。
|
8月前
|
JavaScript Java 关系型数据库
springboot+vue租房网站(源码+文档)
本文是关于一个基于SpringBoot的租房网站的介绍。开发环境包括Java 1.8、SpringBoot框架、Tomcat7服务器、MySQL 5.7+数据库和Navicat11工具。系统分为管理员、用户和前台首页三个模块,分别有用户管理、房屋类型管理、预约看房和在线签约等功能。管理员可进行详情、删除和修改操作,用户则能进行预约看房、在线签约和租赁评价等。此外,网站还包括交流论坛和房屋资讯板块。项目旨在提供完整的租房服务流程。