17 lines
594 B
Python
17 lines
594 B
Python
from nicegui import ui
|
|
|
|
|
|
def backHome():
|
|
"""返回首页"""
|
|
with ui.row().classes("items-center gap-2"):
|
|
ui.image("/assets/icon.ico").classes("w-8 h-8").props("fit=contain")
|
|
ui.label("尚城幼儿园成长报告助手").classes("text-xl font-bold")
|
|
|
|
with ui.row().classes("items-center gap-4"):
|
|
ui.label("By 寒寒 | 这里的每一份评语都充满爱意").classes(
|
|
"text-xs opacity-90"
|
|
)
|
|
ui.button(icon="home", on_click=lambda: ui.navigate.to("/")).props(
|
|
"flat round color=white"
|
|
).tooltip("回到首页")
|