if (this.flag == "1") {
var msg = await this.getMsg(row);
if (!!msg) {
// confirm加滚动条
await this.$confirm(`<div style="max-height: 300px;overflow: auto"> ${msg} </div>`, '请确认是否继续提交', { dangerouslyUseHTMLString: true }, {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning '
}).then(() => {
}).catch()
}
this.testFunction();
}
}
加上 await 可以按顺序执行,先执行confirm提示,在执行 testFunction() 方法。