-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 1.99 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>crm7</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="src/lib/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="src/assets/css/main.css">
<link rel="stylesheet" href="src/assets/css/base.css">
<!--<base href="http://localhost:63342/angularSapMultiTabs/">-->
</head>
<!--<body ng-controller="testCtrl" bs-loading-overlay="overlay-div" bs-loading-overlay-delay="500">-->
<body>
<div style="width:100%;height:100%;position: absolute;z-index:999;background: white;" ng-hide="overlay">
<img src="src/assets/images/loading alpha.gif" style="position: absolute; top: 350px; left: 45%;"/>
</div>
<div style="width:100%;height:100%;position: fixed;z-index:998;background: rgba(0, 0, 0, 0.51);" ng-if="lockSys" ng-controller="testCtrl">
<div class="form-group col-sm-offset-2 col-sm-8 pl0" style="position:absolute;margin-top:300px;">
<div class="col-sm-offset-1 col-sm-6">
<input type="password" class="form-control unlockPswInput" placeholder="请输入密码" ng-model="paramValue" ng-keyup="hotEnterKey(paramValue,$event)">
</div>
<div class="col-sm-2 pl10 pr0">
<button class="btn btn-primary unlockSystemBtn" ng-click="clearLock(paramValue)">解锁系统</button>
</div>
<div class="col-sm-2 pl10 pr0">
<button class="btn btn-primary exitSystemBtn" ng-click="logoutSystem()">退出系统</button>
</div>
</div>
</div>
<div style="width:100%;height:100%;position: absolute;z-index:98;background: rgba(0, 0, 0, 0.51);" ng-if="backGroud"></div>
<div ui-view style="height: 100%;overflow-y: auto;" id="ui-view">
</div>
<script data-main="src/config.js" src="src/lib/require.min.js"></script>
<!--
<script data-main="src/config-dev.js" src="src/lib/require.js"></script>
-->
</body>
</html>