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