forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-09-15 e4a0fd2497ccbcbb6a9806fd147e8bf366215d15
gz-customerSystem/src/views/register/matterDetail/NewFileCheck.jsx
@@ -120,10 +120,10 @@
                  {props.menuList?.map(item => {
                     return <SubMenu
                        key={item.id}
                        title={item.ownerTypeName + `(${item.fileInfoList && item.fileInfoList.length || 0})`}
                        title={item.ownerTypeName + `(${item.fileList && item.fileList.length || 0})`}
                     >
                        {item.fileInfoList?.map(res => {
                           return <MenuItem key={res.id} onClick={() => { clickItem(res) }}>{res.trueName}</MenuItem>
                        {item.fileList?.map(res => {
                           return <MenuItem key={res.id} onClick={() => { clickItem(res) }}>{res.name}</MenuItem>
                        })}
                     </SubMenu>
                  })}
@@ -133,7 +133,7 @@
               {
                  itemData ? <Fragment>
                     <div style={{ background: '#e8f3ff', color: '#1A6FB8', padding: '5px 10px', marginBottom: '16px' }}>
                        <span>材料名称:{itemData.trueName}</span>&nbsp;&nbsp;|&nbsp;&nbsp;
                        <span>材料名称:{itemData.name}</span>&nbsp;&nbsp;|&nbsp;&nbsp;
                        <span>上传时间:{itemData.updateTime}</span>&nbsp;&nbsp;|&nbsp;&nbsp;
                        <span>上传人:{itemData.uploaderName} {itemData.uploaderType && <span>({peopleTypeMap[itemData.uploaderType]})</span>}</span>
                     </div>