| 12345678910111213141516171819 |
- import JsbSystem from "../../system/JsbSystem";
- const { ccclass } = cc._decorator;
- /**
- * 阿里风控管理类
- */
- @ccclass
- export default class AliRiskManager {
- /** 风控返回码 0正常用户 */
- public getRiskCode: boolean = false;
- public deviceToken: string = '';
- public init() {
- this.deviceToken = JsbSystem.getAliRiskDeviceToken();
- this.getRiskCode = true;
- console.log("Ali_deviceToken", this.deviceToken);
- }
- }
|