You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
653 B
38 lines
653 B
//欢迎信息
|
|
|
|
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: ['确定', '取消']
|
|
});
|
|
}
|
|
|
|
});
|