【调度系统】广东民航医疗快线调度系统源代码
wlzboy
2025-09-06 2decf5219e3476e30095fd9dbf6e49c55e105563
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
<!-- end content / left -->
<!--#include virtual="/inc/menu.gds"-->
<div id="left">
    <div id="menu">
        <h6 id="h-menu-1"<%if h_menu1="1" then Response.Write  " class=""selected"""%>><a href="#1"><span>基础资料</span></a></h6>
        <ul id="menu-1" class="<%if h_menu1="1" then%>opened<%else%>closed<%end if%>">
            <%if isDepartment("0601")=1 then%><li><a href="AdminUser_Department.gds?h_menu1=1">部门管理</a></li><%end if%>
            <%if isDepartment("060203")=1 then%>
            <li class="collapsible last">
                <a href="/AdminUser_List.gds?departmentID=13&h_menu1_1=1" class="plus">员工管理</a>
                <ul class="<%if session("h_menu1_1")="1" then%>expanded<%else%>collapsed<%end if%>" id="LeftDepartmentList"></ul>
                <script LANGUAGE="javascript">
                $.ajax({
                    type: "POST",  
                    url: "/AdminUser_Department_json.php",
                    dataType: 'json',
                    beforeSend: function() {},
                    success: function(data) {
                        var OADepartmentList="";
                        for (i = 0; i < data.length; i++) {
                             //console.log(data[i].name);
                             MenuLevel="";
                             for(x=0;x<data[i].level;x++) {MenuLevel=MenuLevel+"--";}
                             OADepartmentList=OADepartmentList+"<li style='background: #88528b;'><a href='/AdminUser_List.gds?departmentID="+data[i].id+"&h_menu1_1=1'  style='margin: 0 0 0 13px;'>"+MenuLevel+data[i].name+"</a></li>"
                        } 
                        document.getElementById("LeftDepartmentList").innerHTML=OADepartmentList;
                    }
                })
                </script>
            </li>
            <%ElseIf isDepartment("0602")=1 then%>
            <li class="last"><a href="/AdminUser_List.gds?departmentID=<%=session("adminDepartmentID")%>">部门员工</a></li>
            <%end if%>
            <%if isDepartment("0603")=1 then%>
            <li class="collapsible last">
                <a href="/AdminUser_Schedules.gds?CompetencyID=3&h_menu1_1=1" class="plus">排班管理</a>
                <ul class="<%if session("h_menu1_1")="1" then%>expanded<%else%>collapsed<%end if%>">
                    <%If isDepartment("060301")=1 then%><li><a href="/AdminUser_Schedules.gds?CompetencyID=3&h_menu1_1=1">医生排班</a></li><%End if%>
                    <%If isDepartment("060302")=1 then%><li><a href="/AdminUser_Schedules.gds?CompetencyID=4&h_menu1_1=1">护士排班</a></li><%End if%>
                    <%If isDepartment("060303")=1 then%><li><a href="/AdminUser_Schedules.gds?CompetencyID=2&h_menu1_1=1">司机排班</a></li><%End if%>
                </ul>
            </li>
            <%end if%>
            <%If isDepartment("0604")=1 then%>
            <li class="last"><a href="/HospData.gds?h_menu1=1">医院名录</a></li>
            <%end if%>
            <%If isDepartment("0605")=1 then%>
            <li class="last"><a href="/IntroducerData.gds?h_menu1=1">介绍人名录</a></li>
            <%end if%>
            <%If isDepartment("0606")=1 then%>
            <li class="last"><a href="/IntroducerUnitData.gds?h_menu1=1">合作公司名录</a></li>
            <%end if%>
            <%if isDepartment("0607")=1 then%><li class="last"><a href="/BranchUnitData.gds?h_menu1=1">分公司名录</a></li><%End if%>
            <%If isDepartment("0604")=1 then%>
            <li class="last"><a href="/ICD10.php">诊断情况标签</a></li>
            <%end if%>
            <%If isDepartment("0604")=1 then%>
            <li class="last"><a href="/HospitalDepartment.php">医院科室</a></li>
            <%end if%>
            <%If isDepartment("0608")=1 then%><li class="last"><a href="/OrderPriceSetUPv2.gds">自动报价设定 </a></li><%end if%>
        </ul>
    </div>
</div>
<!-- end content / left -->