1234567891011121314151617181920212223242526272829303132333435363738 |
- import Taro from "@tarojs/taro"
- import { Text, View } from "@tarojs/components"
- import { useEffect, useState } from "react"
-
- import './style.less'
-
-
- export default (props) => {
- const { ico, textNext } = props
- const ShowOver = 'https://yz-shigongli.oss-cn-shanghai.aliyuncs.com/images/RandomIIcon/ShowOver.png'
-
-
-
-
- return (
- <View className='Over-box'>
-
- <View className='Over-index-box' >
- <image className='OI-image' src={ShowOver} />
- <View className='OI-text-box'>
- <Text className='OI-text'>
- 整体运势或有起伏的情况,需要做好各方面的平衡避免有故此彼伏的情况。 你要学会自己衡量得失利弊,但时间不够用的时候就要面临个人的
- </Text>
- <Text className='OI-text'>
- 未必就是走的人多的路就是对,你可以保持自己的想法。
- </Text>
- <Text className='OI-text'>
- 南京对于你而言是梦想中的地方,你的命定行程适合阳光、梦幻的地方。结合你的回答你的命定行程如下:
- </Text>
- <View className='bottom-text'>》</View>
- </View>
-
- </View>
- <View className='content'>分享并邀请好友点开查看完整命定行程</View>
- </View>
-
- )
- }
|