This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
zhangzl
/
rongxin.nongjing.expo
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
统计分析预警分析
dev
yuzongping
3 weeks ago
parent
637085b2aa
commit
5a66280b66
4 changed files
with
12 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/components/header/index.html
+0
-2
src/style/_base.scss
+1
-1
src/views/capital/index.html
+10
-0
src/views/capital/index.js
+ 1
- 1
src/components/header/index.html
View File
@@ -1,5 +1,5 @@
<div class="header">
<div class="left
border
">
<div class="left">
<slot name="left"></slot>
</div>
<p class="title">{{title}}</p>
+ 0
- 2
src/style/_base.scss
View File
@@ -22,7 +22,6 @@ body {
position: relative;
width: 1920px;
height: 1080px;
border: 1px solid red;
.left_side {
position: absolute;
@@ -39,7 +38,6 @@ body {
}
.buttom_side {
border: 1px solid red;
position: absolute;
left: 50%;
transform: translateX(-50%);
+ 1
- 1
src/views/capital/index.html
View File
@@ -1,7 +1,7 @@
<div class="page" id="map">
<Header>
<div slot="left">
<Tabs @change="tabChange"></Tabs>
<Tabs @change="tabChange"
:data="tabData"
></Tabs>
</div>
</Header>
<!-- 项目初始化 -->
+ 10
- 0
src/views/capital/index.js
View File
@@ -43,6 +43,16 @@ export default {
},
data () {
return {
tabData: [
{
id: '1',
name: '统计分析'
},
{
id: '2',
name: '预警分析'
}
],
tab: '1',
comps,
map: "", // 地图
Write
Preview
Loading…
Cancel
Save