美甲小程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

31 lignes
534 B

  1. App({
  2. /**
  3. * 当小程序初始化完成时,会触发 onLaunch(全局只触发一次)
  4. */
  5. onLaunch: function () {
  6. },
  7. /**
  8. * 当小程序启动,或从后台进入前台显示,会触发 onShow
  9. */
  10. onShow: function (options) {
  11. },
  12. /**
  13. * 当小程序从前台进入后台,会触发 onHide
  14. */
  15. onHide: function () {
  16. },
  17. /**
  18. * 当小程序发生脚本错误,或者 api 调用失败时,会触发 onError 并带上错误信息
  19. */
  20. onError: function (msg) {
  21. }
  22. })