home.html
4.5 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
<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">
<h2 style="text-indent: 35px;margin: 10px 0 5px;">2020-07-30 更新说明 Changelog</h2>
<br><br>
<ul >
<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 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>
<li><span class="label s_c_change">新增</span>5、与服务热线系统对接,可在线调页填写服务投诉信息</li>
<li class="sub_title"><h6>计调</h6></li>
<li><span class="label s_c_change">新增</span>1、人员停用在home.html做弹出框,后台获取当前用户权限下的线路人员配置停用信息</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>
<li><span class="label s_c_change">新增</span>5、添加车辆同步接口web服务</li>
<li><span class="label s_c_change">新增</span>6、调度执勤日报修改人员,车辆时,初始会修改已有车辆人员配置(如套跑某个班次的车辆不一样,初始时会修改)</li>
<li><span class="label s_c_change">修改</span>7、排班明细修改班次时,修改去除工号的前缀</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>
</ul>
</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>