Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontoffice
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tse-java-16
frontoffice
Commits
8c3d1621
Commit
8c3d1621
authored
5 years ago
by
Mathias Zunino
Browse files
Options
Downloads
Patches
Plain Diff
Para ramiron papa
parent
f3cbf07f
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/App.vue
+16
-1
16 additions, 1 deletion
src/App.vue
src/components/Map.vue
+0
-1
0 additions, 1 deletion
src/components/Map.vue
with
16 additions
and
2 deletions
src/App.vue
+
16
−
1
View file @
8c3d1621
...
@@ -6,6 +6,7 @@
...
@@ -6,6 +6,7 @@
<v-container
<v-container
fluid
fluid
class=
"pa-0"
class=
"pa-0"
@
scroll.passive=
"handleScroll"
style=
"overflow-x: hidden;"
style=
"overflow-x: hidden;"
:class=
"[
:class=
"[
extended ? 'toolbar--extended' : 'toolbar--no-extended',
extended ? 'toolbar--extended' : 'toolbar--no-extended',
...
@@ -37,7 +38,21 @@ import { mapState } from "vuex";
...
@@ -37,7 +38,21 @@ import { mapState } from "vuex";
Toolbar
,
Toolbar
,
},
},
})
})
export
default
class
App
extends
Vue
{}
export
default
class
App
extends
Vue
{
private
created
()
{
window
.
addEventListener
(
"
scroll
"
,
this
.
handleScroll
);
}
private
handleScroll
()
{
if
(
this
.
extended
)
{
this
.
$store
.
dispatch
(
"
expandToolbar
"
,
false
);
}
}
private
get
extended
():
boolean
{
return
this
.
$store
.
state
.
extended
;
}
}
</
script
>
</
script
>
<
style
lang=
"scss"
>
<
style
lang=
"scss"
>
...
...
This diff is collapsed.
Click to expand it.
src/components/Map.vue
+
0
−
1
View file @
8c3d1621
...
@@ -25,7 +25,6 @@ export default class Map extends Vue {
...
@@ -25,7 +25,6 @@ export default class Map extends Vue {
const
data
=
this
.
data
;
const
data
=
this
.
data
;
// console.log(data);
// console.log(data);
anychart
.
onDocumentReady
(
function
()
{
anychart
.
onDocumentReady
(
function
()
{
console
.
log
(
data
);
const
dataSet
=
anychart
.
data
.
set
(
data
);
const
dataSet
=
anychart
.
data
.
set
(
data
);
const
data1
=
dataSet
.
mapAs
({
id
:
"
id
"
,
size
:
"
size
"
});
const
data1
=
dataSet
.
mapAs
({
id
:
"
id
"
,
size
:
"
size
"
});
const
map
=
anychart
.
map
();
const
map
=
anychart
.
map
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment