Yansen 2 년 전
부모
커밋
6a12c858de
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      src/pages/org/components/issue-info/index.jsx

+ 2
- 0
src/pages/org/components/issue-info/index.jsx 파일 보기

@@ -3,12 +3,14 @@ import Taro from '@tarojs/taro';
3 3
 import { View } from '@tarojs/components';
4 4
 import { Cell, CellGroup, Field, Button } from '@antmjs/vantui';
5 5
 import Uploader from '@/components/Uploader/index';
6
+import Map from '@/components/map';
6 7
 import { getDtStr } from '@/utils/date';
7 8
 
8 9
 export default (props) => {
9 10
   const { issue } = props;
10 11
   return (
11 12
     <>
13
+      <Map location={issue?.location} readOnly />
12 14
       <CellGroup>
13 15
         <Cell title="上报时间" value={getDtStr(issue?.createDate)} />
14 16
         <Cell title="办结时间" value={issue?.expireDate} />