5.19 多轮招募割接项目隐藏按钮

This commit is contained in:
jl-zhoujl2
2022-05-19 08:58:29 +08:00
parent 300b5a34d6
commit 34525199e8
10 changed files with 208 additions and 199 deletions

View File

@ -2,7 +2,7 @@
* @Author: zhoujianlong
* @Date: 2022-03-03 09:06:36
* @Last Modified by: zhoujianlong
* @Last Modified time: 2022-03-17 16:40:43
* @Last Modified time: 2022-05-18 17:23:26
*/
import { getDownloadSecretKey, getFilelist, getFilelistBySecond } from "@/services/download_";
@ -60,7 +60,7 @@ export interface FilelistProps {
* @param objectId
* @returns
*/
const checkObjectId = (objectId: string) => {
export const checkObjectId = (objectId: string) => {
const pattern = /[a-zA-Z]+/;
return objectId.length == 19 && !pattern.test(objectId);
}