-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.html
50 lines (46 loc) · 2.19 KB
/
graph.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
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html style="height: 100%">
<head>
<meta charset="utf-8">
</head>
<body style="margin: 0">
<div id="app">
<div id="container" style="width: 100vw; height: 100vh"></div>
<div>
<Modal v-model="showGraphEditView" title="模型编辑" :mask-closable="false" @on-cancel="exitEdit()">
<graph-edit-view v-if="showGraphEditView"></graph-edit-view>
<div slot="footer"></div>
</Modal>
<Modal v-model="loginModel.showLogin" title="登录" :mask-closable="false">
<i-form :model="loginModel.user" inline>
<form-item prop="username">
<i-input type="text" v-model="loginModel.user.username" placeholder="Username">
<Icon type="ios-person-outline" slot="prepend"></Icon>
</i-input>
</form-item>
<form-item prop="password">
<i-input type="password" v-model="loginModel.user.password" placeholder="Password">
<Icon type="ios-lock-outline" slot="prepend"></Icon>
</i-input>
</form-item>
<form-item>
<i-button type="primary" @click="login()">Signin</Button>
</form-item>
</i-form>
<div slot="footer"></div>
</Modal>
</div>
</div>
<script type="text/javascript" src="js/echarts.min.js"></script>
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/vue.min.js"></script>
<script type="text/javascript" src="js/iview.min.js"></script>
<script type="text/javascript" src="js/axios.min.js"></script>
<script type="text/javascript" src="app/api.js"></script>
<script type="text/javascript" src="app/config.js"></script>
<script type="text/javascript" src="app/graphEditView.js"></script>
<script type="text/javascript" src="app/businessMap.js"></script>
<link type="text/css" rel="stylesheet" href="js/iview.css"/>
<link type="text/css" rel="stylesheet" href="index.css"/>
</body>
</html>