feat: API Key manage is ready

This commit is contained in:
RockYang
2023-06-20 18:05:33 +08:00
parent 469844d97b
commit e490e15bc4
8 changed files with 248 additions and 37 deletions

View File

@@ -123,4 +123,8 @@ export function renderInputText(text) {
// 拷贝对象
export function copyObj(origin) {
return JSON.parse(JSON.stringify(origin));
}
export function disabledDate(time) {
return time.getTime() < Date.now()
}