colContent.jsx 16.6 KB
Newer Older
皮倩雯's avatar
皮倩雯 committed
1
/* eslint-disable prettier/prettier */
Maofei94's avatar
Maofei94 committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import React, { useState } from 'react';
import { Timeline, Tabs } from 'antd';
import { useHistory } from 'react-router-dom';
import styles from './index.less';

const { Item } = Timeline;
const { TabPane } = Tabs;
const ColConen = () => {
  const [tabPosition, setTabPosition] = useState('left');
  return (
    <div>
      <div className={styles.titlebox}>
        <p className={styles.log}>版本记录</p>
        <p className={styles.desclog}>熊猫运维平台</p>
      </div>
      <div className={styles.logbox}>
tianfen's avatar
tianfen committed
18
        <Tabs tabPosition={tabPosition} style={{ height: 'calc(50vh)' }}>
Maofei94's avatar
Maofei94 committed
19
          {arr.map((item, index) => (
Maofei94's avatar
Maofei94 committed
20 21 22 23 24 25 26 27 28 29 30
            <TabPane tab={item.label} key={item.key}>
              {item.content}
            </TabPane>
          ))}
        </Tabs>
      </div>
    </div>
  );
};

const arr = [
皮倩雯's avatar
皮倩雯 committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
  {
    key: '8',
    label: 'v6.0.20211224 ',
    content: (
      <div className={styles.hr}>
        <div className={styles.topBox}>
          <div className={styles.topl}>v6.0.20211224</div>
          <div className={styles.topr}>2021-12-24</div>
        </div>
        <hr />
        <h3>用户管理</h3>
        <ul>
          <li>【新增】 支持菜单拖拽</li>
        </ul>
        <h3>角色管理</h3>
        <ul>
          <li>【新增】 支持菜单拖拽</li>
        </ul>
        <h3>站点管理</h3>
        <ul>
          <li>【新增】 支持菜单拖拽</li>
        </ul>
        <h3>消息平台</h3>
        <ul>
          <li>【新增】 推送测试界面右侧添加已选人员列表</li>
          <li>【优化】 重构推送方案配置中推送组配置界面</li>
          <li>【新增】 新增编辑推送方案的交互</li>
        </ul>
        <h3>表/字段</h3>
        <ul>
          <li>【新增】 重构表字段验证弹窗</li>
          <li>【新增】 添加了maxLength字段</li>
        </ul>
        <h3>事件</h3>
        <ul>
          <li>【新增】 重写事件模块事件权限模态交互以及界面重构</li>
        </ul>
        <h3>web配置</h3>
        <ul>
          <li>【新增】 导入导出菜单功能</li>
        </ul>
        <h3>网站配置</h3>
        <ul>
          <li>
            【新增】
            选择主页产品类型(productType)、消息标记(messageMarking)、语音播报(messageVoice)配置、隐藏了通知方式配置
          </li>
        </ul>
        <h3>移动应用配置</h3>
        <ul>
          <li>【优化】 菜单管理调整为默认显示</li>
        </ul>
      </div>
    ),
  },
  {
    key: '7',
    label: 'v6.0.20211210 ',
    content: (
      <div className={styles.hr}>
        <div className={styles.topBox}>
          <div className={styles.topl}>v6.0.20211210</div>
          <div className={styles.topr}>2021-12-10</div>
        </div>
        <hr />
        <ul>
          <li>【优化】 重构运维平台所有功能的选择字段排序逻辑</li>
          <li>【优化】 抽离运维系统的业务平台菜单,并进行分组</li>
        </ul>
        <h3>消息平台</h3>
        <ul>
          <li>【新增】 对企业微信的支持</li>
          <li>【新增】 消息发送测试功能</li>
        </ul>
        <h3>宿主管理</h3>
        <ul>
          <li>【新增】 网关模块</li>
        </ul>
        <h3>web配置</h3>
        <ul>
          <li>【优化】 重构菜单拖拽,菜单以及菜单组可跨组拖拽</li>
        </ul>
        <h3>数据字典</h3>
        <ul>
          <li>【新增】 表格添加拖拽功能</li>
        </ul>
      </div>
    ),
  },
mayongxin's avatar
mayongxin committed
120 121
  {
    key: '6',
皮倩雯's avatar
皮倩雯 committed
122
    label: 'v6.0.20211115 ',
mayongxin's avatar
mayongxin committed
123 124 125
    content: (
      <div className={styles.hr}>
        <div className={styles.topBox}>
皮倩雯's avatar
皮倩雯 committed
126 127
          <div className={styles.topl}>v6.0.20211115</div>
          <div className={styles.topr}>2021-11-15</div>
mayongxin's avatar
mayongxin committed
128 129 130
        </div>
        <hr />
        <ul>
皮倩雯's avatar
皮倩雯 committed
131 132 133
          <li>【新增】 巡维保功能模块</li>
          <li>【新增】 视频平台模块</li>
          <li>【新增】 搜索数据高亮显示</li>
mayongxin's avatar
mayongxin committed
134
        </ul>
皮倩雯's avatar
皮倩雯 committed
135
        <h3>数据库连接</h3>
mayongxin's avatar
mayongxin committed
136
        <ul>
皮倩雯's avatar
皮倩雯 committed
137
          <li>【新增】 增加测试连接验证</li>
mayongxin's avatar
mayongxin committed
138
        </ul>
皮倩雯's avatar
皮倩雯 committed
139
        <h3>二维配置</h3>
mayongxin's avatar
mayongxin committed
140
        <ul>
皮倩雯's avatar
皮倩雯 committed
141 142 143
          <li>【优化】 修复配置成功后无回显问题</li>
          <li>【优化】 修改翻案管理选择范围与用户管理选择机构管理范围逻辑冲突问题</li>
          <li>【优化】 修复方案配置保存后弹窗不关闭问题</li>
mayongxin's avatar
mayongxin committed
144
        </ul>
皮倩雯's avatar
皮倩雯 committed
145
        <h3>数据字典</h3>
mayongxin's avatar
mayongxin committed
146
        <ul>
皮倩雯's avatar
皮倩雯 committed
147
          <li>【优化】 导入数据后不刷新问题</li>
mayongxin's avatar
mayongxin committed
148
        </ul>
皮倩雯's avatar
皮倩雯 committed
149
        <h3>web配置</h3>
mayongxin's avatar
mayongxin committed
150
        <ul>
皮倩雯's avatar
皮倩雯 committed
151 152 153 154 155
          <li>【优化】 重构web配置拖拽逻辑</li>
        </ul>
        <h3>表/字段</h3>
        <ul>
          <li>【优化】 保存排序后顺序乱了的问题</li>
mayongxin's avatar
mayongxin committed
156 157 158 159
        </ul>
      </div>
    ),
  },
Maofei94's avatar
Maofei94 committed
160 161
  {
    key: '5',
皮倩雯's avatar
皮倩雯 committed
162
    label: 'v6.0.20211030 ',
Maofei94's avatar
Maofei94 committed
163 164 165
    content: (
      <div className={styles.hr}>
        <div className={styles.topBox}>
皮倩雯's avatar
皮倩雯 committed
166 167
          <div className={styles.topl}>v6.0.20211030</div>
          <div className={styles.topr}>2021-10-30</div>
Maofei94's avatar
Maofei94 committed
168 169 170
        </div>
        <hr />
        <ul>
皮倩雯's avatar
皮倩雯 committed
171
          <li>【新增】 嵌入运维平台操作文档说明</li>
Maofei94's avatar
Maofei94 committed
172
        </ul>
皮倩雯's avatar
皮倩雯 committed
173
        <h3>用户管理</h3>
Maofei94's avatar
Maofei94 committed
174
        <ul>
皮倩雯's avatar
皮倩雯 committed
175 176
          <li>【优化】 关联用户失效</li>
          <li>【优化】 重写批量关联用户功能</li>
Maofei94's avatar
Maofei94 committed
177
        </ul>
皮倩雯's avatar
皮倩雯 committed
178
        <h3>表/字段</h3>
Maofei94's avatar
Maofei94 committed
179
        <ul>
皮倩雯's avatar
皮倩雯 committed
180
          <li>【新增】 外部字段展示</li>
Maofei94's avatar
Maofei94 committed
181
        </ul>
皮倩雯's avatar
皮倩雯 committed
182
        <h3>事件</h3>
Maofei94's avatar
Maofei94 committed
183
        <ul>
皮倩雯's avatar
皮倩雯 committed
184
          <li>【新增】 外部字段展示</li>
Maofei94's avatar
Maofei94 committed
185
        </ul>
皮倩雯's avatar
皮倩雯 committed
186
        <h3>流程</h3>
Maofei94's avatar
Maofei94 committed
187
        <ul>
皮倩雯's avatar
皮倩雯 committed
188
          <li>【新增】 外部字段展示</li>
Maofei94's avatar
Maofei94 committed
189 190 191 192
        </ul>
      </div>
    ),
  },
Maofei94's avatar
Maofei94 committed
193 194
  {
    key: '4',
皮倩雯's avatar
皮倩雯 committed
195
    label: 'v6.0.20211005 ',
Maofei94's avatar
Maofei94 committed
196 197 198
    content: (
      <div className={styles.hr}>
        <div className={styles.topBox}>
皮倩雯's avatar
皮倩雯 committed
199 200
          <div className={styles.topl}>v6.0.20211005</div>
          <div className={styles.topr}>2021-10-05</div>
Maofei94's avatar
Maofei94 committed
201 202 203
        </div>
        <hr />
        <ul>
皮倩雯's avatar
皮倩雯 committed
204 205 206
          <li>【新增】 事件功能模块</li>
          <li>【新增】 流程功能模块</li>
          <li>【新增】 工作流编辑功能模块</li>
Maofei94's avatar
Maofei94 committed
207
        </ul>
皮倩雯's avatar
皮倩雯 committed
208 209 210 211 212 213 214 215 216 217 218 219 220
      </div>
    ),
  },
  {
    key: '3',
    label: 'v6.0.20210831 ',
    content: (
      <div className={styles.hr}>
        <div className={styles.topBox}>
          <div className={styles.topl}>v6.0.20210831</div>
          <div className={styles.topr}>2021-08-31</div>
        </div>
        <hr />
Maofei94's avatar
Maofei94 committed
221
        <ul>
皮倩雯's avatar
皮倩雯 committed
222 223
          <li>【新增】 表/字段功能模块</li>
          <li>【新增】 台账管理功能模块</li>
Maofei94's avatar
Maofei94 committed
224
        </ul>
皮倩雯's avatar
皮倩雯 committed
225
        <h3>宿主管理</h3>
Maofei94's avatar
Maofei94 committed
226
        <ul>
皮倩雯's avatar
皮倩雯 committed
227 228
          <li>【优化】 页面样式</li>
          <li>【新增】 格式验证</li>
Maofei94's avatar
Maofei94 committed
229
        </ul>
皮倩雯's avatar
皮倩雯 committed
230
        <h3>消息平台</h3>
Maofei94's avatar
Maofei94 committed
231
        <ul>
皮倩雯's avatar
皮倩雯 committed
232 233 234
          <li>【优化】 页面样式</li>
          <li>【优化】 修复添加功能失败BUG</li>
          <li>【优化】 表单联动逻辑</li>
Maofei94's avatar
Maofei94 committed
235
        </ul>
皮倩雯's avatar
皮倩雯 committed
236
        <h3>数据字典</h3>
Maofei94's avatar
Maofei94 committed
237
        <ul>
皮倩雯's avatar
皮倩雯 committed
238
          <li>【新增】 重写数据字典功能模块</li>
Maofei94's avatar
Maofei94 committed
239 240 241 242
        </ul>
      </div>
    ),
  },
Maofei94's avatar
Maofei94 committed
243
  {
皮倩雯's avatar
皮倩雯 committed
244 245
    key: '2',
    label: 'v6.0.20210603 ',
Maofei94's avatar
Maofei94 committed
246 247 248
    content: (
      <div className={styles.hr}>
        <div className={styles.topBox}>
皮倩雯's avatar
皮倩雯 committed
249 250
          <div className={styles.topl}>v6.0.20210603</div>
          <div className={styles.topr}>2021-06-03</div>
Maofei94's avatar
Maofei94 committed
251 252
        </div>
        <hr />
皮倩雯's avatar
皮倩雯 committed
253
        <h3>宿主管理</h3>
Maofei94's avatar
Maofei94 committed
254
        <ul>
皮倩雯's avatar
皮倩雯 committed
255 256 257 258
          <li>【新增】 基础信息</li>
          <li>【新增】 物联配置</li>
          <li>【新增】 代理配置</li>
          <li>【新增】 消息平台连接</li>
Maofei94's avatar
Maofei94 committed
259
        </ul>
皮倩雯's avatar
皮倩雯 committed
260
        <h3>消息平台</h3>
Maofei94's avatar
Maofei94 committed
261
        <ul>
皮倩雯's avatar
皮倩雯 committed
262 263
          <li>【新增】 模板配置</li>
          <li>【新增】 方案配置</li>
Maofei94's avatar
Maofei94 committed
264
        </ul>
皮倩雯's avatar
皮倩雯 committed
265
        <h3>GIS配置</h3>
Maofei94's avatar
Maofei94 committed
266
        <ul>
皮倩雯's avatar
皮倩雯 committed
267 268
          <li>【新增】 机构范围配置</li>
          <li>【新增】 机构范围配置</li>
Maofei94's avatar
Maofei94 committed
269
        </ul>
皮倩雯's avatar
皮倩雯 committed
270
        <h3>站点管理</h3>
Maofei94's avatar
Maofei94 committed
271
        <ul>
皮倩雯's avatar
皮倩雯 committed
272
          <li>【优化】 支持多级站点创建</li>
Maofei94's avatar
Maofei94 committed
273
        </ul>
皮倩雯's avatar
皮倩雯 committed
274
        <h3>角色管理</h3>
Maofei94's avatar
Maofei94 committed
275
        <ul>
皮倩雯's avatar
皮倩雯 committed
276
          <li>【优化】 优化了人员选择布局</li>
Maofei94's avatar
Maofei94 committed
277 278 279 280
        </ul>
      </div>
    ),
  },
Maofei94's avatar
Maofei94 committed
281
  {
皮倩雯's avatar
皮倩雯 committed
282 283
    key: '1',
    label: 'v6.0.20210115 ',
Maofei94's avatar
Maofei94 committed
284 285 286
    content: (
      <div className={styles.hr}>
        <div className={styles.topBox}>
皮倩雯's avatar
皮倩雯 committed
287 288
          <div className={styles.topl}>v6.0.20210115</div>
          <div className={styles.topr}>2021-01-15</div>
Maofei94's avatar
Maofei94 committed
289 290
        </div>
        <hr />
皮倩雯's avatar
皮倩雯 committed
291
        <h3>用户管理</h3>
Maofei94's avatar
Maofei94 committed
292
        <ul>
皮倩雯's avatar
皮倩雯 committed
293 294
          <li>【优化】 优化了table展示图标</li>
          <li>【修复】 修复了批量删除失效的问题</li>
Maofei94's avatar
Maofei94 committed
295
        </ul>
皮倩雯's avatar
皮倩雯 committed
296
        <h3>角色管理</h3>
Maofei94's avatar
Maofei94 committed
297
        <ul>
皮倩雯's avatar
皮倩雯 committed
298
          <li>【优化】 优化了选中列表时的展示内容</li>
Maofei94's avatar
Maofei94 committed
299
        </ul>
皮倩雯's avatar
皮倩雯 committed
300
        <h3>站点管理</h3>
Maofei94's avatar
Maofei94 committed
301
        <ul>
皮倩雯's avatar
皮倩雯 committed
302
          <li>【新增】 新增已选列表框,展示选中的人员</li>
Maofei94's avatar
Maofei94 committed
303
        </ul>
皮倩雯's avatar
皮倩雯 committed
304
        <h3>GIS平台</h3>
Maofei94's avatar
Maofei94 committed
305
        <ul>
皮倩雯's avatar
皮倩雯 committed
306
          <li>【修复】 修复了维护管理不能提交保存</li>
Maofei94's avatar
Maofei94 committed
307
        </ul>
皮倩雯's avatar
皮倩雯 committed
308
        <h3>产品配置</h3>
Maofei94's avatar
Maofei94 committed
309
        <ul>
皮倩雯's avatar
皮倩雯 committed
310 311
          <li>【新增】 新配置路由成为独立模块</li>
          <li>【优化】 优化了配置提交规则</li>
Maofei94's avatar
Maofei94 committed
312
        </ul>
皮倩雯's avatar
皮倩雯 committed
313
        <h3>Web配置</h3>
Maofei94's avatar
Maofei94 committed
314
        <ul>
皮倩雯's avatar
皮倩雯 committed
315
          <li>【优化】 优化了页面刷新问题</li>
Maofei94's avatar
Maofei94 committed
316
        </ul>
皮倩雯's avatar
皮倩雯 committed
317
        <h3>网关配置</h3>
Maofei94's avatar
Maofei94 committed
318
        <ul>
皮倩雯's avatar
皮倩雯 committed
319
          <li>【新增】 动态使用网关接口</li>
Maofei94's avatar
Maofei94 committed
320
        </ul>
皮倩雯's avatar
皮倩雯 committed
321
        <h3>运维痕迹</h3>
Maofei94's avatar
Maofei94 committed
322
        <ul>
皮倩雯's avatar
皮倩雯 committed
323
          <li>【优化】 优化运维痕迹操作信息展示</li>
Maofei94's avatar
Maofei94 committed
324 325 326 327
        </ul>
      </div>
    ),
  },
Maofei94's avatar
Maofei94 committed
328
  {
皮倩雯's avatar
皮倩雯 committed
329 330
    key: '0',
    label: 'v6.0.20210108 ',
Maofei94's avatar
Maofei94 committed
331 332 333
    content: (
      <div className={styles.hr}>
        <div className={styles.topBox}>
皮倩雯's avatar
皮倩雯 committed
334 335
          <div className={styles.topl}>v6.0.20210108</div>
          <div className={styles.topr}>2021-01-08</div>
Maofei94's avatar
Maofei94 committed
336 337
        </div>
        <hr />
皮倩雯's avatar
皮倩雯 committed
338
        <h3>图片管理</h3>
Maofei94's avatar
Maofei94 committed
339
        <ul>
皮倩雯's avatar
皮倩雯 committed
340
          <li>【优化】 筛选展示图片的类型</li>
Maofei94's avatar
Maofei94 committed
341
        </ul>
皮倩雯's avatar
皮倩雯 committed
342
        <h3>用户管理</h3>
Maofei94's avatar
Maofei94 committed
343
        <ul>
皮倩雯's avatar
皮倩雯 committed
344
          <li>【优化】 优化了table展示图标</li>
Maofei94's avatar
Maofei94 committed
345
        </ul>
皮倩雯's avatar
皮倩雯 committed
346
        <h3>站点管理</h3>
Maofei94's avatar
Maofei94 committed
347
        <ul>
皮倩雯's avatar
皮倩雯 committed
348 349
          <li>【新增】 新增搜索过滤功能</li>
          <li>【修改】 修改了页面展示形式</li>
Maofei94's avatar
Maofei94 committed
350
        </ul>
皮倩雯's avatar
皮倩雯 committed
351
        <h3>Web配置</h3>
Maofei94's avatar
Maofei94 committed
352
        <ul>
皮倩雯's avatar
皮倩雯 committed
353 354 355 356 357 358 359
          <li>【新增】 产品配置模块</li>
          <li>【优化】 优化菜单描述</li>
        </ul>
        <h3>移动应用配置</h3>
        <ul>
          <li>【优化】 增加展示应用类别</li>
          <li>【优化】 优化菜单描述</li>
Maofei94's avatar
Maofei94 committed
360 361 362 363
        </ul>
      </div>
    ),
  },
皮倩雯's avatar
皮倩雯 committed
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
  // {
  //   key: '3',
  //   label: 'v5.0.20201231 ',
  //   content: (
  //     <div className={styles.hr}>
  //       <div className={styles.topBox}>
  //         <div className={styles.topl}>v5.0.20201231</div>
  //         <div className={styles.topr}>2020-12-31</div>
  //       </div>
  //       <hr />
  //       <h3>站点管理</h3>
  //       <ul>
  //         <li>【优化】 调整了页面展示结构</li>
  //       </ul>
  //       <h3>业务平台</h3>
  //       <ul>
  //         <li>【优化】 优化页面文字描述</li>
  //       </ul>
  //       <h3>服务监控</h3>
  //       <ul>
  //         <li>【修改】 统计图tooltip可选中,状态码中文提示</li>
  //       </ul>
  //       <h3>运维痕迹</h3>
  //       <ul>
  //         <li>【新增】 敏感操作记录</li>
  //       </ul>
  //       <h3>图片模块</h3>
  //       <ul>
  //         <li>【优化】 修改了图片请求的逻辑</li>
  //       </ul>
  //     </div>
  //   ),
  // },
  // {
  //   key: '2',
  //   label: 'v5.0.20201225 ',
  //   content: (
  //     <div className={styles.hr}>
  //       <div className={styles.topBox}>
  //         <div className={styles.topl}>v5.0.20201225</div>
  //         <div className={styles.topr}>2020-12-25</div>
  //       </div>
  //       <hr />
  //       <h3>角色管理</h3>
  //       <ul>
  //         <li>【修改】 修改了分组获取方式,禁止手动修改</li>
  //         <li>【修改】 修改了默认展示的应用</li>
  //       </ul>
  //       <h3>GIS平台</h3>
  //       <ul>
  //         <li>【新增】 新增七参数配置</li>
  //       </ul>
  //       <h3>业务平台</h3>
  //       <ul>
  //         <li>【修改】 修改了页面内容,优化了引导方式</li>
  //       </ul>
  //       <h3>Web配置</h3>
  //       <ul>
  //         <li>【修改】 菜单展示页面结构调整,调整提交逻辑</li>
  //       </ul>
  //       <h3>移动应用配置</h3>
  //       <ul>
  //         <li>【修改】 菜单展示页面结构调整,调整提交逻辑</li>
  //       </ul>
  //       <h3>系统日志</h3>
  //       <ul>
  //         <li>【修改】 模块名称做了修改</li>
  //         <li>【修改】 运维痕迹页面展示内容做了调整</li>
  //       </ul>
  //       <h3>数据库连接配置</h3>
  //       <ul>
  //         <li>【修改】 调整页面展示结构</li>
  //       </ul>
  //       <h3>版本记录</h3>
  //       <ul>
  //         <li>【修改】 修改了版本内容展示方式,调整了版本号的定义方式</li>
  //       </ul>
  //     </div>
  //   ),
  // },
  // {
  //   key: '1',
  //   label: 'v5.0.20201218 ',
  //   content: (
  //     <div className={styles.hr}>
  //       <div className={styles.topBox}>
  //         <div className={styles.topl}>v5.0.20201218</div>
  //         <div className={styles.topr}>2020-12-18</div>
  //       </div>
  //       <hr />
  //       <h3>移动应用配置</h3>
  //       <ul>
  //         <li>【新增】 新增了版本包上传功能</li>
  //         <li>【修改】 调整了获取版本包信息</li>
  //         <li>【修改】 优化了应用加载内容</li>
  //       </ul>
  //       <h3>登录页面</h3>
  //       <ul>
  //         <li>【修改】 调整了登录窗布局</li>
  //       </ul>
  //       <h3>系统日志</h3>
  //       <ul>
  //         <li>【修改】 服务日志页面做了优化</li>
  //         <li>【修改】 登录日志页面做了优化</li>
  //         <li>【修改】 运维日志页面做了优化</li>
  //       </ul>
  //     </div>
  //   ),
  // },
  // {
  //   key: '0',
  //   label: `v5.0.20201217 `,
  //   content: (
  //     <div className={styles.hr}>
  //       <div className={styles.topBox}>
  //         <div className={styles.topl}>v5.0.20201217</div>
  //         <div className={styles.topr}>2020-12-17</div>
  //       </div>
  //       <hr />
  //       <h3>运维第一个版本记录</h3>
  //       <ul>
  //         <li>
  //           【新增】
  //           新增了解决方案管理、数据库管理、用户中心、平台中心、应用中心、数据中心、系统日志板块
  //         </li>
  //         <li>【新增】 新增了版本记录模块</li>
  //         <li>【优化】 登录页面修改了动画效果</li>
  //         <li>【优化】 移动应用配置模块进行了部分翻新</li>
  //         <li>【优化】 业务平台模块修改了交互方式</li>
  //       </ul>
  //     </div>
  //   ),
  // },
Maofei94's avatar
Maofei94 committed
497
  // CivManage后增加/  2020-12-22
Maofei94's avatar
Maofei94 committed
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
  // {
  //   key: '2',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '3',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '4',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '5',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '6',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '131',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '70',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '8',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '9',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '10',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },

  // {
  //   key: '11',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '12',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '13',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '14',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '15',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '16',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '17',
  //   label: '1.0.20201218',
  //   content: 'aaaa',
  // },
  // {
  //   key: '18',
  //   label: '1.0.20201219',
  //   content: 'aaaa',
  // },
];
export default ColConen;