李志伟 2 years ago
parent
commit
eda848cb9c
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      src/pages/examine/detail.jsx

+ 4
- 2
src/pages/examine/detail.jsx View File

@@ -157,11 +157,13 @@ export default (props) => {
157 157
                 : application.payStatus === 1
158 158
                   ? '支付中'
159 159
                   : application.payStatus === 2
160
-                    ? '已支付' : ''
160
+                    ? '已支付' :
161
+                    application.payStatus === 3
162
+                      ? '已退款' : ''
161 163
             }
162 164
           </FormItem>
163 165
           <FormItem label="审核意见">
164
-            <Radio.Group onChange={e =>{if(application.verifyStatus==0)SetExamineType(e.target.value)}} value={examineType}>
166
+            <Radio.Group onChange={e => { if (application.verifyStatus == 0) SetExamineType(e.target.value) }} value={examineType}>
165 167
               <Radio value={1}>同意</Radio>
166 168
               <Radio value={2}>拒绝</Radio>
167 169
             </Radio.Group>