|
|
@@ -28775,13 +28775,15 @@ return [ 4, mk.http.sendData("newrichbank/getCashRecord", {}) ];
|
|
|
case 2:
|
|
|
if ((t = o.sent()) && 0 == t.errcode) {
|
|
|
this.cashRecordData = t.data;
|
|
|
+console.log("--------------");
|
|
|
this.freshQipao = !0;
|
|
|
}
|
|
|
if (gData.gameData.richBankTeachTag) {
|
|
|
gData.gameData.richBankTeachTag = !1;
|
|
|
e = mk.ui.isPopPanel();
|
|
|
a = gData.gameData.getProp(s.GameProp.cashTimes);
|
|
|
-if ("1" == gData.gameData.funOpenData[13] && !e && a >= gData.gameData.showRichBankIconLimit && this.cashRecordData.length > this.cashRecordDataLength) {
|
|
|
+console.log("=========" + e + "===" + a + "=====" + this.cashRecordData.length + "====" + this.cashRecordDataLength);
|
|
|
+if ("1" == gData.gameData.funOpenData[13] && !e && a >= gData.gameData.showRichBankIconLimit && this.cashRecordData.length >= this.cashRecordDataLength) {
|
|
|
this.cashRecordDataLength = this.cashRecordData.length;
|
|
|
this.isTeach = mk.guide.open(13);
|
|
|
}
|
|
|
@@ -28792,7 +28794,10 @@ return [ 2 ];
|
|
|
});
|
|
|
};
|
|
|
t.prototype.setCashRecordDataLength = function() {
|
|
|
-this.cashRecordData ? this.cashRecordDataLength = this.cashRecordData.length : this.cashRecordDataLength = 0;
|
|
|
+if (this.cashRecordData) {
|
|
|
+this.cashRecordDataLength = this.cashRecordData.length;
|
|
|
+console.log("setCashRecordDataLength==========" + this.cashRecordDataLength);
|
|
|
+} else this.cashRecordDataLength = 0;
|
|
|
};
|
|
|
t.prototype.checkSameDay = function(t) {
|
|
|
return new Date().getDate() == new Date(t).getDate();
|