Initial qiwei secondary development handoff

This commit is contained in:
2026-06-23 21:11:20 +08:00
commit 858cb68f4f
207 changed files with 52782 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<title>清除本地存储</title>
</head>
<body>
<h1>正在清除本地存储...</h1>
<script>
localStorage.clear();
document.body.innerHTML = '<h1>本地存储已清除!请刷新主页面</h1>';
setTimeout(() => {
window.close();
}, 2000);
</script>
</body>
</html>