邵佳豪 4 years ago
parent
commit
43a7fb3805
  1. 6
      src/app/plan-management/create-plan-online-five/create-plan-online-five.component.html
  2. 55
      src/app/plan-management/create-plan-online-five/create-plan-online-five.component.scss
  3. 2
      src/app/plan-management/entry-plan-look/entry-plan-look.component.ts
  4. 4
      src/app/ui/plan-template/addKeyname.html
  5. 7
      src/app/ui/plan-template/plan-template.component.ts
  6. 4
      src/app/ui/plan-template/upPlan.html

6
src/app/plan-management/create-plan-online-five/create-plan-online-five.component.html

@ -681,7 +681,7 @@
display: flex;
flex-direction: column;
overflow-y: auto;">
<div *ngFor="let itemunit of item.building;let uniti=index" style="border-bottom: 3px solid #999;">
<div *ngFor="let itemunit of planTemplateData[1].building;let uniti=index"> <!-- style="border-bottom: 3px solid #999;" -->
<div *ngIf="itemunit.completed">
<div class="unithead" style=" height: 40px;
width: 100%;
@ -1022,14 +1022,14 @@
<input type="text" placeholder="请输入内容" style="width: 60%;background-color: #FFFFFF;" [(ngModel)]="parts.body[4].value" *ngIf="pattern == 'edit'">
<table *ngIf="pattern == 'look'" style="width: 100%;border-collapse: collapse;">
<tr>
<th style="border: 1px solid #999;
<th style="
height: 40px;width: 185px;
font-size: 16px;
text-align: center;">
{{parts.body[4].name}}
<!-- <textarea style="height: 100%;width: 100%;" [(ngModel)]="parts.body[4].name" disabled></textarea> -->
</th>
<td style="border: 1px solid #999;
<td style="
height: 40px;width: 185px;
font-size: 16px;
text-align: center;">

55
src/app/plan-management/create-plan-online-five/create-plan-online-five.component.scss

@ -236,7 +236,7 @@
span{
text-align: center;
font-size: 16px;
color: #2196f3;
color: #2196F3;
height: 40px;
line-height: 40px;
}
@ -250,14 +250,14 @@
margin: 10px;
width: 280px;
height: 32px;
background-color: #e8e9e9;
background-color: #E8E9E9;
border-radius: 20px;
display: flex;
.searchChoose{
width: 30%;
height: 70%;
margin-top: 2%;
border-right: 1px solid #9eaab4;
border-right: 1px solid #9EAAB4;
//text-align: center;
select{
background-color: transparent;
@ -280,13 +280,14 @@
height: 100%;
border: none;
outline: none;
background-color: #e8e9e9;
background-color: #E8E9E9;
//line-height: 32px;
//border-radius: 3px;
}
.queryField {
height: 32px;
//margin: 0 10px;
}
.ordiv{
position: relative;
@ -327,6 +328,7 @@
background:rgba(225, 225, 225, 0.8);
}
}
}
.zdy{
width: 100%;
@ -793,16 +795,18 @@
width: 100%;
display: flex;
flex-direction: column;
}
.onetext{
height: 40px;
width: 100%;
border-bottom: 1px solid #f2f4f5;
border-bottom: 1px solid #F2F4F5;
span{
height: 40px;
width: 40%;
font-size: 16px;
background-color: #f2f4f5;
background-color: #F2F4F5;
}
input{
height: 40px;
@ -810,7 +814,7 @@
font-size: 16px;
border: none;
outline: none;
border-bottom: 1px solid #f2f4f5;
border-bottom: 1px solid #F2F4F5;
}
img{
height: 20px;
@ -849,8 +853,7 @@
justify-content: space-between;
flex-wrap: wrap;
//flex-direction: column;
.adjtop,
.adjbottom {
.adjtop,.adjbottom{
width: 100%;
height: 50%;
display: flex;
@ -863,19 +866,21 @@
font-size: 16px;
border: none;
outline: none;
}
}
}
.fourTexttwo{
height: 40px;
width: 50%;
border-bottom: 1px solid #f2f4f5;
border-bottom: 1px solid #F2F4F5;
input{
height: 40px;
//width: 60%;
font-size: 16px;
border: none;
outline: none;
}
}
}
@ -915,7 +920,7 @@
width: 100%;
height: 40px;
display: flex;
border-bottom: 1px solid #ffffff;
//border-bottom: 1px solid #FFFFFF;
.duohangHalf{
height: 40px;
width: 50%;
@ -998,7 +1003,7 @@
width: 100%;
height: 36px;
line-height: 36px;
background-color: #2196f3;
background-color: #2196F3;
text-align: center;
color: white;
}
@ -1016,7 +1021,7 @@
.oldData{
width: 100px;
height: 36px;
background-color: #ffffff;
background-color: #FFFFFF;
border-radius: 0px 60px 60px 0px;
position: fixed;
right: 25.3%;
@ -1208,27 +1213,3 @@
}
}
.cdk-drag-preview {
height: 36px;
line-height: 36px;
background: white;
color: #8b8c8c;
margin: 0 3px;
text-align: center;
box-sizing: border-box;
padding: 0 10px;
font-size: 14px;
overflow: hidden; /*超出部分隐藏*/
white-space: nowrap; /*不换行*/
text-overflow: ellipsis; /*超出部分文字以...显示*/
box-sizing: border-box;
border-radius: 40px;
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14),
0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.cdk-drag-placeholder {
opacity: 0;
}
.cdk-drag-animating {
transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}

2
src/app/plan-management/entry-plan-look/entry-plan-look.component.ts

@ -862,7 +862,7 @@ export class AddPlanone {
this.onlineedit = false
this.website = false
}
if (formdata.value.firstCtrltwo == '16' && formdata.value.firstCtrlthree != '4') {
if (formdata.value.firstCtrltwo == '16' ) {//&& formdata.value.firstCtrlthree != '4'
this.localup = true
this.inputword = true
this.onlineedit = false

4
src/app/ui/plan-template/addKeyname.html

@ -4,7 +4,7 @@
* @Author: sueRimn
* @Date: 2021-05-20 16:11:57
* @LastEditors: sueRimn
* @LastEditTime: 2021-06-15 09:56:11
* @LastEditTime: 2021-09-02 13:58:13
-->
<div class="box">
<div class="top">
@ -23,7 +23,7 @@
<mat-form-field>
<mat-select placeholder='请选择预案级别' name="level" [(ngModel)]="level" required>
<mat-option value=3>Ⅲ级</mat-option>
<!-- <mat-option value=4>Ⅳ级</mat-option> -->
<mat-option value=4>Ⅳ级</mat-option>
<mat-option value=5>Ⅴ级</mat-option>
</mat-select>
</mat-form-field>

7
src/app/ui/plan-template/plan-template.component.ts

@ -4,7 +4,7 @@
* @Author: sueRimn
* @Date: 2021-05-31 10:40:01
* @LastEditors: sueRimn
* @LastEditTime: 2021-08-07 15:21:06
* @LastEditTime: 2021-09-02 14:06:11
*/
import { Component, Inject, OnInit,ViewEncapsulation } from '@angular/core';
@ -177,8 +177,9 @@ export class PlanTemplateComponent implements OnInit {
data:null
}
let aaa = await new Promise((resolve, reject)=>{
delete this.newleftTabledata[this.leftclicki].data[0].attribute[1].attinf
delete this.newleftTabledata[this.leftclicki].data[0].attribute[3].attinf
console.log(this.newleftTabledata)
//delete this.newleftTabledata[this.leftclicki].data
//delete this.newleftTabledata[this.leftclicki].data[0].attribute[3].attinf
this.http.post("/api/PlanTemplate",savaData).subscribe((data:any)=>{
this.newleftTabledata[this.newleftTabledata.length-1].id=''
this.newleftTabledata[this.newleftTabledata.length-1].id=data.id

4
src/app/ui/plan-template/upPlan.html

@ -4,7 +4,7 @@
* @Author: sueRimn
* @Date: 2021-05-21 10:43:28
* @LastEditors: sueRimn
* @LastEditTime: 2021-08-07 15:04:56
* @LastEditTime: 2021-09-02 13:58:57
-->
<!--
* @Descripttion:
@ -32,7 +32,7 @@
<mat-form-field>
<mat-select placeholder='请选择预案级别' name="unittype" [(ngModel)]="level" required>
<mat-option value="3">Ⅲ级</mat-option>
<!-- <mat-option value="4">Ⅳ级</mat-option> -->
<mat-option value="4">Ⅳ级</mat-option>
<mat-option value="5">Ⅴ级</mat-option>
</mat-select>
</mat-form-field>

Loading…
Cancel
Save