-
+
+
@@ -10,6 +17,22 @@
富丽华大酒店
+
+
+
+
+
+
+
+ open_with 建筑总平面图
+
+
+ 总平面图
+
+ {{item.name}}
+
+
+
+
+ {{item.name}}
+
+
@@ -43,7 +66,7 @@
-
+
keyboard_arrow_up
keyboard_arrow_down
@@ -81,16 +104,16 @@
-
+
{{node.name}}
({{node.children.length}})
- visibility
+ check_circle_outline
-
+
@@ -118,11 +141,7 @@
- info 属性
(data.items)
@@ -61,7 +61,7 @@ export class EnterpriseuserComponent implements OnInit {
RealName: this.name || '',
RoleType: '2',
}
- this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{
+ this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount
this.pageSize = data.pageSize
this.pageEvent.pageIndex = 0
@@ -77,7 +77,7 @@ export class EnterpriseuserComponent implements OnInit {
RoleType: '2',
PageNumber: String(this.pageNumber),
}
- this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{
+ this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount
this.pageSize = data.pageSize
this.dataSource = new MatTableDataSource(data.items)
@@ -90,11 +90,6 @@ export class EnterpriseuserComponent implements OnInit {
this.name = ''
this.initData()
}
-
- //跳转学习记录
- openRecord(e){
- window.open(`/home/statistics?name=${e.realName}&id=${e.name}`)
- }
//创建用户
open(){
@@ -131,7 +126,7 @@ export class EnterpriseuserComponent implements OnInit {
//重置密码
reset (e) {
- this.http.put(`/api/Users/${e.name}/ResetPassword`,{}).subscribe(
+ this.http.put(`/api/ExamUsers/${e.name}/ResetPassword`,{}).subscribe(
data=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
@@ -145,16 +140,6 @@ export class EnterpriseuserComponent implements OnInit {
})
}
- //查看企业信息
- see (e) {
- this.http.get(`/api/CompanyUsers/${e.name}`).subscribe(
- data=> {
- let dialogRef = this.dialog.open(seeenterpriseuser, {data});
- dialogRef.afterClosed().subscribe();
- }
- )
- }
-
//启用
enabled (e) {
let date = new Date()
@@ -166,7 +151,7 @@ export class EnterpriseuserComponent implements OnInit {
creationTime : date,
posts : e.posts
}
- this.http.put(`/api/Users/${e.name}`,body).subscribe(data => {
+ this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000;
@@ -186,7 +171,7 @@ export class EnterpriseuserComponent implements OnInit {
creationTime : date,
posts : e.posts
}
- this.http.put(`/api/Users/${e.name}`,body).subscribe(data => {
+ this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000;
@@ -199,7 +184,7 @@ export class EnterpriseuserComponent implements OnInit {
delete (e) {
let isTrue = confirm('您确定要删除吗')
if (isTrue) {
- this.http.delete(`/api/Users/${e.name}`).subscribe(data=>{
+ this.http.delete(`/api/ExamUsers/${e.name}`).subscribe(data=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
@@ -239,22 +224,11 @@ export class editenterpriseuser {
this.data.posts.forEach((item) => {
this.toppings.value.push(item.id)
})
- this.getAllPosts()
}
//获得所有职务
getAllPosts(){
- this.http.get("/api/Posts").subscribe( (data:any) =>{
- data.forEach(item => {
- if(item.name.indexOf("支队级") != -1){
- this.detachmentPosts.push(item)
- }else if(item.name.indexOf("大队级") != -1){
- this.brigadePosts.push(item)
- }else{
- this.RescueStationPosts.push(item)
- }
- });
- })
+
}
@@ -274,7 +248,7 @@ export class editenterpriseuser {
creationTime : date,
posts : postsObj
}
- this.http.put(`/api/Users/${this.data.name}`,body).subscribe(data => {
+ this.http.put(`/api/ExamUsers/${this.data.name}`,body).subscribe(data => {
this.dialogRef.close("修改成功");
})
}
diff --git a/src/app/ui/teacherManagement/enterpriseuser.component.ts b/src/app/ui/teacherManagement/enterpriseuser.component.ts
index d70cf9c..1da79e2 100644
--- a/src/app/ui/teacherManagement/enterpriseuser.component.ts
+++ b/src/app/ui/teacherManagement/enterpriseuser.component.ts
@@ -46,7 +46,7 @@ export class TeacherManagementComponent implements OnInit {
RoleType: '1',
PageNumber: String(this.pageNumber),
}
- this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{
+ this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount
this.pageSize = data.pageSize
this.dataSource = new MatTableDataSource(data.items)
@@ -60,7 +60,7 @@ export class TeacherManagementComponent implements OnInit {
RealName: this.name || '',
RoleType: '1',
}
- this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{
+ this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount
this.pageSize = data.pageSize
this.pageEvent.pageIndex = 0
@@ -76,7 +76,7 @@ export class TeacherManagementComponent implements OnInit {
RoleType: '1',
PageNumber: String(this.pageNumber),
}
- this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{
+ this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{
this.length = data.totalCount
this.pageSize = data.pageSize
this.dataSource = new MatTableDataSource(data.items)
@@ -125,7 +125,7 @@ export class TeacherManagementComponent implements OnInit {
//重置密码
reset (e) {
- this.http.put(`/api/Users/${e.name}/ResetPassword`,{}).subscribe(
+ this.http.put(`/api/ExamUsers/${e.name}/ResetPassword`,{}).subscribe(
data=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
@@ -150,7 +150,7 @@ export class TeacherManagementComponent implements OnInit {
creationTime : date,
posts : e.posts
}
- this.http.put(`/api/Users/${e.name}`,body).subscribe(data => {
+ this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000;
@@ -170,7 +170,7 @@ export class TeacherManagementComponent implements OnInit {
creationTime : date,
posts : e.posts
}
- this.http.put(`/api/Users/${e.name}`,body).subscribe(data => {
+ this.http.put(`/api/ExamUsers/${e.name}`,body).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000;
@@ -183,7 +183,7 @@ export class TeacherManagementComponent implements OnInit {
delete (e) {
let isTrue = confirm('您确定要删除吗')
if (isTrue) {
- this.http.delete(`/api/Users/${e.name}`).subscribe(data=>{
+ this.http.delete(`/api/ExamUsers/${e.name}`).subscribe(data=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
@@ -223,23 +223,11 @@ export class editTeacher {
this.data.posts.forEach((item) => {
this.toppings.value.push(item.id)
})
- this.getAllPosts()
}
//获得所有职务
getAllPosts(){
- this.http.get("/api/Posts").subscribe( (data:any) =>{
- // console.log(123,data)
- data.forEach(item => {
- if(item.name.indexOf("支队级") != -1){
- this.detachmentPosts.push(item)
- }else if(item.name.indexOf("大队级") != -1){
- this.brigadePosts.push(item)
- }else{
- this.RescueStationPosts.push(item)
- }
- });
- })
+
}
@@ -259,7 +247,7 @@ export class editTeacher {
creationTime : date,
posts : postsObj
}
- this.http.put(`/api/Users/${this.data.name}`,body).subscribe(data => {
+ this.http.put(`/api/ExamUsers/${this.data.name}`,body).subscribe(data => {
this.dialogRef.close("修改成功");
})
}
-
+
- 属性
-
- 面积(平方米)
diff --git a/src/app/ui/collection-tools/collection-tools.component.scss b/src/app/ui/collection-tools/collection-tools.component.scss index 557f5fc..ee90d8f 100644 --- a/src/app/ui/collection-tools/collection-tools.component.scss +++ b/src/app/ui/collection-tools/collection-tools.component.scss @@ -8,7 +8,7 @@ display: flex; flex-direction: column; .buildingbtnchecked{ - background-color: #34A6FD; + background-color: #07CDCF; color: white; } } @@ -16,46 +16,56 @@ //header头部 .header { position: relative; - flex: 5%; + width: 100%; + height: 46px; + min-height: 46px; display: flex; align-items:center; - min-height: 40px; background-color: #fff; box-shadow: inset 0px -3px 5px 0px rgb(165, 163, 163); - .nameShow{ - cursor: pointer; - user-select: none; - } - .copytobutn{ - width: 33px; - min-width: 33px; - display: flex; - justify-content: center; - } - font-size: 18px; - mat-icon{ - font-size: 26px; - vertical-align: text-top; + .headerTitle { + width: 235px; + overflow: hidden; + color: #07CDCF; + box-sizing: border-box; + padding-left: 25px; + font-size: 20px; + font-weight: 550; } - span{ - height: 24px; - line-height: 24px; + .headerCenter { + flex: 1; + overflow: hidden; + input { + width: 99%; + height: 30px; + background-color: #e7f0f0; + border-radius: 5px; + } } - .patternSwitch{ - position: absolute; - right: 140px; - span{ - font-size: 18px; - cursor: pointer; - margin: 0 3px; - display: inline-block; - border: 1px solid gray; - border-radius: 3px; - padding: 0 5px; + .headerRight { + width: 450px; + overflow: hidden; + box-sizing: border-box; + padding-left: 10px; + .fraction { font-size: 14px; } + .fraction input { + width: 40px; + height: 24px; + margin: 0 2px; + border-radius: 5px; } - .selectedPattern{ - background-color: #2196f3; - color: white; + button { + font-size: 14px; + color: #07CDCF; + background-color: #fff; + border: none; + outline: none; + cursor:pointer; + } + .mat-icon { + font-size: 22px; + vertical-align: middle; + margin-right: 3px; } } } @@ -106,13 +116,21 @@ top: 0; } .functionalDomain { - flex: 95%; + flex: 1; overflow: hidden; .functionalDomainContent { position: relative; width: 100%; height: 100%; } + .centerBuildingDiv { + position: absolute; + width: 400px; + top: 40px; + left: 240px; + z-index: 1111; + display: flex; + } .functionalDomainLeft { background-color: #fff; display: flex; @@ -120,7 +138,7 @@ margin-left: 0px; transition: margin-left 0.5s; min-width: 235px; - border: 1px solid #E6EAEE; + border: 1px solid #cacdd1; width: 235px; left: 0; z-index: 111; @@ -134,13 +152,13 @@ } } .functionalDomainRight { - z-index: 1001; + z-index: 111; margin-right: 0px; transition: margin-right 0.5s; - border: 1px solid #464646; + border: 1px solid #cacdd1; width: 235px; + min-width: 235px; right: 0; - } //右边导航栏显示隐藏 .togglePanel2 { @@ -155,26 +173,51 @@ } -//右边操作栏 -.title{ - width: 100%; - height: 35px; - background-color: #464646; - div{ - width: 50%; - height: 35px; - line-height: 35px; - background-color: #595959; - border-radius: 5px; - span{ - color: white; - font-size: 14px; - font-weight: 400; - padding-left: 5px; +//中间建筑/楼层 +.centerTotal { + flex: 49%; + background-color: #fff; + box-shadow: 0px 0px 5px 3px rgb(165, 163, 163); + border-radius: 5px; + box-sizing: border-box; + padding: 5px 0; + .centerTotalHeader { + height: 30px; + line-height: 30px; + box-sizing: border-box; + padding: 0 5px; + font-size: 14px; + .mat-icon:hover {cursor: move;;} + .mat-icon { + font-size: 24px; + color: rgb(175, 164, 164); + margin: 0 30px 0 10px; } } + .everyTotal { + width: 100%; + height: 30px; + line-height: 30px; + box-sizing: border-box; + padding: 0 5px; + margin: 3px 0; + cursor:pointer; + font-size: 16px; + } } +//中间建筑/楼层 +//右边操作栏 +.titleS{ + width: 100%; + height: 35px; + line-height: 35px; + padding-left: 5px; + box-sizing: border-box; + color: #07CDCF; + .mat-icon {vertical-align: middle; margin-right: 5px; font-size: 22px;} +} +input { border: none; outline: none; background-color: #d6dddf; box-sizing: border-box; padding-left: 5px; } //右侧属性 .property{ @@ -188,7 +231,7 @@ padding-left: 5px; } .siteproperty_size{ - background-color: #e3e3e3; + background-color: #F2F5F6; width: 93%; margin: 0 auto; border-radius: 3px; @@ -216,7 +259,8 @@ font-size: 15px; } input{ - height: 18px; + height: 24px; + border-radius: 3px; } .biginput{ display: block; @@ -405,7 +449,7 @@ div:focus { bottom: 0; height: 158px; width: auto; - z-index: 100; + z-index: 111; background-color: white; border: 1px solid #464646; .dragDiv{ @@ -413,7 +457,7 @@ div:focus { height: 3px; position: absolute; top: 0; - z-index: 1000; + z-index: 111; cursor: n-resize; } .title{ diff --git a/src/app/ui/collection-tools/collection-tools.component.ts b/src/app/ui/collection-tools/collection-tools.component.ts index 16cc996..e2b8397 100644 --- a/src/app/ui/collection-tools/collection-tools.component.ts +++ b/src/app/ui/collection-tools/collection-tools.component.ts @@ -148,7 +148,6 @@ export class CollectionToolsComponent implements OnInit { } } pattern:boolean = false//默认为基本信息编辑 - yyy(){ console.log(this.canvasData.selectPanelPoint) diff --git a/src/app/ui/collection-tools/panel.scss b/src/app/ui/collection-tools/panel.scss index 287a991..2e03c82 100644 --- a/src/app/ui/collection-tools/panel.scss +++ b/src/app/ui/collection-tools/panel.scss @@ -157,7 +157,6 @@ flex-direction: column; overflow: hidden; padding-bottom: 10px; - // border-top: 1px dashed #999; } @@ -245,13 +244,13 @@ } // 楼层/区域 是避难层时 .isRefugeStorey { - color: #fff; - background-color: rgb(238, 186, 186); + color: #FF8678; + background-color: #fff; } //选中平面图时 .selectSitePlan { color: #fff; - background-color: #6BC2FF; + background-color: #07CDCF; } //选中素材库图片时 .selectImg { diff --git a/src/app/ui/enterpriseuser/enterpriseuser.component.ts b/src/app/ui/enterpriseuser/enterpriseuser.component.ts index 67a2486..6967c81 100644 --- a/src/app/ui/enterpriseuser/enterpriseuser.component.ts +++ b/src/app/ui/enterpriseuser/enterpriseuser.component.ts @@ -47,7 +47,7 @@ export class EnterpriseuserComponent implements OnInit { RoleType: '2', PageNumber: String(this.pageNumber), } - this.http.get('/api/Users',{params:data}).subscribe((data:any)=>{ + this.http.get('/api/ExamUsers',{params:data}).subscribe((data:any)=>{ this.length = data.totalCount this.pageSize = data.pageSize this.dataSource = new MatTableDataSource