|
@@ -203,7 +203,7 @@
|
|
|
<template #suffix>
|
|
|
<a-tooltip>
|
|
|
<template #title>
|
|
|
- <div>默认: 53秒</div>
|
|
|
+ <div>需大于0,默认: 53秒</div>
|
|
|
</template>
|
|
|
<info-circle-outlined style="color: rgba(0, 0, 0, 0.45)" />
|
|
|
</a-tooltip>
|
|
@@ -317,7 +317,10 @@ const saveBaseConfig = async () => {
|
|
|
height: baseFormState.installHeight,
|
|
|
northAngle: baseFormState.northAngle,
|
|
|
tenantId: baseFormState?.tenantId,
|
|
|
- fallingConfirm: Number(baseFormState?.fallingConfirm),
|
|
|
+ fallingConfirm:
|
|
|
+ Number(baseFormState?.fallingConfirm) > 0
|
|
|
+ ? Number(baseFormState?.fallingConfirm)
|
|
|
+ : null,
|
|
|
})
|
|
|
saveBaseLoading.value = false
|
|
|
message.success('保存成功')
|