zhuguoqing c21cd97580 udpate
2022-05-26 14:48:21 +08:00

24 lines
482 B
TypeScript

import jcgamelog from '../jcfw/service/jcgamelog';
const { ccclass, property } = cc._decorator;
export enum OperationType {
LOGIN = 'login', //
WALLET = 'wallet', //
UIMAIN = 'uimain', //
BUTTON = 'clickbtn', //
}
@ccclass
export class Operation extends cc.Component {
addOperation(type: OperationType, pram1 = '', pram2 = '') {
const data = {
data1: pram1,
data2: pram2,
};
// window.customReport(type, data);
}
}
export const operation = new Operation();