import { Text, View } from "@tarojs/components"; import IconPlusBig from "@/components/icon/icon-plus-big"; import Popup from "@/components/popup/popup"; import { useState } from "react"; import ScrollListChat from "./components/ScrollListChat"; import ScrollList from './components/ScrollList'; import WeComQRcode from '@/components/WeComQRcode' import StyleFilter, {TListStyle} from '../StyleFilter' const Index = () => { const [showAiAsistant, setShowAiAsistant] = useState(false); const [listStyle, setListStyle] = useState("chat"); const [totalCount, setTotalCount] = useState(0); const [assistantOnly, setAssistantOnly] = useState(false); const handleShowAsistantTip = () => { setShowAiAsistant(true) }; return ( <> 共 {totalCount} 个文件 {listStyle === "chat" ? : } 请将资料发送到我的企业微信,我会自动为你解析内容,并同步到这里。 ); }; export default Index;