gxd-uni-library-editx 1.0.8-beta39 → 1.0.8-beta40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -299,7 +299,11 @@ export default {
|
|
|
299
299
|
if(cur) return Object.assign(item, cur);
|
|
300
300
|
return item;
|
|
301
301
|
})
|
|
302
|
-
return combineList.concat(otherCardList)
|
|
302
|
+
return combineList.concat(otherCardList).map(item => {
|
|
303
|
+
let date = new Date(item['end_time'] * 1000)
|
|
304
|
+
item['end_time'] = date.getFullYear() + '-' + (date.getMonth()+1) + "-" + date.getDate();
|
|
305
|
+
return item;
|
|
306
|
+
});
|
|
303
307
|
},
|
|
304
308
|
checkedCards(){
|
|
305
309
|
return this.showCardList.filter(item => item.card_use_price > 0).map(item => item.card_number);
|
package/src/utils/xdWxLog.js
CHANGED
|
@@ -22,7 +22,7 @@ class Logs {
|
|
|
22
22
|
this.checkcount = 0; //最大检查1000次
|
|
23
23
|
this.startcount = 0; //最大检查可以上传日志次数
|
|
24
24
|
this.checkMaxWaitTime = 1000;
|
|
25
|
-
this.check();
|
|
25
|
+
//this.check();
|
|
26
26
|
this.saveUploadedLog = [];
|
|
27
27
|
this.onUpdateKeyword = [
|
|
28
28
|
'$vm', //跟uniApp uni.createSelectorQuery() 有关
|