mini-dlpu-v3/miniprogram/app.ts
2021-11-26 19:05:25 +08:00

27 lines
510 B
TypeScript

import {Logger} from "./utils/Logger";
import * as label from "./utils/LogLabel";
App<IAppOption>({
/**
* 全局数据
*/
globalData: {},
/**
* 小程序加载时
*/
onLaunch() {
Logger.log("hh",
label.FatalLabel,label.ErrorLabel,label.WarnLabel,
label.InfoLabel,label.DebugLabel,label.TraceLabel
);
Logger.logM(
[label.FatalLabel,label.ErrorLabel,label.WarnLabel,
label.InfoLabel,label.DebugLabel,label.TraceLabel], "hh"
);
}
})