Yansen 2 lat temu
rodzic
commit
6a12c858de
1 zmienionych plików z 2 dodań i 0 usunięć
  1. 2
    0
      src/pages/org/components/issue-info/index.jsx

+ 2
- 0
src/pages/org/components/issue-info/index.jsx Wyświetl plik

@@ -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} />