Commit 4b01d676 authored by liujiangnan's avatar liujiangnan

debug

parent 599c1498
......@@ -647,7 +647,14 @@ export default class NewClass extends middleLayerBase {
const obj = this.data[key];
if (typeof data == "object") {
if(key === "NJ_game_select") {
this.showTips(`${this.data[key].folderId} ** ${data.folderId}`);
let str = "";
if (this.data[key]) {
str += ` ${this.data[key].folderId} ** `;
}
if(data) {
str += `${data.folderId}`;
}
this.showTips(`${str}`);
}
if (key === "NJ_game_select" && this.data[key] && this.data[key].folderId != data.folderId) {
this.data[key] = data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment