22 lines
435 B
Python
22 lines
435 B
Python
# -*- coding: utf-8 -*-
|
||
"""
|
||
新建会话状态
|
||
"""
|
||
import reflex as rx
|
||
|
||
|
||
class CreateConversationState(rx.State):
|
||
"""
|
||
新建会话状态
|
||
"""
|
||
|
||
# 新建会话模态窗打开状态,True表示打开,False表示关闭
|
||
is_modal_open: bool = False
|
||
|
||
@rx.event
|
||
def toggle_modal(self) -> None:
|
||
"""
|
||
打开/关闭新建会话模态窗
|
||
"""
|
||
self.is_modal_open = not self.is_modal_open
|