|
@@ -263,14 +263,6 @@ export default {
|
|
return this.conditions.some((item) => item.prop === col.prop);
|
|
return this.conditions.some((item) => item.prop === col.prop);
|
|
};
|
|
};
|
|
},
|
|
},
|
|
- },
|
|
|
|
- data() {
|
|
|
|
- return {
|
|
|
|
- // 表格选中项
|
|
|
|
- tableSelection: [],
|
|
|
|
- };
|
|
|
|
- },
|
|
|
|
- computed: {
|
|
|
|
page_curr() {
|
|
page_curr() {
|
|
return this.page.curr;
|
|
return this.page.curr;
|
|
},
|
|
},
|
|
@@ -281,6 +273,12 @@ export default {
|
|
return this.page.total;
|
|
return this.page.total;
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
+ data() {
|
|
|
|
+ return {
|
|
|
|
+ // 表格选中项
|
|
|
|
+ tableSelection: [],
|
|
|
|
+ };
|
|
|
|
+ },
|
|
watch: {
|
|
watch: {
|
|
page_curr: function (val) {
|
|
page_curr: function (val) {
|
|
this.page.curr = val;
|
|
this.page.curr = val;
|