|
@@ -29,10 +29,11 @@ type Props = {
|
|
|
accept?: string;
|
|
|
// result:成果 | list:清单
|
|
|
type?: string;
|
|
|
+ tips?: string;
|
|
|
};
|
|
|
|
|
|
function Z3upFiles(
|
|
|
- { max, isLook, type="doc", fileCheck, dirCode, myUrl, fromData, lookData, accept=".zip" }: Props,
|
|
|
+ { max, isLook, type="doc", fileCheck, dirCode, myUrl, fromData, lookData, accept=".zip", tips="此处的附件为对外的项目成果文件,仅支持zip格式,最多10个" }: Props,
|
|
|
ref: any
|
|
|
) {
|
|
|
const [fileList, setFileList] = useState<FileImgListType[]>([]);
|
|
@@ -170,7 +171,7 @@ function Z3upFiles(
|
|
|
</div>
|
|
|
|
|
|
<div className="fileTit" hidden={isLook}>
|
|
|
- 此处的附件为对外的项目成果文件,仅支持zip格式,最多10个
|
|
|
+ {tips}
|
|
|
<br />
|
|
|
<div
|
|
|
className={classNames(
|