home.html
4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
<style>
.system_change_log{
background: #fff;
color: #666;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
height: calc(100% + 10px);
margin-top: -10px;
font-size: 14px;
padding: 10px 0 0 15px;
overflow: auto;
}
.system_change_log>ul{
margin:0px;
list-style:none;
}
.system_change_log>ul>li.sub_title{
text-indent: 0;
}
.system_change_log>ul>li.sub_title>h6{
font-size: 12px;
font-family: 微软雅黑;
color: #000;
margin-top: 8px;
margin-bottom: 8px;
}
.system_change_log>ul>li{
margin: 5px 0;
text-indent: 25px;
}
.system_change_log .label{
width: 55px;
display: inline-block;
padding: 0 10px;
line-height: 1.5;
font-size: 12px;
color: #fff;
vertical-align: middle;
white-space: nowrap;
border-radius: 2px !important;
text-transform: uppercase;
text-align: center;
text-indent: 3px;
margin-right: 15px;
}
.system_change_log .label.s_c_add{
background-color: #32d296;
}
.system_change_log .label.s_c_change{
background-color: #1e87f0;
}
.system_change_log .label.s_c_remove{
background-color: #faa05a;
}
</style>
<div class="system_change_log">
<<<<<<< HEAD
<!--<h2 style="text-indent: 35px;margin: 10px 0 5px;">2018-08-23 更新说明 Changelog</h2>
=======
<h2 style="text-indent: 35px;margin: 10px 0 5px;">2021-01-07 更新说明 Changelog</h2>
>>>>>>> 6cafe1acab4252c1fd171e0669654f317bf0fd4a
<br><br>
<ul >
<li class="sub_title"><h6>报表</h6></li>
<li><span class="label s_c_change">修改</span>1.rfid线路签卡率报表中添加自编号和路牌字段</li>
<li><span class="label s_c_change">修改</span>2.烂班明细统计,增加直属公司所有分公司、烂班原因筛选条件</li>
<li class="sub_title"><h6>基础信息</h6></li>
<li><span class="label s_c_change">修改</span>1.基础信息->线路->站点详情,可查看历史版本,编辑当前和待更新版本</li>
<li class="sub_title"><h6>线调</h6></li>
<li><span class="label s_c_change">修改</span>1.线调->地图,点击某个设备"拨打电话"</li>
<li><span class="label s_c_change">修改</span>2.线调->实发调整,加入调整说明下拉框,调整说明进入备注信息</li>
<li><span class="label s_c_change">修改</span>3.烂班原因加入'路救'类型</li>
<li><span class="label s_c_change">新增</span>4.新增临时功能线路调度->临时节点->花博线计划班次导出,用于按日期导出花博线计划班次</li>
</ul>
<<<<<<< HEAD
-->
<h2 style="text-indent: 35px;margin: 10px 0 5px;">2020-08-24 更新说明 Changelog</h2>
<br><br>
<ul >
<li class="sub_title"><h6>线调</h6></li>
<li><span class="label s_c_change">修改</span>1、线调,时间超出待发时候后,锁定待发,禁止修改待发时间。</li>
</ul>
=======
>>>>>>> 6cafe1acab4252c1fd171e0669654f317bf0fd4a
</div>
<script type="text/javascript">
$.ajax({
url: '/eci/validate_get_destroy_info',
dataType: "json",
success: function(rs) {
if (rs && rs.status === "SUCCESS") {
if (rs.data && rs.data.length && rs.data.length > 0) {
swal({
title: "人员配置停用信息",
text: rs.data.join("</br>"),
html: true,
type: "warning",
showCancelButton: true,
confirmButtonColor: "RED",
confirmButtonText: "是",
cancelButtonText: "取消"
});
}
}
}
});
</script>