You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
620 B
21 lines
620 B
from dash import dcc, html
|
|
import feffery_antd_components as fac
|
|
|
|
import callbacks.system_c.dasset_c
|
|
from api.dasset import get_dasset_list_api
|
|
from utils.tree_tool import list_to_tree
|
|
|
|
|
|
def render(*args, **kwargs):
|
|
print ("进入服务")
|
|
return html.Div([
|
|
html.Iframe(
|
|
src="http://47.121.223.233/chat/share?shared_id=ragflow-hjYWQwODg2NzY4OTExZWZhMzVhMDI0Mm",
|
|
style={
|
|
"width": "100%",
|
|
"height": "100%",
|
|
"min-height": "750px",
|
|
"border": "none" # 这里设置 iframe 的边框为 none
|
|
}
|
|
)
|
|
])
|
|
|