/** 引导到微信数据类 */ const { ccclass } = cc._decorator; @ccclass export default class GuideToWxData { //开关 public guideToWxSwith = false; public guideState: GuideState = GuideState.none; public money = ''; public ghId = ''; public init_state = false; checkPop() { if (!this.guideToWxSwith) { return; } if (this.guideState < GuideState.gotMoney) { mk.ui.openPanel('module/guideToWx/guideToWx'); } } } export enum GuideState { none = 0, addService, sendApply, waitForPass, canGetMoney, gotMoney }