Yansen 2 년 전
부모
커밋
4ca14207a6
3개의 변경된 파일10개의 추가작업 그리고 5개의 파일을 삭제
  1. 1
    0
      src/pages/apply/components/Issue.jsx
  2. 1
    1
      src/pages/apply/verify/index.jsx
  3. 8
    4
      src/pages/issue/components/Issue/index.jsx

+ 1
- 0
src/pages/apply/components/Issue.jsx 파일 보기

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

+ 1
- 1
src/pages/apply/verify/index.jsx 파일 보기

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

+ 8
- 4
src/pages/issue/components/Issue/index.jsx 파일 보기

@@ -161,10 +161,14 @@ export default (props) => {
161 161
       />
162 162
 
163 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 172
         <Cell
169 173
           title="点位"
170 174
           isLink={!readOnly}