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