userlist load 50
This commit is contained in:
parent
9bf6afd55b
commit
76704b2c82
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="Userlist">
|
<div class="Userlist">
|
||||||
<h1>Userlist</h1>
|
<h1>Userlist</h1>
|
||||||
<scroll-table :columns="columns" :new-rows="newRows" :has-more="hasMore" :loading="loading" :handler="more" orderBy="id" :orderDesc="true"></scroll-table>
|
<scroll-table :columns="columns" :new-rows="newRows" :has-more="hasMore" :loading="loading" :handler="more" orderBy="id" :orderDesc="true" limit="50"></scroll-table>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -26,6 +26,26 @@ export default {
|
|||||||
prop: 'Username',
|
prop: 'Username',
|
||||||
orderBy: 'username'
|
orderBy: 'username'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
heading: 'Firma',
|
||||||
|
prop: 'Company',
|
||||||
|
orderBy: 'company'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: 'Nachname',
|
||||||
|
prop: 'Lastname',
|
||||||
|
orderBy: 'lastname'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: 'Vorname',
|
||||||
|
prop: 'Firstname',
|
||||||
|
orderBy: 'firstname'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
heading: 'Email',
|
||||||
|
prop: 'Email',
|
||||||
|
orderBy: 'email'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
heading: 'Reseller',
|
heading: 'Reseller',
|
||||||
prop: 'Reseller.Username'
|
prop: 'Reseller.Username'
|
||||||
|
Loading…
Reference in New Issue
Block a user