style: 优化页面样式和布局,提升用户体验

This commit is contained in:
2025-07-10 23:50:19 +08:00
parent f2c51f45b6
commit d0f9e65ad1
6 changed files with 644 additions and 115 deletions

View File

@@ -1,7 +1,7 @@
import app_conf
import db.util
import db.file, file
from flask import *
from flask import Flask
from router.api_Img import api_Img_bp
from router.page import page_bp
@@ -28,6 +28,6 @@ if __name__ == "__main__":
app.run(
debug=conf.getboolean("server", "debug"),
host=conf.get("server", "host"),
port=conf.get("server", "port"),
port=int(conf.get("server", "port")),
threaded=conf.getboolean("server", "threaded"),
)