优化UI模块和资源推荐功能

Made-with: Cursor
This commit is contained in:
刘国栋
2026-04-30 23:35:06 +08:00
parent fb309299bf
commit 86abeeb5cc
14 changed files with 737 additions and 513 deletions
+2 -2
View File
@@ -92,7 +92,7 @@ def render_tab_autowrite(
keywords_to_generate = []
if mode == "单篇生成":
col1, col2 = st.columns([2, 1])
col1, col2 = st.columns(2)
with col1:
selected_keyword = st.selectbox(
"选择关键词",
@@ -110,7 +110,7 @@ def render_tab_autowrite(
if selected_keyword:
keywords_to_generate = [(selected_keyword, platform)]
else:
col1, col2 = st.columns([3, 1])
col1, col2 = st.columns(2)
with col1:
selected_keywords = st.multiselect(
"选择关键词(可多选)",