| 123456789101112131415161718192021222324252627282930313233 |
- /** 引导到微信数据类 */
- const { ccclass } = cc._decorator;
- @ccclass
- export default class GuideToWxData {
- //开关
- public guideToWxSwith = false;
- public guideState: GuideState = GuideState.none;
- public money = '';
- public ghId = '';
- public ghIdPath = '';
- 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
- }
|