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