C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
268 B

  1. var app = getApp()
  2. Page({
  3. data: {
  4. flag: false
  5. },
  6. gotogame: function () {
  7. wx.navigateTo({
  8. url: '../game/index',
  9. })
  10. },
  11. a: function () {
  12. this.setData({ flag: false })
  13. },
  14. closeGame: function () {
  15. this.setData({ flag: true })
  16. }
  17. })