fix : 隧道模拟功能初步完成

This commit is contained in:
dj
2025-01-03 21:14:54 +08:00
parent 472bc3cb83
commit 56bdf6ee1e

View File

@@ -209,8 +209,15 @@ const submitDevice = () => {
getScreenInfo(previewId, true);
};
const simulatedBlasting = async () => {
await blastingSimulation(previewId, 10);
const simulatedBlasting = () => {
ElMessageBox.confirm(`是否确定模拟爆破`, '系统提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
customClass: 'delBox'
}).then(() => {
blastingSimulation(previewId, 10);
})
};
const endSimulate = async () => {
isStartSimulate.value = true;