From c48e51f6e48f9eb4b3bbe1499e8185c253222085 Mon Sep 17 00:00:00 2001 From: lixin Date: Mon, 14 Aug 2023 16:38:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8E=E7=AB=AF:=E8=BF=81=E7=A7=BB=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/index.py b/index.py index bcb8d61..487a710 100644 --- a/index.py +++ b/index.py @@ -241,6 +241,15 @@ def MT_export_migration_reports(): return Response(mod, content_type='application/json') +@app.route('/MT_migration', methods=['GET', 'POST']) +def MT_migration(): + """ + 跳转迁移中界面 + :return: + """ + return render_template('MT_migration.html') + + if __name__ == '__main__': app.config["JSON_AS_ASCII"] = False uos_sysmig_conf = json.loads(share.getSysMigConf()) -- Gitee