完成新塔罗

This commit is contained in:
Dragon
2023-07-19 19:11:32 +08:00
parent 3f314a647b
commit cbbe553bf0
8 changed files with 406 additions and 40 deletions

View File

@@ -793,4 +793,13 @@ function networkRequest (reqObj = {}, type) {
const response = $.ajax(reqObj);
return response;
}
// 控制body是否可以滑动
function bodyScroolFun (bool) {
if (bool) {
$('body').css('overflow', 'hidden');
} else {
$('body').css('overflow', 'auto');
}
}