document.writeln("
");
document.writeln("");
var pagePath = $("meta[name='_ctx']").attr("content");
pagePath = pagePath.substring(0, pagePath.length - 1);
$(function () {
$(".take-btn").on("click",function () {
if($(this).hasClass("active")){
$(this).removeClass("active");
$(".j-take-box").slideUp(200);
$(this).text("展开")
}
else {
$(this).addClass("active");
$(".j-take-box").slideDown(200);
$(this).text("收起")
}
});
$(".backTop").on("click",function () {
$("html,body").animate({scrollTop:0},"slow");
});
$(".j-take-box .waiting").on("click", function () {
var dataVal = $(this).attr('checkData');
$(".tips-content").removeClass("appCodestyle")
$(".tips-popup").show();
if(dataVal == 'feedback') {
$("#popupCentent").html('')
}
else if(dataVal == 'complaints') {
$("#popupCentent").html('')
}
else if(dataVal == 'appcode') {
$("#popupCentent").html('\n' +
'
\n' +
'

\n' +
'
安卓版
\n' +
'
\n' +
'
\n' +
'

\n' +
'
ios版
\n' +
'
\n' +
'
')
$(".tips-content").addClass("appCodestyle")
}
else if(dataVal == 'files') {
$("#popupCentent").html('')
}
else {
$("#popupCentent").html('敬请期待……')
}
});
$(".tipsclose").on("click", function () {
$(".tips-popup").hide();
});
});