cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
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
<!doctype html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>配置修改</title>
 
 
[#include "/business/pages/include/static.html" /]
</head>
 
<body >
<div class="fs_main clearfix">
</div>
<div class="fs_navtitle have_margin" id="">
    <div class="fs_navtitle_con common_list">
        <h3 class="common_list_btn_title">配置修改</h3>
    </div>
</div>
<div class="fs_main clearfix">
    <div id="changeDevice">
    </div>
</div>
 
<script type="text/javascript">
 
 
var projectId = '${projectId}';
var flowId = '${flowId}';
var tempId = '${tempId}';
 
 
//查询该变更流程下变更中的配置
function changeDevice() {
    loading($("#changeDevice"));
    $.post("${base}/business/pages/change/viewchangeDevice.html",{"flowId":flowId},function(data,textStatus) {
        loaded($("#changeDevice"));
        $("#changeDevice").html(data);
    })
}
 
function updateCi(tempId) {
    window.top.openDialog("ConfigEditIndex","配置信息",
                         {},
                         {"width":70,"height":80},
                         [],
                         "${base}/business/pages/change/viewchangeMsg.html?tempId="+tempId+"&flowId="+flowId);
}
 
function changerecord(tempId,ci_Id,flowId) {
    window.top.openDialog("updateCi","配置修改记录",
                         {},
                         {"width":70,"height":80},
                         [],
                         "${base}/business/pages/change/viewchangerecord.html?tempId="+tempId+"&ci_Id="+ci_Id+"&flowId="+flowId);
}
 
 
$(function() {
    changeDevice();
})
</script>
 
</body>
</html>