-
Notifications
You must be signed in to change notification settings - Fork 0
/
fb_choose.html
65 lines (60 loc) · 1.57 KB
/
fb_choose.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title></title>
<script src="js/mui.min.js"></script>
<link href="css/mui.min.css" rel="stylesheet" />
<link href="css/app.css" rel="stylesheet" />
</head>
<body>
<header class="mui-bar mui-bar-nav">
<a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
<h1 class="mui-title">发布作品</h1>
</header>
<div style="height: 50px;"></div>
<div class="choose1">
<img id="choose1" src="images/choose1.png" />
</div>
<div class="choose1">
<img id="choose2" src="images/choose2.png" />
</div>
</body>
<script type="text/javascript" src="js/app.js"></script>
<script>
mui.init();
//获取登录信息
var state = app.getState();
var choose1o = document.getElementById("choose1");
var choose2o = document.getElementById("choose2");
choose1o.addEventListener("tap", function() {
if(state.token) {
mui.openWindow({
url: 'release.html',
extras: {
odailyid: '',
type: '3',
webvie: 'community.html'
}
})
} else {
plus.nativeUI.toast("请登录");
}
});
choose2o.addEventListener("tap", function() {
if(state.token) {
mui.openWindow({
url: 'release.html',
extras: {
odailyid: '',
type: '10',
webvie: 'community.html'
}
})
} else {
plus.nativeUI.toast("请登录");
}
});
</script>
</html>