11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
// app.ts
|
|
App<IAppOption>({
|
|
globalData: {},
|
|
onLaunch() {
|
|
// const envVersion = wx.getAccountInfoSync().miniProgram.envVersion
|
|
// if (envVersion !== 'release') {
|
|
// wx.reLaunch({ url: '/pages/tools/index' })
|
|
// }
|
|
},
|
|
})
|