welcome.js
951 Bytes
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
//欢迎信息
layer.config({
extend: ['extend/layer.ext.js', 'skin/moon/style.css'],
skin: 'layer-ext-moon'
});
layer.ready(function () {
var html = $('#welcome-template').html();
$('a.viewlog').click(function () {
logs();
return false;
});
$('#pay-qrcode').click(function(){
var html=$(this).html();
parent.layer.open({
title: false,
type: 1,
closeBtn:false,
shadeClose:true,
area: ['600px', 'auto'],
content: html
});
});
function logs() {
parent.layer.open({
title: '初见倾心,再见动情',
type: 1,
area: ['700px', 'auto'],
content: html,
btn: ['确定', '取消']
});
}
console.log('欢迎使用H+,如果您在使用的过程中有碰到问题,可以参考开发文档,感谢您的支持。');
});