fangmingyue 2 년 전
부모
커밋
2e2a39c03f
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1
    1
      src/components/map/index.jsx
  2. 3
    3
      src/pages/check/edit/components/LocForm.jsx

+ 1
- 1
src/components/map/index.jsx 파일 보기

@@ -48,7 +48,7 @@ export default (props) => {
48 48
       })
49 49
     });
50 50
   }, []);
51
-
51
+  // console.log('markers latitude', mks)
52 52
   React.useEffect(() => {
53 53
     if (!location && !currentPos) return;
54 54
 

+ 3
- 3
src/pages/check/edit/components/LocForm.jsx 파일 보기

@@ -1,7 +1,7 @@
1 1
 import React from 'react';
2 2
 import Taro from '@tarojs/taro';
3
-import { View } from '@tarojs/components';
4
-import { CellGroup, Cell, Field, RadioGroup, Radio } from '@antmjs/vantui';
3
+import { View, CoverView } from '@tarojs/components';
4
+import { CellGroup, Cell, Field, RadioGroup, Radio, Icon } from '@antmjs/vantui';
5 5
 import Map from '@/components/map';
6 6
 import { getTaCheckItemAnswer } from '@/services/tacheckitem';
7 7
 import mapIcon from '@/assets/icons/marker.png';
@@ -102,6 +102,6 @@ export default (props) => {
102 102
           </CellGroup>
103 103
         )
104 104
       }
105
-    </View>
105
+    </View >
106 106
   )
107 107
 }