diff --git a/crypto_monitor_binance/app.py b/crypto_monitor_binance/app.py index 591dea3..ce07237 100644 --- a/crypto_monitor_binance/app.py +++ b/crypto_monitor_binance/app.py @@ -8896,6 +8896,7 @@ def api_reviews(): _REPO_STATIC_DIR = os.path.join(os.path.dirname(BASE_DIR), "static") _AI_REVIEW_RENDER_JS = os.path.join(_REPO_STATIC_DIR, "ai_review_render.js") _FORM_SUBMIT_GUARD_JS = os.path.join(_REPO_STATIC_DIR, "form_submit_guard.js") +_MANUAL_ORDER_RR_PREVIEW_JS = os.path.join(_REPO_STATIC_DIR, "manual_order_rr_preview.js") @app.route("/static/ai_review_render.js") @@ -8912,6 +8913,13 @@ def static_form_submit_guard_js(): return send_file(_FORM_SUBMIT_GUARD_JS, mimetype="application/javascript; charset=utf-8") +@app.route("/static/manual_order_rr_preview.js") +def static_manual_order_rr_preview_js(): + if not os.path.isfile(_MANUAL_ORDER_RR_PREVIEW_JS): + return Response("not found", status=404, mimetype="text/plain; charset=utf-8") + return send_file(_MANUAL_ORDER_RR_PREVIEW_JS, mimetype="application/javascript; charset=utf-8") + + @app.route("/export/review_md/") @login_required def export_review_md(rid): diff --git a/crypto_monitor_binance/templates/index.html b/crypto_monitor_binance/templates/index.html index f467954..27cfe1e 100644 --- a/crypto_monitor_binance/templates/index.html +++ b/crypto_monitor_binance/templates/index.html @@ -396,7 +396,7 @@ - 预估盈亏比:— + @@ -823,7 +823,7 @@ - + - + - + - +