chore: 全量提交(推广页、宣传册、社交资源、视频与后台同步)

Made-with: Cursor
This commit is contained in:
whm
2026-03-20 16:31:12 +08:00
parent 0360ee5261
commit 5067fb6f76
341 changed files with 5283 additions and 108 deletions

View File

@@ -1,18 +0,0 @@
/**
* 禁止调试模式及右键 - 全局安全模块
* 在页面加载时立即执行
*/
// 禁止右键
document.addEventListener('contextmenu', (e) => e.preventDefault())
// 禁止 F12、Ctrl+Shift+I/J/C 等开发者工具快捷键
document.addEventListener('keydown', (e) => {
if (
e.key === 'F12' ||
(e.ctrlKey && e.shiftKey && ['I', 'J', 'C'].includes(e.key.toUpperCase())) ||
(e.ctrlKey && e.key === 'U')
) {
e.preventDefault()
}
})