From d7d4684a3be1a10a771f370b9c6064cea6048a99 Mon Sep 17 00:00:00 2001 From: cpf <1105965053@qq.com> Date: Thu, 17 Dec 2020 11:30:47 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=20=E8=80=83=E5=AE=98?= =?UTF-8?q?=E7=BC=96=E5=88=B6=E5=B7=A5=E5=85=B7=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/canvas-share-data.service.ts | 3 +-- .../collection-tools.component.html | 24 ++++++++++--------- .../collection-tools.component.scss | 11 ++------- .../collection-tools.component.ts | 21 ++++------------ .../examinationQuestions.html | 5 +++- .../collection-tools/examinationQuestions.ts | 18 +++++--------- .../ui/collection-tools/uploadQuestions.html | 4 ---- 7 files changed, 31 insertions(+), 55 deletions(-) diff --git a/src/app/canvas-share-data.service.ts b/src/app/canvas-share-data.service.ts index 15b4de8..fe62f82 100644 --- a/src/app/canvas-share-data.service.ts +++ b/src/app/canvas-share-data.service.ts @@ -8,11 +8,10 @@ import { GameMode } from './working-area/model/gameMode'; export class CanvasShareDataService { constructor() { } private _sendMessage: ReplaySubject = new ReplaySubject(1); - GameMode: any; isChange = false; // 数据 是否改动 - selectTemplateData: any; // 选择当前 模板数据 + selectTemplateData: any; // 选择当前 素材库模板数据 // 总平面图/建筑 楼层 selectStorey: any = {area: '', details: ''}; // 选择当前 楼层 数据 diff --git a/src/app/ui/collection-tools/collection-tools.component.html b/src/app/ui/collection-tools/collection-tools.component.html index 4760694..f5daa5e 100644 --- a/src/app/ui/collection-tools/collection-tools.component.html +++ b/src/app/ui/collection-tools/collection-tools.component.html @@ -4,7 +4,6 @@
{{examMsg.conpanyName}}
- @@ -19,16 +18,19 @@
-
open_with建筑总平面图
-
总平面图
-
+
+ open_with + +
+
{{item.name}}
-
-
-
+
+
+
总平面图
+
{{item.name}}
@@ -102,7 +104,7 @@
- + @@ -110,7 +112,7 @@ {{node.name}} ({{node.children.length}}) - check_circle_outline + visibility @@ -125,7 +127,7 @@ {{node.name}} ({{node.children.length}}) - check_circle_outline + visibility diff --git a/src/app/ui/collection-tools/collection-tools.component.scss b/src/app/ui/collection-tools/collection-tools.component.scss index ee90d8f..be59497 100644 --- a/src/app/ui/collection-tools/collection-tools.component.scss +++ b/src/app/ui/collection-tools/collection-tools.component.scss @@ -43,17 +43,10 @@ } } .headerRight { - width: 450px; + width: 350px; 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; - } button { font-size: 14px; color: #07CDCF; @@ -175,6 +168,7 @@ //中间建筑/楼层 .centerTotal { + max-width: 199px; flex: 49%; background-color: #fff; box-shadow: 0px 0px 5px 3px rgb(165, 163, 163); @@ -357,7 +351,6 @@ input { border: none; outline: none; background-color: #d6dddf; box-sizing: bord div:focus { outline: none; } - //没有图片时显示无图片背景图 .noImgCss{ background: url(../../../assets/images/noImg.png) no-repeat center center; diff --git a/src/app/ui/collection-tools/collection-tools.component.ts b/src/app/ui/collection-tools/collection-tools.component.ts index 758ee55..cd4e9d3 100644 --- a/src/app/ui/collection-tools/collection-tools.component.ts +++ b/src/app/ui/collection-tools/collection-tools.component.ts @@ -59,6 +59,8 @@ export class CollectionToolsComponent implements OnInit { allBuildings //该单位所有建筑 beforeOneCheckedBuilding:any = {name:"总平面图"}; //当前点击选择的建筑 + beforeOneCheckedBuildingIsShow:boolean = false; //建筑是否显示 + togglebeforeOneCheckedBuilding () { this.beforeOneCheckedBuildingIsShow = !this.beforeOneCheckedBuildingIsShow } checkedBuildingIndex:number = -1 //当前点击选择的建筑index isEditPat:boolean = true //当前是否是编辑模式 @@ -150,9 +152,6 @@ export class CollectionToolsComponent implements OnInit { } pattern:boolean = false//默认为基本信息编辑 - yyy(){ - console.log(this.canvasData.selectPanelPoint) - } //基本信息编辑模式 baseInfo(){ if (!this.pattern) { @@ -629,9 +628,8 @@ export class CollectionToolsComponent implements OnInit { isSixbtn = true //控制想定作业编辑按钮 isxxx = true //控制查看编辑模式的编辑模式按钮 examMsg = { //单位,考试信息 - conpanyName: sessionStorage.getItem('companyName'), //单位名称 + conpanyName: sessionStorage.getItem('companyName') || '暂无数据', //单位名称 keynote: '', //考试要点 - grade: '', //分数 } ngOnInit(): void { @@ -657,8 +655,6 @@ export class CollectionToolsComponent implements OnInit { } - - ngAfterViewInit(): void { this.getSitePlan() //获取总平面图/楼层 @@ -1015,14 +1011,6 @@ export class CollectionToolsComponent implements OnInit { }) } - //拖拽tree - drop(e){ - console.log(1111,e) - } - drop2(e){ - console.log(222,e) - } - //创建建筑 createBuilding(){ let data = { @@ -1325,8 +1313,9 @@ export class CollectionToolsComponent implements OnInit { } //封装 刷新 tree 数据 - async renovateTreeData (isRefresh:boolean = true) { + async renovateTreeData (isRefresh:boolean = true) { this.allFireElements[this.allFireElements.length-1].children = [] + this.beforeOneCheckedBuildingIsShow = false isRefresh? await this.canvas.refresh() : null this.canvas.setNameVisible(this.basicInfo,0) this.canvas.setNameVisible(this.wantToWork,1) diff --git a/src/app/ui/collection-tools/examinationQuestions.html b/src/app/ui/collection-tools/examinationQuestions.html index c0d1369..02cc183 100644 --- a/src/app/ui/collection-tools/examinationQuestions.html +++ b/src/app/ui/collection-tools/examinationQuestions.html @@ -29,5 +29,8 @@
-
+
+ + +
\ No newline at end of file diff --git a/src/app/ui/collection-tools/examinationQuestions.ts b/src/app/ui/collection-tools/examinationQuestions.ts index d441b0b..03a2a91 100644 --- a/src/app/ui/collection-tools/examinationQuestions.ts +++ b/src/app/ui/collection-tools/examinationQuestions.ts @@ -39,6 +39,11 @@ export class examinationQuestions { this.treeControl.expandAll() } + //提交 + submit () { + console.log(this.data) + } + } @Component({ @@ -76,18 +81,7 @@ export class uploadQuestions { //上传 submit () { - if (this.data.question.grade && this.data.question.keynote) { - const config = new MatSnackBarConfig(); - config.verticalPosition = 'top'; - config.duration = 3000 - this.snackBar.open('上传成功','确定',config); - this.dialogRef.close() - } else { - const config = new MatSnackBarConfig(); - config.verticalPosition = 'top'; - config.duration = 3000 - this.snackBar.open('请填写必填项','确定',config); - } + console.log(this.data.question) } } \ No newline at end of file diff --git a/src/app/ui/collection-tools/uploadQuestions.html b/src/app/ui/collection-tools/uploadQuestions.html index 6e0988b..5f192fa 100644 --- a/src/app/ui/collection-tools/uploadQuestions.html +++ b/src/app/ui/collection-tools/uploadQuestions.html @@ -1,9 +1,5 @@
上传
-
设置分数
-
- -
考试要点