|
@@ -648,8 +648,16 @@ export default {
|
|
|
});
|
|
|
});
|
|
|
}
|
|
|
- this.$refs.paging.complete(records);
|
|
|
- this.copyData = uni.$u.deepClone(records);
|
|
|
+ // this.$refs.paging.complete(records);
|
|
|
+ // this.copyData = uni.$u.deepClone(records);
|
|
|
+
|
|
|
+ var data = this.copyData;
|
|
|
+ for(var i=0;i<records.length;i++){
|
|
|
+ data.push(records[i]);
|
|
|
+ }
|
|
|
+ this.$refs.paging.complete(data);
|
|
|
+ this.copyData = data;
|
|
|
+ console.log('data=', data);
|
|
|
});
|
|
|
}
|
|
|
}
|