We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1092979 commit f83a072Copy full SHA for f83a072
src/components/lib/AjaxTable.vue
@@ -71,6 +71,7 @@ export default {
71
})
72
.then(res => {
73
if (limit === this.limit) {
74
+ console.log('send');
75
this.own_total = res.data.count;
76
this.tableData = res.data.res.map(this.process);
77
this.loading = false;
src/components/status/list.vue
@@ -7,7 +7,7 @@
7
:limit="limit"
8
:total="data_count"
9
:process="process"
10
- :default_sort="{prop: 'id', order: 'ascending'}"
+ :default_sort="{prop: 'id', order: 'descending'}"
11
pagination_class="status-list-pagination"
12
/>
13
</el-card>
@@ -27,7 +27,7 @@ export default {
27
return {
28
alive: true,
29
ajax_url: apiurl('/status/list'),
30
- limit: 20,
+ limit: 30,
31
columns: [{
32
name: 'id',
33
label: 'Run ID',
0 commit comments