资产增加标签的功能

This commit is contained in:
dushixiang
2021-01-04 21:29:37 +08:00
parent 5457f8f4dd
commit c362d9b98a
8 changed files with 94 additions and 31 deletions

View File

@ -143,3 +143,7 @@ export function differTime(start, end) {
}
return show;
}
export const isEmpty = (text) =>{
return text === undefined || text == null || text.length === 0;
}