Merge branch 'treenode_editor' into data_migrations
This commit is contained in:
commit
10a45c4598
4 changed files with 22 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
{% load render_bundle from webpack_loader %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div>
|
<div>
|
||||||
|
@ -48,6 +49,14 @@
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
<script id="vuedata" type="application/json">{"treenode":{{cislo.cislonode.id}}}</script>
|
||||||
|
<div id="app">
|
||||||
|
<app></app>
|
||||||
|
</div>
|
||||||
|
{% render_bundle 'chunk-vendors' %}
|
||||||
|
{% render_bundle 'vue_app_01' %}
|
||||||
|
|
||||||
|
|
||||||
{% if cislo.verejna_vysledkovka %}
|
{% if cislo.verejna_vysledkovka %}
|
||||||
<h2>Výsledkovka</h2>
|
<h2>Výsledkovka</h2>
|
||||||
|
|
||||||
|
|
|
@ -31,10 +31,15 @@ export default {
|
||||||
}),
|
}),
|
||||||
props:{
|
props:{
|
||||||
tnid: Number,
|
tnid: Number,
|
||||||
|
tnsource: String,
|
||||||
editorMode: Boolean,
|
editorMode: Boolean,
|
||||||
debugMode: Boolean,
|
debugMode: Boolean,
|
||||||
},
|
},
|
||||||
mounted: function() {
|
mounted: function() {
|
||||||
|
if (this.tnsource && this.tnsource=='inline'){
|
||||||
|
let data = JSON.parse(document.getElementById('vuedata').textContent);
|
||||||
|
this.tnid = data.treenode;
|
||||||
|
}
|
||||||
this.getArticles();
|
this.getArticles();
|
||||||
this.$root.$on('updateData',(arg) => {
|
this.$root.$on('updateData',(arg) => {
|
||||||
console.log(arg);
|
console.log(arg);
|
||||||
|
|
|
@ -35,6 +35,7 @@ export default {
|
||||||
item: Object,
|
item: Object,
|
||||||
create: Boolean,
|
create: Boolean,
|
||||||
showSelect: Boolean,
|
showSelect: Boolean,
|
||||||
|
editorMode: Boolean,
|
||||||
},
|
},
|
||||||
mounted: function(){
|
mounted: function(){
|
||||||
if (this.item.node.uloha === null){
|
if (this.item.node.uloha === null){
|
||||||
|
@ -71,4 +72,4 @@ export default {
|
||||||
.upravit {
|
.upravit {
|
||||||
margin-top:-40px;
|
margin-top:-40px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -22,7 +22,12 @@ export default new Router({
|
||||||
name: 'treenode_zadani',
|
name: 'treenode_zadani',
|
||||||
props: {'tnid': 23},
|
props: {'tnid': 23},
|
||||||
component: TreeNodeRoot
|
component: TreeNodeRoot
|
||||||
},
|
}, {
|
||||||
|
path: '/cislo/:cislo',
|
||||||
|
name: 'treenode_cislo',
|
||||||
|
props: {'tnsource':'inline'},
|
||||||
|
component: TreeNodeRoot
|
||||||
|
}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue