6 changed files with 90 additions and 3 deletions
@ -0,0 +1,17 @@
|
||||
<div class="bigBox"> |
||||
<div class="leftDiv"> |
||||
<ul> |
||||
<li>基本信息</li> |
||||
<li>平面图</li> |
||||
<li>四周毗邻</li> |
||||
<li>消防设施</li> |
||||
<li>重点部位</li> |
||||
<li>功能分区</li> |
||||
<li>实景图</li> |
||||
<li>上传CAD图</li> |
||||
</ul> |
||||
</div> |
||||
<div class="rightDiv"> |
||||
|
||||
</div> |
||||
</div> |
@ -0,0 +1,29 @@
|
||||
.bigBox{ |
||||
width: 100%; |
||||
height: 100%; |
||||
display: flex; |
||||
.leftDiv{ |
||||
flex: 1; |
||||
border: 1px solid #30bbec; |
||||
border-radius: 5px; |
||||
ul{ |
||||
li{ |
||||
font-size: 20px; |
||||
text-align: center; |
||||
color: white; |
||||
height:50px; |
||||
line-height:50px; |
||||
cursor: pointer; |
||||
border-bottom: 1px solid #30bbec; |
||||
} |
||||
li:hover{ |
||||
background-color: #e6963c; |
||||
} |
||||
} |
||||
} |
||||
.rightDiv{ |
||||
flex: 6; |
||||
border: 1px solid #30bbec; |
||||
border-radius: 5px; |
||||
} |
||||
} |
@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; |
||||
|
||||
import { DataPushComponent } from './data-push.component'; |
||||
|
||||
describe('DataPushComponent', () => { |
||||
let component: DataPushComponent; |
||||
let fixture: ComponentFixture<DataPushComponent>; |
||||
|
||||
beforeEach(async(() => { |
||||
TestBed.configureTestingModule({ |
||||
declarations: [ DataPushComponent ] |
||||
}) |
||||
.compileComponents(); |
||||
})); |
||||
|
||||
beforeEach(() => { |
||||
fixture = TestBed.createComponent(DataPushComponent); |
||||
component = fixture.componentInstance; |
||||
fixture.detectChanges(); |
||||
}); |
||||
|
||||
it('should create', () => { |
||||
expect(component).toBeTruthy(); |
||||
}); |
||||
}); |
@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core'; |
||||
|
||||
@Component({ |
||||
selector: 'app-data-push', |
||||
templateUrl: './data-push.component.html', |
||||
styleUrls: ['./data-push.component.scss'] |
||||
}) |
||||
export class DataPushComponent implements OnInit { |
||||
|
||||
constructor() { } |
||||
ngOnInit(): void { |
||||
|
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue