cloud.js
1.34 KB
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
function submitForm() {
if (dialogHtml == '') {
dialogHtml = $('siteInfo').innerHTML;
$('siteInfo').innerHTML = '';
}
showWindow('open_cloud', dialogHtml, 'html');
$('fwin_open_cloud').style.top = '80px';
$('cloud_api_ip').value = cloudApiIp;
return false;
}
function dealHandle(msg) {
getMsg = true;
if (msg['status'] == 'error') {
$('loadinginner').innerHTML = '<font color="red">' + msg['content'] + '</font>';
return;
}
$('loading').style.display = 'none';
$('mainArea').style.display = '';
if(cloudStatus == 'upgrade') {
$('title').innerHTML = msg['cloudIntroduction']['upgrade_title'];
$('msg').innerHTML = msg['cloudIntroduction']['upgrade_content'];
} else {
$('title').innerHTML = msg['cloudIntroduction']['open_title'];
$('msg').innerHTML = msg['cloudIntroduction']['open_content'];
}
if (msg['navSteps']) {
$('nav_steps').innerHTML = msg['navSteps'];
}
if (msg['protocalUrl']) {
$('protocal_url').href = msg['protocalUrl'];
}
if (msg['cloudApiIp']) {
cloudApiIp = msg['cloudApiIp'];
}
if (msg['manyouUpdateTips']) {
$('manyou_update_tips').innerHTML = msg['manyouUpdateTips'];
}
}
function expiration() {
if(!getMsg) {
$('loadinginner').innerHTML = '<font color="red">' + expirationText + '</font>';
clearTimeout(expirationTimeout);
}
}