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