diff --git a/src/assets/tiyuguan/人流.png b/src/assets/tiyuguan/人流.png new file mode 100644 index 0000000..b6016d5 Binary files /dev/null and b/src/assets/tiyuguan/人流.png differ diff --git a/src/assets/tiyuguan/人流饱和度.png b/src/assets/tiyuguan/人流饱和度.png new file mode 100644 index 0000000..a6d40ea Binary files /dev/null and b/src/assets/tiyuguan/人流饱和度.png differ diff --git a/src/assets/tiyuguan/视频大框.png b/src/assets/tiyuguan/视频大框.png new file mode 100644 index 0000000..a6c7d99 Binary files /dev/null and b/src/assets/tiyuguan/视频大框.png differ diff --git a/src/assets/tiyuguan/视频小框.png b/src/assets/tiyuguan/视频小框.png new file mode 100644 index 0000000..5ca7b88 Binary files /dev/null and b/src/assets/tiyuguan/视频小框.png differ diff --git a/src/components/index/index.vue b/src/components/index/index.vue index c2b5644..054eda8 100644 --- a/src/components/index/index.vue +++ b/src/components/index/index.vue @@ -23,7 +23,7 @@
游泳场馆
-
博物馆
+
图书馆
@@ -71,11 +71,18 @@ if(val == 1){ this.$router.push({ path: '/tiyuchang/tiyuchang' }) this.backVal = 1 - } - if(val == 3){ + }else if(val == 3){ this.$router.push({ path: '/zongLan/zongLan' }) this.backVal = 3 } + else if(val == 2){ + this.$router.push({ path: '/stadium/stadium' }) + this.backVal = 2 + } + else if(val == 5){ + this.$router.push({ path: '/library/library' }) + this.backVal = 5 + } }, clickQushi(val){ this.selectVal1 = val diff --git a/src/components/library/index.vue b/src/components/library/index.vue new file mode 100644 index 0000000..c6a0b85 --- /dev/null +++ b/src/components/library/index.vue @@ -0,0 +1,479 @@ + + + + + \ No newline at end of file diff --git a/src/components/stadium/stadium.vue b/src/components/stadium/stadium.vue new file mode 100644 index 0000000..c6a0b85 --- /dev/null +++ b/src/components/stadium/stadium.vue @@ -0,0 +1,479 @@ + + + + + \ No newline at end of file diff --git a/src/components/tiyuchang/1.vue b/src/components/tiyuchang/1.vue new file mode 100644 index 0000000..4c1e13f --- /dev/null +++ b/src/components/tiyuchang/1.vue @@ -0,0 +1,154 @@ + + + + + \ No newline at end of file diff --git a/src/components/tiyuchang/tiyuchang copy.vue b/src/components/tiyuchang/tiyuchang copy.vue new file mode 100644 index 0000000..c6a0b85 --- /dev/null +++ b/src/components/tiyuchang/tiyuchang copy.vue @@ -0,0 +1,479 @@ + + + + + \ No newline at end of file diff --git a/src/components/tiyuchang/tiyuchang.vue b/src/components/tiyuchang/tiyuchang.vue index 138fa65..44313d3 100644 --- a/src/components/tiyuchang/tiyuchang.vue +++ b/src/components/tiyuchang/tiyuchang.vue @@ -1,184 +1,177 @@ + + + + }, + }); + }, + tap(e) { + uChartsInstance[e.target.id].touchLegend(getH5Offset(e)); + uChartsInstance[e.target.id].showToolTip(getH5Offset(e)); + }, + tap1(e) { + uChartsInstance[e.target.id].touchLegend(getH5Offset(e)); + uChartsInstance[e.target.id].showToolTip(getH5Offset(e)); + }, + }, +}; + \ No newline at end of file + } + + .charts { + width: 225px; + height: 150px; + } + .charts1 { + width: 550px; + height: 250px; + } +} + \ No newline at end of file diff --git a/src/components/zongLan/zongLan.vue b/src/components/zongLan/zongLan.vue index 8bac5cf..6bab628 100644 --- a/src/components/zongLan/zongLan.vue +++ b/src/components/zongLan/zongLan.vue @@ -1,387 +1,516 @@ + + + + clickQushi(val) { + this.selectVal1 = val; + }, + }, +}; + + } + } +} + \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 5c460db..577e000 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -4,6 +4,8 @@ import HelloWorld from '@/components/HelloWorld' import index from '@/components/index' import zongLan from '@/components/zongLan/zongLan' import tiyuchang from '@/components/tiyuchang/tiyuchang' +import stadium from '@/components/stadium/stadium' +import library from '@/components/library/index' Vue.use(Router) @@ -13,7 +15,7 @@ export default new Router({ path: '/', name: 'index', component: index, - children:[ + children: [ { path: '/zongLan/zongLan', name: "zongLan", @@ -23,6 +25,16 @@ export default new Router({ path: '/tiyuchang/tiyuchang', name: "tiyuchang", component: tiyuchang + }, + { + path: '/stadium/stadium', + name: "stadium", + component: stadium + }, + { + path: '/library/library', + name: "library", + component: library } ] }, @@ -31,6 +43,6 @@ export default new Router({ name: 'HelloWorld', component: HelloWorld } - + ] })