Browse Source

[完善]bug修改

tianjin
邵佳豪 2 years ago
parent
commit
75d7e634af
  1. 4
      src/app/plan-management/create-plan-online-five/create-plan-online-five.component.html
  2. 24
      src/app/plan-management/create-plan-online-five/create-plan-online-five.component.ts
  3. 4
      src/index.html

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

@ -439,7 +439,7 @@
</div>
<div class="centerBox"
*ngIf="item.groupName!='单位概况'&&item.groupName!='交通水源'&&item.groupName!='重点图示'&&item.groupName!='预案附件'&&item.groupName!='封面'">
<div class="titleItem">
@ -1054,7 +1054,7 @@
line-height: 40px;
color: #b99a00;">{{element.headName}}</span>
<img src="../../../assets/images/delyello.png"
*ngIf="pattern == 'edit'" (click)='delTd(key,i)'>
*ngIf="pattern == 'edit'" (click)='delTd2(key,i,uniti,elei)'>
<img src="../../../assets/images/updateyello.png"
*ngIf="(element.level==1||element.level==2)&&pattern == 'edit'"
(click)='updataHl(key,uniti,elei,i)'>

24
src/app/plan-management/create-plan-online-five/create-plan-online-five.component.ts

@ -698,7 +698,6 @@ export class CreatePlanOnlineFiveComponent implements OnInit {
`/api/PlanComponents/${this.route.snapshot.queryParams.planId}/WebText`
)
.subscribe((data: any) => {
// console.log("预案内容", JSON.parse(data.webTextData));
if (
this.route.snapshot.queryParams.planMode == 4 &&
data.webTextData == null
@ -767,7 +766,8 @@ export class CreatePlanOnlineFiveComponent implements OnInit {
this.planTemplateData.unshift(obj);
} else if (this.planTemplateData[0].groupName == "封面") {
this.planTemplateData[0].attribute.objName = this.unitData.name;
this.planTemplateData[0].attribute.planName = this.route.snapshot.queryParams.planName;
this.planTemplateData[0].attribute.planName =
this.route.snapshot.queryParams.planName;
}
this.planTemplateData.forEach((element) => {
if (element.groupName == "重点图示") {
@ -828,6 +828,7 @@ export class CreatePlanOnlineFiveComponent implements OnInit {
});
console.log(this.planTemplateData);
}
console.log("6666", this.planTemplateData);
resolve(data);
});
});
@ -1513,6 +1514,12 @@ export class CreatePlanOnlineFiveComponent implements OnInit {
}
//四种类型删除一行
delTd(key, i, tri?: number, uniti?: number, elei?: number) {
// console.log("删除1", key);
// console.log("删除2", i);
// console.log("删除3", tri);
// console.log("删除4", uniti);
// console.log("删除5", elei);
// console.log("删除6", this.planTemplateData);
const config = new MatSnackBarConfig();
config.verticalPosition = "top";
config.duration = 3000;
@ -1531,6 +1538,19 @@ export class CreatePlanOnlineFiveComponent implements OnInit {
}
}
}
delTd2(key, i, uniti, elei) {
// console.log(key, i, uniti, elei);
const config = new MatSnackBarConfig();
config.verticalPosition = "top";
config.duration = 3000;
let isTrue = confirm("您确定要删除该条信息吗");
if (isTrue) {
// console.log(this.planTemplateData[key].building[uniti].body[elei].attinf);
this.planTemplateData[key].building[uniti].body[elei].attinf.splice(i, 1);
}
}
//修改多行文本,表格行列数量
updataHl(...num: number[]) {
const dialogRef = this.dialog.open(updataHl, {

4
src/index.html

@ -31,9 +31,9 @@
securityJsCode: '0afa0b144398727fad2ca06f5f7156b3'
}
</script>
<script
<!-- <script
src="http://10.81.73.39:8000/webapi/maps?v=2.0&key=17bb9b27e49451cde8f2e6655b11ff1a&plugin=AMap.Driving,AMap.MouseTool,AMap.RangingTool"></script>
<script src="http://10.81.73.39:8000/webapi/ui/1.1/main.js"></script>
<script src="http://10.81.73.39:8000/webapi/ui/1.1/main.js"></script> -->
<!-- <script
src="https://webapi.amap.com/maps?v=2.0&key=17bb9b27e49451cde8f2e6655b11ff1a&plugin=AMap.Driving,AMap.MouseTool,AMap.RangingTool"></script>
<script src="https://webapi.amap.com/ui/1.1/main.js"></script> -->

Loading…
Cancel
Save