魏超 5 years ago
parent
commit
d81b9071ee

+ 1
- 1
src/pages/fundManagement/ConsumeOrder.jsx View File

175
                 <div style={{ paddingLeft: '36%' }}>
175
                 <div style={{ paddingLeft: '36%' }}>
176
                     <p>昵称:{personInfo.nickname || ''}</p>
176
                     <p>昵称:{personInfo.nickname || ''}</p>
177
                     <p>头像:<img src={personInfo.avatarurl || ''} className={styles.touxiang} /></p>
177
                     <p>头像:<img src={personInfo.avatarurl || ''} className={styles.touxiang} /></p>
178
-                    <p>姓名:{personInfo.name || ''}</p>
178
+                    <p>姓名:{personInfo.name || personInfo.nickname}</p>
179
                     <p>手机号:{personInfo.phone || ''}</p>
179
                     <p>手机号:{personInfo.phone || ''}</p>
180
                 </div>
180
                 </div>
181
 
181
 

+ 0
- 1
src/pages/fundManagement/RefundOrder.jsx View File

24
     const [refundVisible, setRefundVisible] = useState(false)
24
     const [refundVisible, setRefundVisible] = useState(false)
25
     const [inputValue, setValue] = useState('')
25
     const [inputValue, setValue] = useState('')
26
     const [swiperList, setSwiperList] = useState([])
26
     const [swiperList, setSwiperList] = useState([])
27
-    console.log(props, "propspropspropspropspropsprops")
28
 
27
 
29
     const orgId = props.orgId || ''
28
     const orgId = props.orgId || ''
30
 
29