- Element ui 默认的宽度是 420px 在移动端长度太长,需要审批
 
- 解决方案
 
this.$confirm('请先确认签名是否正确,一旦签名成功,无法撤销?', '提示', {  | |
confirmButtonText: '确定',  | |
cancelButtonText: '取消',  | |
type: 'warning',  | |
customClass: 'msgbox'  | |
}).then(() => {  | |
}).catch(e => {  | |
}); | 
customClass: 'msgbox' 给弹出框加一个额外的 class 名称
@media (max-width: 720px) {  | |
.msgbox{  | |
width: 320px !important;  | |
        } | |
    } |