supportGuide_frm.html
5.07 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
<title>support</title>
<link rel="stylesheet" type="text/css" href="../../css/api.css"/>
<link rel="stylesheet" type="text/css" href="../../css/aui.css"/>
<link rel="stylesheet" type="text/css" href="../../css/mine/mine.css"/>
<link rel="stylesheet" type="text/css" href="../../css/aui-flex.css" />
<link rel="stylesheet" type="text/css" href="../../css/utils/guide.css"/>
<style>
html,
body{
background:#F4F6F9;
}
</style>
</head>
<body>
<div class="person-center-list-panel">
<div class="inside-person-center-list-panel">
<div class="btn-click" tapmode onclick="call('400-168-5555');">
<div class="aui-row aui-row-flex padding-top-21">
<div class="aui-col aui-col-span-13 aui-row-flex-start">
<span class="measure-obj">服务热线</span>
</div>
<div class="aui-col aui-col-span-9 aui-row-flex-end">
<span class="measure-obj">400-168-5555</span>
</div>
<div class="aui-col aui-col-span-2 aui-row-flex-end">
<img src="../../image/to-go.png" style="width:18px;height:18px;margin-top:0.2rem;" />
</div>
</div>
<div class="panel-line margin-top-21"></div>
</div>
<div class="btn-click" tapmode onclick="openQQ();">
<div class="aui-row aui-row-flex padding-top-21">
<div class="aui-col aui-col-span-13 aui-row-flex-start">
<span class="measure-obj">QQ咨询</span>
</div>
<div class="aui-col aui-col-span-9 aui-row-flex-end">
<span class="measure-obj">4001181178</span>
</div>
<div class="aui-col aui-col-span-2 aui-row-flex-end">
<img src="../../image/to-go.png" style="width:18px;height:18px;margin-top:0.2rem;" />
</div>
</div>
<div class="panel-line margin-top-21"></div>
</div>
<div class="btn-click" tapmode onclick="sendEmail('marketing@uccc.cc');">
<div class="aui-row aui-row-flex padding-top-21">
<div class="aui-col aui-col-span-13 aui-row-flex-start">
<span class="measure-obj">商务洽谈</span>
</div>
<div class="aui-col aui-col-span-9 aui-row-flex-end">
<span class="measure-obj">marketing@uccc.cc</span>
</div>
<div class="aui-col aui-col-span-2 aui-row-flex-end">
<img src="../../image/to-go.png" style="width:18px;height:18px;margin-top:0.2rem;" />
</div>
</div>
<div class="panel-line margin-top-21"></div>
</div>
<div>
<div class="aui-row aui-row-flex padding-top-21">
<div class="aui-col aui-col-span-8 aui-row-flex-start">
<span class="measure-obj">总部地址</span>
</div>
<div class="aui-col aui-col-span-16 aui-row-flex-end">
<span class="address-title">江苏省苏州市工业园区星湖街328号 创意产业园6-1001</span>
</div>
</div>
<div style="height:19px;"></div>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="../../script/api.js"></script>
<script type="text/javascript" src="../../script/common.js"></script>
<script type="text/javascript">
apiready = function(){
api.parseTapmode();
};
function sendEmail(email) {
api.mail({
recipients: [email],
subject: '罗电商务洽谈',
body: '罗电商务洽谈',
}, function(ret, err){
});
}
function call(phone) {
api.call({
type: 'tel_prompt',
number: phone
});
}
function openQQ() {
if(api.systemType == 'ios'){
api.openApp({
iosUrl: 'mqq://', //打开微信的,其中weixin为微信的URL Scheme
},function(ret, err) {
if(ret){
console.log(ret);
}else{
api.toast({
msg: '您未安装QQ或QQ不是标准版本!',
duration: 2000,
location: 'bottom'
});
}
});
}else {
api.openApp({
androidPkg: 'com.tencent.mobileqq',
mimeType: 'text/html',
uri: 'http://www.baidu.com'
},function(ret, err) {
if(ret){
console.log(ret);
}else{
// console.log(JSON.stringfy(err));
api.toast({
msg: '您未安装QQ或QQ不是标准版本!',
duration: 2000,
location: 'bottom'
});
}
});
}
}
</script>
</html>