效果:
思路:
可以考虑采用模板字符串的思路实现
代码:
this.confirm(`您确定要<b style="Color: red">${text}</b>的数据项?<br/>单位名称: ${row.companyName} <br/>属性: ${row.attributeName}`)
.then(() => {
console.log('确定');
})
.catch(() => {
console.log('取消');
})