Yansen 2 年前
父节点
当前提交
4ca14207a6

+ 1
- 0
src/pages/apply/components/Issue.jsx 查看文件

32
   return (
32
   return (
33
     <>
33
     <>
34
       <CellGroup>
34
       <CellGroup>
35
+        <Cell title="ID" value={issue?.issueId} />
35
         <Cell title="上报时间" value={getDtStr(issue?.createDate)} />
36
         <Cell title="上报时间" value={getDtStr(issue?.createDate)} />
36
         <Cell title="办结时间" value={issue?.expireDate} />
37
         <Cell title="办结时间" value={issue?.expireDate} />
37
         <Cell title="交办次数" value={issue?.processNum || 0} />
38
         <Cell title="交办次数" value={issue?.processNum || 0} />

+ 1
- 1
src/pages/apply/verify/index.jsx 查看文件

7
 import { putTaIssueApply, getTaIssueApplyById } from '@/services/taissueapply';
7
 import { putTaIssueApply, getTaIssueApplyById } from '@/services/taissueapply';
8
 import { warn } from '@/utils/message';
8
 import { warn } from '@/utils/message';
9
 import { APPLY_PASS, APPLY_REJECT, PROCESS_APPLY_DELAY, PROCESS_APPLY_REJECT } from '@/utils/biz';
9
 import { APPLY_PASS, APPLY_REJECT, PROCESS_APPLY_DELAY, PROCESS_APPLY_REJECT } from '@/utils/biz';
10
+import { getTaOrgIssueByIssueId } from '@/services/taorgissue';
10
 import Issue from '../components/Issue';
11
 import Issue from '../components/Issue';
11
 import useTitle from '../useTitle';
12
 import useTitle from '../useTitle';
12
-import { getTaOrgIssueByIssueId } from '@/services/taorgissue';
13
 
13
 
14
 // const today = new Date();
14
 // const today = new Date();
15
 export default (props) => {
15
 export default (props) => {

+ 8
- 4
src/pages/issue/components/Issue/index.jsx 查看文件

161
       />
161
       />
162
 
162
 
163
       <CellGroup>
163
       <CellGroup>
164
-        <Cell
165
-          title="ID"
166
-          value={formData.issueId}
167
-        />
164
+        {
165
+          issue?.issueId && (
166
+            <Cell
167
+              title="ID"
168
+              value={issue.issueId}
169
+            />
170
+          )
171
+        }
168
         <Cell
172
         <Cell
169
           title="点位"
173
           title="点位"
170
           isLink={!readOnly}
174
           isLink={!readOnly}