jacklu2016 / datawrite

睿思云数据填报系统

Home Page:https://www.ruisitech.com/datawrite.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

睿思云数据填报系统

睿思云数据填报系统系统,基于Springboot + VUE 构建,采用mysql数据库,直接运行com.ruisitech.bi.RsbiDatawriteApplication启动系统。
系统前端代码在 web-vue 目录中, 进入目录,执行 npm install 安装系统,执行npm run dev 启动前端。

主要功能模块:

1.制作表单
2.构建表
3.数据填报
4.数据审核
5.数据建模
6.统计分析

产品数据库配置:

数据块配置在 application.yml 文件

datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    dbType: mysql #定义支撑库类型
    druid:
      master:  # 支持库
        url: jdbc:mysql://localhost:3306/rsbi_datawrite?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&serverTimezone=GMT%2B8
        username: root
        password: 12345678
        driver-class-name: com.mysql.cj.jdbc.Driver
        initialSize: 5
        minIdle: 10
        maxActive: 50
        maxWait: 60000
      tables:  #填报表存放库
        url: jdbc:mysql://localhost:3306/rsbi?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true&serverTimezone=GMT%2B8
        username: root
        password: 12345678
        driver-class-name: com.mysql.cj.jdbc.Driver
        initialSize: 5
        minIdle: 10
        maxActive: 50
        maxWait: 60000

mysql的支撑库rsbi_datawrite备份文件在datas目录下,在mysql创建 rsbi_datawrite数据库后,把数据库文件还原到rsbi_datawrite数据库中。同时创建一个空的库,库名为:rsbi,此库主要用来存放用户创建的填报表

产品截图:

构建表单
olap  
数据填报
1  
数据建模
2  
统计分析
2  

About

睿思云数据填报系统

https://www.ruisitech.com/datawrite.html

License:Apache License 2.0


Languages

Language:Java 44.8%Language:Vue 44.2%Language:JavaScript 9.9%Language:Less 1.1%Language:HTML 0.0%