This commit is contained in:
张成
2025-10-09 23:13:42 +08:00
parent f91206702b
commit 1d3eb75c64
28 changed files with 118 additions and 832 deletions

View File

@@ -188,13 +188,13 @@ tools.throttle(fn, 500)
const uiTool = framework.uiTool
// 成功提示
uiTool.success('操作成功')
window.framework.uiTool.success('操作成功')
// 错误提示
uiTool.error('操作失败')
window.framework.uiTool.error('操作失败')
// 确认对话框
uiTool.confirm('确定删除吗?').then(() => {
window.framework.uiTool.confirm('确定删除吗?').then(() => {
// 确认后的操作
})
```