Authored by wangtao

监控在线文档

  1 +.DS_Store
  2 +node_modules/
  3 +dist/
  4 +../.idea/
  5 +npm-debug.log*
  6 +yarn-debug.log*
  7 +yarn-error.log*
  8 +package-lock.json
  9 +yarn.lock
  10 +
  11 +# Editor directories and files
  12 +.idea
  13 +.vscode
  14 +*.suo
  15 +*.ntvs*
  16 +*.njsproj
  17 +*.sln
  1 +## 文档
  2 +文档基于vue-press实现,运行步骤:
  3 +
  4 +1. npm install
  5 +
  6 +2. npm run docs:dev
  7 +
  8 +3. http://localhost:8080
  9 +
  10 +4. npm run docs:build
  1 +module.exports = {
  2 + base: '/monitor/',
  3 + title: 'A-View-5',
  4 + description: '监控A-View-5说明',
  5 + dest: 'dist',
  6 + lastUpdated: 'Last Updated',
  7 + theme: '',
  8 + themeConfig: {
  9 + logo: '/logo.png',
  10 + smoothScroll: true,
  11 + sidebarDepth: 2,
  12 + nav: [
  13 + {text: '首页', link: '/'},
  14 + {text: '5.2.0', link: '/version520/'},
  15 + {text: '设计器', link: 'http://192.168.0.75:6677/#/login'},
  16 + {text: '报表设计', link: 'http://192.168.0.75:8086/'}
  17 + ],
  18 + sidebar: {
  19 + '/version520/': [
  20 + {
  21 + title: '版本升级',
  22 + collapsable: false,
  23 + children: [
  24 + {title: '版本说明', path: '/version520/'},
  25 + {title: '发布', path: '/version520/20220617'},
  26 + ]
  27 + }
  28 + ]
  29 + }
  30 + },
  31 + plugins: [
  32 + ['@vuepress/back-to-top', true],
  33 + ],
  34 + configureWebpack: {
  35 + resolve: {
  36 + alias: {
  37 + '@': '/.vuepress/public'
  38 + }
  39 + }
  40 + }
  41 +}
  1 +// placeholder for test, dont't remove it.
  2 +
  3 +//.content {
  4 +// font-size 30px;
  5 +//}
  6 +
  7 +pre.vue-container
  8 + border-left-width: .5rem;
  9 + border-left-style: solid;
  10 + border-color: #42b983;
  11 + border-radius: 0px;
  12 + & > code
  13 + font-size: 14px !important;
  14 + & > p
  15 + margin: -5px 0 -20px 0;
  16 + code
  17 + background-color: #42b983 !important;
  18 + padding: 3px 5px;
  19 + border-radius: 3px;
  20 + color #000
  21 + em
  22 + color #808080
  23 + font-weight light
  1 +---
  2 +home: true
  3 +heroImage: /logo.png
  4 +actionText: 快速开始 →
  5 +actionLink: /guide/
  6 +footer: Apache 2.0 Licensed | Copyright © 2021 Anji-Plus Report All Rights Reserved
  7 +---
  8 +
  9 +<div style="text-align: center">
  10 +</div>
  11 +
  12 +<div class="features">
  13 + <div class="feature">
  14 + <h2>技术先进</h2>
  15 + <p>使用最流行的技术SpringBoot、Vue、Element。</p>
  16 + </div>
  17 + <div class="feature">
  18 + <h2>丰富组件</h2>
  19 + <p>是一个包含前后端代码实现,同时支持动态扩展数据源.</p>
  20 + </div>
  21 + <div class="feature">
  22 + <h2>功能完善</h2>
  23 + <p>支持多数据源,多数据集,丰富的大屏组件实现拖拽生成大屏</p>
  24 + </div>
  25 +</div>
  1 +&emsp; &emsp; 监控版本升级记录<br>
  2 +
  3 +.
  4 +├─ README.md
  5 +├─ foo
  6 +│ ├─ README.md
  7 +│ ├─ one.md
  8 +│ └─ two.md
  9 +└─ bar
  10 +├─ README.md
  11 +├─ three.md
  12 +└─ four.md
  13 +
  14 +
  15 +| Tables | Are | Cool |
  16 +| ------------- |:-------------:| -----:|
  17 +| col 3 is | right-aligned | $1600 |
  18 +| col 2 is | centered | $12 |
  19 +| zebra stripes | are neat | $1 |
  20 +
  21 +
  22 +:tada: :100:
  23 +
  24 +
  25 +[[toc]]
  26 +
  27 +
  28 +::: tip
  29 +这是一个提示
  30 +:::
  31 +
  32 +::: warning
  33 +这是一个警告
  34 +:::
  35 +
  36 +::: danger
  37 +这是一个危险警告
  38 +:::
  39 +
  40 +::: details
  41 +这是一个详情块,在 IE / Edge 中不生效
  42 +:::
  43 +
  44 +
  45 +
  46 +::: danger STOP
  47 +危险区域,禁止通行
  48 +:::
  49 +
  50 +::: details 点击查看代码
  51 +```js
  52 +console.log('你好,VuePress!')
  53 +```
  54 +:::
  55 +
  56 +
  57 +
  58 +``` js
  59 +export default {
  60 + name: 'MyComponent',
  61 + // ...
  62 +}
  63 +```
  64 +
  65 +
  66 +
  67 +``` html
  68 +<ul>
  69 + <li
  70 + v-for="todo in todos"
  71 + :key="todo.id"
  72 + >
  73 + {{ todo.text }}
  74 + </li>
  75 +</ul>
  76 +```
  77 +
  78 +
  79 +``` js{1,4,6-7}
  80 +export default { // Highlighted
  81 + data () {
  82 + return {
  83 + msg: `Highlighted!
  84 + This line isn't highlighted,
  85 + but this and the next 2 are.`,
  86 + motd: 'VuePress is awesome',
  87 + lorem: 'ipsum',
  88 + }
  89 + }
  90 +}
  91 +```
  92 +
  93 +
  94 +
  95 +
  96 +
  97 +
  98 +
  1 +&emsp; &emsp; <b>2022-6-17版本5.2.0版本发布</b><br>
  2 +
  1 +&emsp; &emsp; 监控版本升级记录<br>
  2 +
  3 +
  4 +| Tables | Are | Cool |
  5 +| ------------- |:-------------:| -----:|
  6 +| col 3 is | right-aligned | $1600 |
  7 +| col 2 is | centered | $12 |
  8 +| zebra stripes | are neat | $1 |
  9 +
  10 +
  11 +:tada: :100:
  12 +
  13 +
  14 +[[toc]]
  15 +
  16 +
  17 +::: tip
  18 +这是一个提示
  19 +:::
  20 +
  21 +::: warning
  22 +这是一个警告
  23 +:::
  24 +
  25 +::: danger
  26 +这是一个危险警告
  27 +:::
  28 +
  29 +::: details
  30 +这是一个详情块,在 IE / Edge 中不生效
  31 +:::
  32 +
  33 +
  34 +
  35 +::: danger STOP
  36 +危险区域,禁止通行
  37 +:::
  38 +
  39 +::: details 点击查看代码
  40 +```js
  41 +console.log('你好,VuePress!')
  42 +```
  43 +:::
  44 +
  45 +
  46 +
  47 +``` js
  48 +export default {
  49 + name: 'MyComponent',
  50 + // ...
  51 +}
  52 +```
  53 +
  54 +
  55 +
  56 +``` html
  57 +<ul>
  58 + <li
  59 + v-for="todo in todos"
  60 + :key="todo.id"
  61 + >
  62 + {{ todo.text }}
  63 + </li>
  64 +</ul>
  65 +```
  66 +
  67 +
  68 +``` js{1,4,6-7}
  69 +export default { // Highlighted
  70 + data () {
  71 + return {
  72 + msg: `Highlighted!
  73 + This line isn't highlighted,
  74 + but this and the next 2 are.`,
  75 + motd: 'VuePress is awesome',
  76 + lorem: 'ipsum',
  77 + }
  78 + }
  79 +}
  80 +```
  81 +
  82 +
  83 +
  84 +
  85 +
  86 +
  87 +
  1 +{
  2 + "name": "doc",
  3 + "version": "1.0.0",
  4 + "description": "监控在线文档",
  5 + "devDependencies": {
  6 + "vuepress": "^1.8.2"
  7 + },
  8 + "keywords": [
  9 + "监控在线文档",
  10 + "在线文档:https://vuepress.vuejs.org/zh/guide/"
  11 + ],
  12 + "author": "mongitor team",
  13 + "license": "",
  14 + "scripts": {
  15 + "docs:dev": "vuepress dev docs",
  16 + "docs:build": "vuepress build docs"
  17 + }
  18 +}