demo form
This commit is contained in:
parent
1803e604c4
commit
15943ce641
@ -25,6 +25,18 @@
|
|||||||
"icon": "icon-contacts",
|
"icon": "icon-contacts",
|
||||||
"content": "<userlist></userlist>"
|
"content": "<userlist></userlist>"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Domainlist",
|
||||||
|
"to": "/domainlist",
|
||||||
|
"icon": "icon-contacts",
|
||||||
|
"content": "<domainlist></domainlist>"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "FormDemo",
|
||||||
|
"to": "/formdemo",
|
||||||
|
"icon": "icon-contacts",
|
||||||
|
"content": "<form-demo></form-demo>"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Logout",
|
"name": "Logout",
|
||||||
"to": "/logout",
|
"to": "/logout",
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="input_holder">
|
<div class="input_holder">
|
||||||
<div class="input_header" v-if="label">
|
<div class="input_header" v-if="label || description">
|
||||||
<label :for="name">{{ label }}</label>
|
<label :for="name" v-if="label">{{ label }}</label>
|
||||||
|
<div class="input_description" v-if="description">{{ description }}</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="input_description" v-if="description">{{ description }}</div>
|
|
||||||
<input type="text" v-if="type == 'text'"
|
<input type="text" v-if="type == 'text'"
|
||||||
v-model="currentValue"
|
v-model="currentValue"
|
||||||
:name="name"
|
:name="name"
|
||||||
|
@ -1,14 +1,11 @@
|
|||||||
<div class="cms_content_form">
|
<template>
|
||||||
|
<div class="cms_content_form">
|
||||||
<form action="">
|
<form action="">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="tab8">
|
<div class="tab8">
|
||||||
<div class="input_holder">
|
|
||||||
<header class="input_header">
|
<my-input type="text" value="" v-model="titel" placeholder="Titel hier eintragen" label="Titel" description="Text .."></my-input>
|
||||||
<label for="">Titel</label>
|
|
||||||
</header>
|
|
||||||
<input type="text" value="" name="" placeholder="Titel hier eintragen">
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="input_holder">
|
<div class="input_holder">
|
||||||
<header class="input_header">
|
<header class="input_header">
|
||||||
<label for="">Permalink</label>
|
<label for="">Permalink</label>
|
||||||
@ -86,4 +83,24 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import MyInput from "components/my-input.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "DemoForm",
|
||||||
|
components: {
|
||||||
|
MyInput
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
titel: "plapla"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
85
src/views/lists/domainlist.vue
Normal file
85
src/views/lists/domainlist.vue
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
<template>
|
||||||
|
<div class="Domainlist">
|
||||||
|
<h1>Domainlist</h1>
|
||||||
|
<scroll-table :actions="actions" :columns="columns" :new-rows="newRows" :has-more="hasMore" :loading="loading" :handler="more" orderBy="Name" :orderDesc="false" :limit="50"></scroll-table>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import ScrollTable from '../../components/scroll-table.vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "Domainlist",
|
||||||
|
components: {
|
||||||
|
ScrollTable
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
actions: [{
|
||||||
|
title: 'Edit',
|
||||||
|
icon: 'icon-pencil',
|
||||||
|
action(row) {
|
||||||
|
console.log("yay edit", row);
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
title: 'Duplicate',
|
||||||
|
icon: 'icon-docs',
|
||||||
|
action(row) {
|
||||||
|
console.log("yay duplicate", row);
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
title: 'Hide',
|
||||||
|
icon: 'icon-eye-off',
|
||||||
|
action(row) {
|
||||||
|
console.log("yay hide", row);
|
||||||
|
}
|
||||||
|
}],
|
||||||
|
columns: [{
|
||||||
|
heading: 'ID',
|
||||||
|
prop: 'ID',
|
||||||
|
orderBy: 'id',
|
||||||
|
align: 'right'
|
||||||
|
}, {
|
||||||
|
heading: 'TLD',
|
||||||
|
prop: 'TLD',
|
||||||
|
orderBy: 'tld',
|
||||||
|
align: 'left'
|
||||||
|
}, {
|
||||||
|
heading: 'Domain',
|
||||||
|
prop: 'Name',
|
||||||
|
orderBy: 'name'
|
||||||
|
}],
|
||||||
|
newRows: [ ],
|
||||||
|
hasMore: true,
|
||||||
|
loading: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
more(offset, limit, orderBy, orderDesc, search) {
|
||||||
|
this.loading = true;
|
||||||
|
this.$store.dispatch('apiRequest', {
|
||||||
|
endpoint: 'domains',
|
||||||
|
params: {
|
||||||
|
start: offset,
|
||||||
|
length: limit,
|
||||||
|
orderBy,
|
||||||
|
orderDesc,
|
||||||
|
search
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then(rows => {
|
||||||
|
this.hasMore = (rows.length >= limit);
|
||||||
|
this.newRows = rows;
|
||||||
|
this.loading = false;
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
this.loading = false;
|
||||||
|
this.hasMore = false;
|
||||||
|
|
||||||
|
console.log(error);
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
@ -66,7 +66,7 @@ export default {
|
|||||||
}, {
|
}, {
|
||||||
heading: 'Render',
|
heading: 'Render',
|
||||||
render(row) {
|
render(row) {
|
||||||
return 'ID:' + row.ID;
|
return '<b>ID:</b>' + row.ID;
|
||||||
}
|
}
|
||||||
}],
|
}],
|
||||||
newRows: [ ],
|
newRows: [ ],
|
||||||
|
@ -2,10 +2,14 @@ import Dashboard from './dashboard.vue';
|
|||||||
import LoginForm from './forms/login.vue';
|
import LoginForm from './forms/login.vue';
|
||||||
import Logout from './forms/logout.vue';
|
import Logout from './forms/logout.vue';
|
||||||
import Userlist from './lists/userlist.vue';
|
import Userlist from './lists/userlist.vue';
|
||||||
|
import Domainlist from './lists/domainlist.vue';
|
||||||
|
import FormDemo from './forms/form-demo.vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
Dashboard,
|
Dashboard,
|
||||||
LoginForm,
|
LoginForm,
|
||||||
Logout,
|
Logout,
|
||||||
Userlist
|
Userlist,
|
||||||
|
Domainlist,
|
||||||
|
FormDemo
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user