feat:添加fz页面

This commit is contained in:
2024-05-23 15:53:32 +08:00
parent 440f1a10d7
commit 398f729991
2 changed files with 55 additions and 0 deletions

View File

@@ -17,6 +17,10 @@ def showTable():
data = db.fz_data.LoadFzData()
return render_template("tables.html", data=data)
@page_bp.route("/fz", methods=["GET"])
def fz():
data = db.fz_data.LoadFzData()
return render_template("fz.html", data=data)
@page_bp.route("/", methods=["GET"])
def index():