Merge branch '20220519-多轮招募割接测试' of http://10.124.128.2:8888/eshop/fe_service_ebtp_frontend into 20220413-zjl-公共服务平台

This commit is contained in:
jl-zhoujl2
2022-05-20 14:42:19 +08:00
10 changed files with 67 additions and 58 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);
}