李志伟 3 年之前
父節點
當前提交
9064be4096
共有 1 個檔案被更改,包括 6 行新增7 行删除
  1. 6
    7
      src/pages/RandomItinerary/ResultOver/index.jsx

+ 6
- 7
src/pages/RandomItinerary/ResultOver/index.jsx 查看文件

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