diff --git a/src/app/ui/collection-tools/examinationQuestions.html b/src/app/ui/collection-tools/examinationQuestions.html index 02cc183..6435d88 100644 --- a/src/app/ui/collection-tools/examinationQuestions.html +++ b/src/app/ui/collection-tools/examinationQuestions.html @@ -1,32 +1,25 @@ -
+
消防设施考题设定
- - - - - - {{node.name}} - - ({{node.children.length}}) - - - - - - - {{node.name}} - - ({{node.children.length}}) - - - - + + + +
+ +
+
diff --git a/src/app/ui/collection-tools/examinationQuestions.ts b/src/app/ui/collection-tools/examinationQuestions.ts index 03a2a91..3f50a0d 100644 --- a/src/app/ui/collection-tools/examinationQuestions.ts +++ b/src/app/ui/collection-tools/examinationQuestions.ts @@ -15,30 +15,16 @@ export class examinationQuestions { constructor(private http:HttpClient, public dialog: MatDialog, public snackBar: MatSnackBar, public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data) {} - // tree配置 - private _transformer = (node, level: number) => {//要给渲染节点传那些属性参数 - return { - expandable: !!node.children && node.children.length > 0, - name: node.name || node.Name, - level: level, - id: node.id || node.Id, - children:node.children, - isTemplate:node.isTemplate, - isNewElement:node.isNewElement, - isLook:node.isLook, - isLookPattern:node.isLookPattern || null - }; - } - treeControl = new FlatTreeControl(node => node.level, node => node.expandable); - treeFlattener = new MatTreeFlattener(this._transformer, node => node.level, node => node.expandable, node => node.children); - dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); - hasChild = (_: number, node: any) => node.expandable; + defaultCheckedKeys = []; //指定选中复选框的树节点 key值 + defaultExpandedKeys = []; //展开指定的树节点 key值 + defaultSelectedKeys = []; //指定选中的树节点 key值 ngOnInit(): void { - this.dataSource.data = this.data.treeData - this.treeControl.expandAll() + console.log(this.data.treeData) } + nzEvent($event,key){ + } //提交 submit () { console.log(this.data) diff --git a/src/assets/css/ngZorroTree.css b/src/assets/css/ngZorroTree.css index 8f8eecf..575ecdc 100644 --- a/src/assets/css/ngZorroTree.css +++ b/src/assets/css/ngZorroTree.css @@ -344,7 +344,7 @@ text-align: center; cursor: pointer } -#createtestscore .ant-tree .ant-tree-switcher { +#createtestscore,#nodeTree .ant-tree .ant-tree-switcher { line-height: 22px; }