|
@@ -95,7 +95,7 @@
|
|
|
:scope="scope"
|
|
|
></ex-slot>
|
|
|
</template>
|
|
|
- <template v-else slot-scope="scope" >
|
|
|
+ <template v-else slot-scope="scope">
|
|
|
<span>{{
|
|
|
column._format_
|
|
|
? column._format_(scope.row)
|
|
@@ -270,7 +270,28 @@ export default {
|
|
|
tableSelection: [],
|
|
|
};
|
|
|
},
|
|
|
- watch: {},
|
|
|
+ computed: {
|
|
|
+ page_curr() {
|
|
|
+ return this.page.curr;
|
|
|
+ },
|
|
|
+ page_size() {
|
|
|
+ return this.page.size;
|
|
|
+ },
|
|
|
+ page_total() {
|
|
|
+ return this.page.total;
|
|
|
+ },
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ page_curr: function (val) {
|
|
|
+ this.page.curr = val;
|
|
|
+ },
|
|
|
+ page_size: function (val) {
|
|
|
+ this.page.size = val;
|
|
|
+ },
|
|
|
+ page_total: function (val) {
|
|
|
+ this.page.total = val;
|
|
|
+ },
|
|
|
+ },
|
|
|
mounted() {
|
|
|
// 拖拽绑定
|
|
|
this.rowDrop();
|