Commit 8290dc9dba2ad472594a9e1ad9863832c2b5caba

Authored by 娄高锋
2 parents f3388a12 59203739

Merge branch 'pudong_jdk8' of http://192.168.168.201:8888/panzhaov5/bsth_control into pudong_jdk8

src/main/resources/static/pages/home.html
1   -<style>
2   - .system_change_log{
3   - background: #fff;
4   - color: #666;
5   - box-shadow: 0 5px 15px rgba(0,0,0,0.08);
6   - height: calc(100% + 10px);
7   - margin-top: -10px;
8   - font-size: 14px;
9   - padding: 10px 0 0 15px;
10   - overflow: auto;
11   - }
12   - .system_change_log>ul{
13   - margin:0px;
14   - list-style:none;
15   - }
16   -
17   - .system_change_log>ul>li.sub_title{
18   - text-indent: 0;
19   - }
20   -
21   - .system_change_log>ul>li.sub_title>h6{
22   - font-size: 12px;
23   - font-family: 微软雅黑;
24   - color: #000;
25   - margin-top: 8px;
26   - margin-bottom: 8px;
27   - }
28   -
29   - .system_change_log>ul>li{
30   - margin: 5px 0;
31   - text-indent: 25px;
32   - }
33   -
34   - .system_change_log .label{
35   - width: 55px;
36   - display: inline-block;
37   - padding: 0 10px;
38   - line-height: 1.5;
39   - font-size: 12px;
40   - color: #fff;
41   - vertical-align: middle;
42   - white-space: nowrap;
43   - border-radius: 2px !important;
44   - text-transform: uppercase;
45   - text-align: center;
46   - text-indent: 3px;
47   - margin-right: 15px;
48   - }
49   - .system_change_log .label.s_c_add{
50   - background-color: #32d296;
51   - }
52   -
53   - .system_change_log .label.s_c_change{
54   - background-color: #1e87f0;
55   - }
56   -
57   - .system_change_log .label.s_c_remove{
58   - background-color: #faa05a;
59   - }
60   -</style>
61   -<div class="system_change_log">
62   - <h2 style="text-indent: 35px;margin: 10px 0 5px;">2021-01-07 更新说明 Changelog</h2>
63   - <br><br>
64   - <ul >
65   - <li class="sub_title"><h6>报表</h6></li>
66   - <li><span class="label s_c_change">修改</span>1.rfid线路签卡率报表中添加自编号和路牌字段</li>
67   - <li><span class="label s_c_change">修改</span>2.烂班明细统计,增加直属公司所有分公司、烂班原因筛选条件</li>
68   - <li class="sub_title"><h6>基础信息</h6></li>
69   - <li><span class="label s_c_change">修改</span>1.基础信息->线路->站点详情,可查看历史版本,编辑当前和待更新版本</li>
70   - <li class="sub_title"><h6>线调</h6></li>
71   - <li><span class="label s_c_change">修改</span>1.线调->地图,点击某个设备"拨打电话"</li>
72   - <li><span class="label s_c_change">修改</span>2.线调->实发调整,加入调整说明下拉框,调整说明进入备注信息</li>
73   - <li><span class="label s_c_change">修改</span>3.烂班原因加入'路救'类型</li>
74   - <li><span class="label s_c_change">新增</span>4.新增临时功能线路调度->临时节点->花博线计划班次导出,用于按日期导出花博线计划班次</li>
75   - </ul>
76   -
77   -</div>
78   -
79   -<script type="text/javascript">
80   - $.ajax({
81   - url: '/eci/validate_get_destroy_info',
82   - dataType: "json",
83   - success: function(rs) {
84   - if (rs && rs.status === "SUCCESS") {
85   - if (rs.data && rs.data.length && rs.data.length > 0) {
86   - var htmlText = "";
87   - var wrapData = [];
88   - if (rs.data.length > 8) {
89   - htmlText = "<span style='font-weight: bold; font-style: italic; '>部分停用信息如下:</span></br>";
90   - wrapData = rs.data.slice(0, 8);
91   - } else {
92   - htmlText = "<span style='font-weight: bold; font-style: italic; '>所有停用信息如下:</span></br>";
93   - wrapData = rs.data;
94   - }
95   - $.each(wrapData, function(index, value) {
96   - wrapData[index] = "<span style='font-size: 14px;'>" + value + "</span>";
97   - });
98   -
99   - htmlText += wrapData.join("</br>");
100   -
101   - swal({
102   - title: "排班人员停用信息",
103   - text: htmlText,
104   - html: true,
105   - type: "warning",
106   - showCancelButton: true,
107   - cancelButtonText: "关闭",
108   - confirmButtonColor: "#3598dc",
109   - confirmButtonText: "下载所有停用信息",
110   - closeOnConfirm: false
111   -
112   - }, function() {
113   - window.location.href = "/eci/validate_get_destroy_info/download";
114   - });
115   - }
116   - }
117   - }
118   - });
119   -
120   -</script>
  1 +<style>
  2 + .system_change_log{
  3 + background: #fff;
  4 + color: #666;
  5 + box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  6 + height: calc(100% + 10px);
  7 + margin-top: -10px;
  8 + font-size: 14px;
  9 + padding: 10px 0 0 15px;
  10 + overflow: auto;
  11 + }
  12 + .system_change_log>ul{
  13 + margin:0px;
  14 + list-style:none;
  15 + }
  16 +
  17 + .system_change_log>ul>li.sub_title{
  18 + text-indent: 0;
  19 + }
  20 +
  21 + .system_change_log>ul>li.sub_title>h6{
  22 + font-size: 12px;
  23 + font-family: 微软雅黑;
  24 + color: #000;
  25 + margin-top: 8px;
  26 + margin-bottom: 8px;
  27 + }
  28 +
  29 + .system_change_log>ul>li{
  30 + margin: 5px 0;
  31 + text-indent: 25px;
  32 + }
  33 +
  34 + .system_change_log .label{
  35 + width: 55px;
  36 + display: inline-block;
  37 + padding: 0 10px;
  38 + line-height: 1.5;
  39 + font-size: 12px;
  40 + color: #fff;
  41 + vertical-align: middle;
  42 + white-space: nowrap;
  43 + border-radius: 2px !important;
  44 + text-transform: uppercase;
  45 + text-align: center;
  46 + text-indent: 3px;
  47 + margin-right: 15px;
  48 + }
  49 + .system_change_log .label.s_c_add{
  50 + background-color: #32d296;
  51 + }
  52 +
  53 + .system_change_log .label.s_c_change{
  54 + background-color: #1e87f0;
  55 + }
  56 +
  57 + .system_change_log .label.s_c_remove{
  58 + background-color: #faa05a;
  59 + }
  60 +</style>
  61 +<div class="system_change_log">
  62 + <h2 style="text-indent: 35px;margin: 10px 0 5px;">2022-06-13 更新说明 Changelog</h2>
  63 + <br><br>
  64 + <ul >
  65 + <li class="sub_title"><h6>报表</h6></li>
  66 + <li><span class="label s_c_change">修改</span>1.统计报表->路单线路明细月报、年报 中耗电统计值偏离的问题</li>
  67 + <li><span class="label s_c_change">修改</span>2.统计报表->"(班次)到离站"报表,新增历史站点版本数据查询,解决站点顺序的问题</li>
  68 + <li class="sub_title"><h6>基础信息</h6></li>
  69 + <li><span class="label s_c_change">修改</span>1.调度系统车辆信息与车辆库车辆信息保持同步,调度系统取消车辆的新增、编辑功能</li>
  70 + <li><span class="label s_c_change">修改</span>2.调度系统人员信息与人事系统人员信息保持同步,调度系统取消人员的新增、编辑功能</li>
  71 + <li class="sub_title"><h6>运管处</h6></li>
  72 + <li><span class="label s_c_change">修改</span>1.电子路单上传至运管处时采用多次上传降低上传失败率</li>
  73 + <li class="sub_title"><h6>线调</h6></li>
  74 + <li><span class="label s_c_change">修改</span>1.线调->车载设备->设备管理 中"最后GPS时间"列显示异常修正</li>
  75 + <li><span class="label s_c_change">修改</span>2.无排班线路添加"临加班次"功能</li>
  76 + </ul>
  77 +
  78 +</div>
  79 +
  80 +<script type="text/javascript">
  81 + $.ajax({
  82 + url: '/eci/validate_get_destroy_info',
  83 + dataType: "json",
  84 + success: function(rs) {
  85 + if (rs && rs.status === "SUCCESS") {
  86 + if (rs.data && rs.data.length && rs.data.length > 0) {
  87 + var htmlText = "";
  88 + var wrapData = [];
  89 + if (rs.data.length > 8) {
  90 + htmlText = "<span style='font-weight: bold; font-style: italic; '>部分停用信息如下:</span></br>";
  91 + wrapData = rs.data.slice(0, 8);
  92 + } else {
  93 + htmlText = "<span style='font-weight: bold; font-style: italic; '>所有停用信息如下:</span></br>";
  94 + wrapData = rs.data;
  95 + }
  96 + $.each(wrapData, function(index, value) {
  97 + wrapData[index] = "<span style='font-size: 14px;'>" + value + "</span>";
  98 + });
  99 +
  100 + htmlText += wrapData.join("</br>");
  101 +
  102 + swal({
  103 + title: "排班人员停用信息",
  104 + text: htmlText,
  105 + html: true,
  106 + type: "warning",
  107 + showCancelButton: true,
  108 + cancelButtonText: "关闭",
  109 + confirmButtonColor: "#3598dc",
  110 + confirmButtonText: "下载所有停用信息",
  111 + closeOnConfirm: false
  112 +
  113 + }, function() {
  114 + window.location.href = "/eci/validate_get_destroy_info/download";
  115 + });
  116 + }
  117 + }
  118 + }
  119 + });
  120 +
  121 +</script>
... ...