news 2026/7/15 7:49:49

DevUI Modal 模态弹窗组件使用详解

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
DevUI Modal 模态弹窗组件使用详解

DevUI 的 Modal 组件是用于构建模态对话框的核心组件,它基于 Angular ^18.0.0 版本,提供了标准对话框、信息提示、自定义内容等多种弹窗模式,能够满足中后台产品中丰富的交互场景。

一、 标准对话框

标准对话框是最常用的模态窗口,通过dialogService服务打开。

代码示例:
html代码

<!-- 在组件模板中添加触发按钮 --><d-button(click)="openDialog()">打开标准对话框</d-button><d-buttonbsStyle="common"(click)="openDialog('standard', false)">打开无动画对话框</d-button>

Ts代码

import{Component}from'@angular/core';import{DialogService}from'ng-devui/modal';import{ModalTestComponent}from'../modal-test.component';@Component({selector:'d-basic',templateUrl:'./basic.component.html',})exportclassBasicComponent{config={id:'dialog-service',width:'346px',maxHeight:'600px',title:'Start Snapshot Version',content:ModalTestComponent,backdropCloseable:true,onClose:()=>console.log('on dialog closed'),data:{name:'Tom',age:10,address:'Chengdu',},};constructor(privatedialogService:DialogService){}openDialog(dialogtype?:string,showAnimation?:boolean){constresults=this.dialogService.open({...this.config,dialogtype:dialogtype,showAnimation:showAnimation,placement:'unset',buttons:[{cssClass:'primary',text:'Ok',disabled:false,handler:($event:Event)=>{results.modalInstance.hide();},},{id:'btn-cancel',cssClass:'common',text:'Cancel',handler:($event:Event)=>{results.modalInstance.hide();},},],});console.log(results.modalContentInstance);}}

组件逻辑说明:
在对应的 TypeScript 组件中,你需要注入DialogService并定义openDialog方法。dialogService.open方法接收一个配置对象,用于定义对话框的标题、内容、按钮等。

二、 最大化对话框



通过配置showMaximizeBtn: true,可以在对话框标题栏显示最大化/还原按钮,方便用户全屏查看内容。

关键配置:
在调用dialogService.open时,在传入的配置对象中设置showMaximizeBtn属性。

import { Component } from '@angular/core'; import { DialogService } from 'ng-devui/modal'; import { ModalTestComponent } from '../modal-test.component'; @Component({ selector: 'd-maximize', templateUrl: './maximize.component.html', }) export class MaximizeComponent { config = { id: 'dialog-service', width: '346px', maxHeight: '600px', title: 'Start Snapshot Version', content: ModalTestComponent, backdropCloseable: true, onClose: () => console.log('on dialog closed'), data: { name: 'Tom', age: 10, address: 'Chengdu', }, }; constructor(private dialogService: DialogService) {} openDialog(dialogtype?: string, showAnimation?: boolean) { const results = this.dialogService.open({ ...this.config, showMaximizeBtn: true, dialogtype: dialogtype, showAnimation: showAnimation, buttons: [ { cssClass: 'primary', text: 'Ok', disabled: false, handler: ($event: Event) => { results.modalInstance.hide(); }, }, { id: 'btn-cancel', cssClass: 'common', text: 'Cancel', handler: ($event: Event) => { results.modalInstance.hide(); }, }, ], }); console.log(results.modalContentInstance); } }

三、 自定义对话框

如果你需要完全控制对话框的内部结构和样式,可以使用modalService来创建。

代码示例:
html代码

<d-buttonbsStyle="primary"(click)="openModal()">打开自定义模态框</d-button><d-buttonbsStyle="common"(click)="openModalWithoutBtn()">打开无按钮模态框</d-button>

TS代码

mport { Component } from '@angular/core'; import { ModalService } from 'ng-devui/modal'; import { ModalAlertComponent } from './modal-alert.component'; import { ModalNoBtnComponent } from './modal-no-btn.component'; @Component({ selector: 'd-customize', templateUrl: './customize.component.html', }) export class CustomizeComponent { constructor(private modalService: ModalService) {} openModal() { const results = this.modalService.open({ id: 'modal-modal', width: '300px', backdropCloseable: false, component: ModalAlertComponent, onClose: () => { console.log('on modal closed.'); }, data: { content: 'Error: This is an error message, please take a look.', cancelBtnText: 'Ok', onClose: (event) => { results.modalInstance.hide(); }, }, }); console.log(results); } openModalWithoutBtn() { const results = this.modalService.open({ id: 'modal-no-btn', width: '300px', backdropCloseable: true, component: ModalNoBtnComponent, onClose: () => { console.log('on modal closed.'); }, data: { content: 'Error: This is an error message, please take a look.', cancelBtnText: 'Ok', onClose: (event) => { results.modalInstance.hide(); }, }, }); console.log(results); } }

ModalAlert HTML

<div[dMovable]="true"[handle]="header"[moveEl]="parent"><divclass="modal-header"#header>Custom Drag Title</div><divclass="modal-body"><div*ngIf="!!data.content">{{ data.content }}</div></div><divclass="modal-footer"><d-button(click)="close($event)"bsStyle="primary"circled="true">{{ data.cancelBtnText }}</d-button></div></div>

逻辑说明:
modalService.open方法允许你传入自定义的组件或模板作为弹窗内容,提供了最高的灵活性。

四、 拦截对话框关闭

在用户尝试关闭对话框(如点击关闭按钮、遮罩层或按ESC键)时,可以通过beforeHidden回调函数进行拦截。常用于表单填写未保存时的二次确认。

代码示例:

<d-buttonbsStyle="common"(btnClick)="openPreventCloseDialog()">打开可拦截关闭的对话框</d-button>

关键配置:
在对话框配置中定义beforeHidden函数,该函数需要返回一个Promise<boolean>Observable<boolean>。返回false或解析为false的 Promise/Observable 可以阻止关闭。

五、 信息提示

DevUI 提供了便捷的方法来打开成功、失败、警告和信息提示四种类型的提示框,样式和图标已内置。

代码示例:

<divclass="btn-group"><d-buttonbsStyle="common"(click)="openDialog('success')">成功提示</d-button><d-buttonbsStyle="common"(click)="openDialog('failed')">失败提示</d-button><d-buttonbsStyle="common"(click)="openDialog('warning')">警告提示</d-button><d-buttonbsStyle="common"(click)="openDialog('info')">信息提示</d-button></div>

六、 更新弹出框按钮状态

对话框打开后,可以通过获取到的对话框实例引用,动态更新其按钮的配置(如文字、禁用状态等)。

关键方法:
open方法返回的对话框实例上调用update方法,传入新的buttons配置数组。

七、 配置按钮自动获得焦点

通过配置buttons数组中的autofocus属性,可以让对话框内的某个按钮在打开后自动获得焦点,用户可以直接按回车键触发。

配置示例:

buttons:[{id:'btn-ok',text:'确定',autofocus:true,// 此按钮将自动获得焦点handler:($event:Event)=>{/* 处理逻辑 */}}]

八、 自定义弹出框内容模板

除了传入组件,还可以通过 Angular 的<ng-template>定义内容模板,为对话框提供灵活的内容。

代码示例:

<d-buttonbsStyle="common"(click)="openTemplateDialog()">打开模板对话框</d-button><ng-template#dialogContentlet-modalInstance="modalInstance"><!-- 你的自定义内容 --><p>这里是通过模板传入的内容。</p><p>可以获取到模态框实例:{{ modalInstance }}</p></ng-template>

逻辑说明:
在调用服务打开时,将模板引用变量作为contentTemplate参数传入。模板可以通过上下文获取到modalInstance等实例进行交互。

九、 通过外层 fixed 同时避免滚动和抖动

在复杂页面中,为了避免弹窗打开时背景页面滚动或发生抖动,可以将弹窗挂载到具有fixed定位的外层容器中。

注意事项:
使用此方式时,页面内所有其他fixed定位的元素需要给定具体的位置值(如top,left),使用默认的auto可能会导致位置偏移。

十、 场景案例与设计理念

Modal 组件旨在模拟真实的页面交互场景,其设计遵循 DevUI高效、开放、可信、乐趣的价值观,源自华为内部大量业务实践的沉淀。它通过丰富的配置项和 API,帮助开发者在各类中后台场景中快速构建稳定、易用的弹窗交互。

总结

DevUI 的 Modal 组件是一个功能强大且灵活的企业级弹窗解决方案。从简单的信息提示到复杂的自定义内容交互,它都能通过清晰的服务接口和配置项予以实现。掌握上述核心用法,将能有效提升你在 Angular 项目中处理模态交互的效率与体验。

参考资料

MateChat:https://gitcode.com/DevCloudFE/MateChat
MateChat官网:https://matechat.gitcode.com
DevUI官网:https://devui.design/home

版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/7/11 18:05:30

系统管理shutdown命令

shutdown命令行关机命令。shutdown [{-i|-l|-s|-r|-a}] [-f] [-m \\computername] [-t xx] [-c "message"]命令参数&#xff1a;-i 显示图形化界面&#xff0c;必须是第一个参数。-l 注销当前用户&#xff0c;默认设置。-s 关闭本地计算机。-r 重新启动。-a 终止关…

作者头像 李华
网站建设 2026/7/12 21:24:38

AOT 与 GraalVM Native Image 深度解析

文章目录AOT 与 GraalVM Native Image 深度解析原理、性能、限制与传统JVM替代路线图&#x1f4cb; 目录⚡ 一、AOT编译技术革命&#x1f4a1; AOT vs JIT&#xff1a;编译时机的根本差异&#x1f3af; AOT技术栈演进&#x1f527; 二、GraalVM Native Image原理深度解析&#…

作者头像 李华
网站建设 2026/7/14 1:22:21

告别单位换算烦恼!进销存软件让生意更省心

“老板&#xff0c;工地要300根钢筋&#xff0c;咱们库存够吗&#xff1f;”“仓库报过来2吨&#xff0c;我算算……哦不对&#xff0c;这批钢筋是每根12千克&#xff0c;2吨到底是多少根来着&#xff1f;”“还有上次剩的半捆&#xff0c;换算成根又得重新算……” 这样的纠结…

作者头像 李华
网站建设 2026/7/14 10:47:33

KAT-V1-40B:重新定义大模型推理效率的AutoThink技术革命

KAT-V1-40B&#xff1a;重新定义大模型推理效率的AutoThink技术革命 【免费下载链接】KAT-V1-40B 项目地址: https://ai.gitcode.com/hf_mirrors/Kwaipilot/KAT-V1-40B 在当今AI技术快速发展的浪潮中&#xff0c;快手开源的KAT-V1-40B大模型以其创新的AutoThink双模式推…

作者头像 李华
网站建设 2026/7/15 18:26:21

计算机毕业设计springboot灾区物资管理系统 基于SpringBoot的灾后救援物资调配平台 SpringBoot驱动的应急物资供应链管理系统

计算机毕业设计springboot灾区物资管理系统sm768kx9 &#xff08;配套有源码 程序 mysql数据库 论文&#xff09; 本套源码可以在文本联xi,先看具体系统功能演示视频领取&#xff0c;可分享源码参考。当自然灾害突袭&#xff0c;道路中断、通讯失联、物资短缺&#xff0c;每一秒…

作者头像 李华
网站建设 2026/7/15 2:27:49

关于人工智能和就业的一线希望

最新的就业数据描绘了劳动力市场的严峻图景&#xff0c;人工智能对其造成了明显的破坏。继今年早些时候对应届毕业生失业的警告之后&#xff0c;最新报告表明人工智能的影响正在影响更广泛的工人群体。十月裁员超过15万人&#xff0c;是二十多年来最严重的十月&#xff0c;其中…

作者头像 李华