123456789101112131415161718192021222324252627 |
- import { View, Text } from "@tarojs/components";
- import WeComQRcode from "@/components/WeComQRcode";
- export const WelcomeCard = () => {
- return (
- <View>
- <View className="font-medium text-black leading-28 mb-4 text-14">
- Hi~我是你的 AI 小助手!
- </View>
- <View className="font-normal text-[#414A64] leading-24 text-12 whitespace-normal pb-12">请将资料发送到我的企业微信,我会自动为你解析内容,并同步到这里。</View>
- <WeComQRcode />
- </View>
- );
- };
- export const AddSuccessfulTips = () => {
- return (
- <View>
- <Text>
- {` 🎉 添加成功!
- 你已成功添加 AI 企业微信助手,快将资料发送给它,让知识自动上传到你的智能体吧~
- `}
- </Text>
- <View className="button-rounded button-primary mb-8">前往发送</View>
- </View>
- );
- };
|