Commit 16623e3f authored by 张伯涛's avatar 张伯涛

一键启动判断有几个泵,控制是否显示选择泵的弹窗

parent 6505a2d5
......@@ -575,6 +575,7 @@ const onValueChange = (newValue) => {
};
async function TransferOpen() {
isWait.value = false
// console.log('allOptions=======:',allOptions)
// console.log('options[0].children[0].children:',options[0].children[0].children)
// console.log('options[1].children[0].children:',options[1].children[0].children)
......@@ -695,7 +696,11 @@ async function TransferOpen() {
await new Promise(resolve => setTimeout(resolve, 1000));
activeStep.value = 7;
handleSetOneStartStopTwo(stationId.value,transferId.value,false,undefined,8,undefined)
dialogFormVisible.value = true;
if(data.IsExistSecondCirculatingPump === true) {
dialogFormVisible.value = true;
}else {
OneKeyStart(1)
}
} else {
scheduledTasks() // 定时查询
ElMessage.error("未获取到一键启动数据");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment