李志伟 3 years ago
parent
commit
9064be4096
1 changed files with 6 additions and 7 deletions
  1. 6
    7
      src/pages/RandomItinerary/ResultOver/index.jsx

+ 6
- 7
src/pages/RandomItinerary/ResultOver/index.jsx View File

1
 import Taro, { useShareAppMessage } from "@tarojs/taro"
1
 import Taro, { useShareAppMessage } from "@tarojs/taro"
2
-import { Text, View, Button } from "@tarojs/components"
2
+import { Text, View, Button,Image } from "@tarojs/components"
3
 import { useEffect, useState } from "react"
3
 import { useEffect, useState } from "react"
4
-
5
 import CustomNav from '@/components/CustomNav'
4
 import CustomNav from '@/components/CustomNav'
6
 import withLayout from '@/layouts'
5
 import withLayout from '@/layouts'
7
 import { getTravelDestiny } from "@/services/travel"
6
 import { getTravelDestiny } from "@/services/travel"
37
 
36
 
38
 
37
 
39
   return (
38
   return (
40
-    <view className='page-index'>
41
-      <view className='index-navbar'>
39
+    <View className='page-index'>
40
+      <View className='index-navbar'>
42
         <CustomNav title='命定行程' />
41
         <CustomNav title='命定行程' />
43
-      </view>
42
+      </View>
44
       <View className='index-container' >
43
       <View className='index-container' >
45
         <scroll-view scrollY style='height: 100%;margin-bottom: 40px;' >
44
         <scroll-view scrollY style='height: 100%;margin-bottom: 40px;' >
46
           <View className='Over-box'>
45
           <View className='Over-box'>
47
             <View className='Over-index-box' >
46
             <View className='Over-index-box' >
48
-              <image className='OI-image' src={ShowOver} />
47
+              <Image className='OI-image' src={ShowOver} />
49
               <View className='OI-text-box'>
48
               <View className='OI-text-box'>
50
                 <Text className='OI-text'>
49
                 <Text className='OI-text'>
51
                   整体运势或有起伏的情况,需要做好各方面的平衡避免有故此彼伏的情况。 你要学会自己衡量得失利弊,但时间不够用的时候就要面临个人的抉择。
50
                   整体运势或有起伏的情况,需要做好各方面的平衡避免有故此彼伏的情况。 你要学会自己衡量得失利弊,但时间不够用的时候就要面临个人的抉择。
70
           </View>
69
           </View>
71
         </scroll-view>
70
         </scroll-view>
72
       </View>
71
       </View>
73
-    </view >
72
+    </View >
74
   )
73
   )
75
 })
74
 })