fix: 参数范围值修改
Build and Deploy Vue3 / build (push) Successful in 1m26s
Build and Deploy Vue3 / deploy (push) Successful in 1m28s

This commit is contained in:
2026-04-17 19:27:25 +08:00
parent c7245cec67
commit 2916c04ba5
3 changed files with 204 additions and 6 deletions
@@ -180,7 +180,7 @@
<template v-if="currentParam?.type === 'select'">{{ row.value || '-' }}</template>
<template v-else-if="currentParam?.type === 'number'">
<el-tag size="small" type="info">
{{ getRangeTypeText(row.rangeType) }} {{ formatPhaseDisplay(row.phase || row.range) }}
{{ getRangeTypeText(row.rangeType) }} {{ (row.phase != null && row.phase !== '') ? row.phase : 0 }}
</el-tag>
</template>
<template v-else>{{ row.value || '-' }}</template>