"use strict"; cc._RF.push(module, '44a130rHFxJVZoSyvNQPIly', 'RankTable'); // scripts/RankTable.ts "use strict"; // Learn TypeScript: // - https://docs.cocos.com/creator/2.4/manual/en/scripting/typescript.html // Learn Attribute: // - https://docs.cocos.com/creator/2.4/manual/en/scripting/reference/attributes.html // Learn life-cycle callbacks: // - https://docs.cocos.com/creator/2.4/manual/en/scripting/life-cycle-callbacks.html var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; Object.defineProperty(exports, "__esModule", { value: true }); var _a = cc._decorator, ccclass = _a.ccclass, property = _a.property; var NewClass = /** @class */ (function (_super) { __extends(NewClass, _super); function NewClass() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.label = null; _this.text = 'hello'; return _this; // update (dt) {} } // LIFE-CYCLE CALLBACKS: // onLoad () {} NewClass.prototype.start = function () { console.log("start Rank"); var nd = this.node; var rob = this.node.getChildByName("RankOutButton"); // console.log(rob.x); rob.on(cc.Node.EventType.TOUCH_END, function (event) { console.log("start button"); function toChineseStr(unicodeStr) { if (unicodeStr == '') { return 'Please input hexadecimal Unicode'; } unicodeStr = unicodeStr.split('\\u'); var chineseStr = ''; for (var i = 0, iLength = unicodeStr.length; i < iLength; i++) { chineseStr += String.fromCharCode(parseInt(unicodeStr[i], 16)); } return chineseStr; } wx.request({ url: 'https://shenlong.site/select.php', success: function (res) { console.log("success"); console.log(res.data); var text = res.data.split("}{"); text[0] = text[0].slice(1); text[text.length - 1] = text[text.length - 1].substr(0, text[text.length - 1].length - 1); for (var i = 0; i <= text.length - 1; i++) { text[i] = text[i].split(":")[1].slice(1); text[i] = text[i].substr(0, text[i].length - 1); text[i] = toChineseStr(text[i]); text[i] = text[i].slice(1); } console.log(text[0]); var tableDeleteNode = nd.getChildByName("TableDelete"); var rankTableNode = nd.getChildByName("RankTable"); console.log(123123); // let action=cc.show(); // tableDeleteNode.runAction(action); // rankTableNode.runAction(action); tableDeleteNode.active = true; rankTableNode.active = true; for (var i = 0; i <= text.length - 1; i++) { var nd_1 = rankTableNode.getChildByName("text").getChildByName((i + 1).toString()); nd_1.getComponent(cc.Label).string = text[i]; } } }); }); var tb = this.node.getChildByName("TableDelete"); // console.log(rob.x); tb.on(cc.Node.EventType.TOUCH_END, function (event) { nd.getChildByName("RankTable").active = false; tb.active = false; }); }; NewClass.prototype.update = function () { }; __decorate([ property(cc.Label) ], NewClass.prototype, "label", void 0); __decorate([ property ], NewClass.prototype, "text", void 0); NewClass = __decorate([ ccclass ], NewClass); return NewClass; }(cc.Component)); exports.default = NewClass; cc._RF.pop();