|
@@ -87,7 +87,6 @@ export default {
|
|
|
|
|
|
if(this.requestQuery){
|
|
|
this.dataRequestQuery=this.requestQuery;
|
|
|
-
|
|
|
}
|
|
|
let data = undefined;
|
|
|
for (const key in this.dataRequestQuery) {
|
|
@@ -144,14 +143,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
refreshColumnData(columnData) {
|
|
|
-
|
|
|
- console.log("biaof")
|
|
|
- console.log(this.dataColumnData.length)
|
|
|
- if (this.dataColumnData.length > 0){
|
|
|
- return;
|
|
|
- }
|
|
|
|
|
|
-
|
|
|
const d = this.columnData.concat(columnData);
|
|
|
|
|
|
this.dataColumnData = d;
|
|
@@ -272,6 +264,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
currentChange(val, isRequest = true) {
|
|
|
+ console.log(val);
|
|
|
if (isRequest) {
|
|
|
this.requestData({ pageNum: val });
|
|
|
}
|
|
@@ -281,6 +274,7 @@ export default {
|
|
|
},
|
|
|
|
|
|
sizeChange(val) {
|
|
|
+ console.log(val);
|
|
|
this.dataPageSize = val;
|
|
|
this.requestData({});
|
|
|
this.$emit("update:size-change", val);
|