first commit

This commit is contained in:
Ls
2026-07-15 16:21:47 +08:00
commit 43acfe2957
284 changed files with 73094 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
export class StoreAssist{
static Get(key:string):any
{
return uni.getStorageSync(key);
}
static Set(key:string,value:any):void
{
uni.setStorageSync(key, value);
}
static Delete(key:string):void
{
uni.removeStorageSync(key);
}
}