住院医生站:开立诊疗项目时,明细配置区的项目单价显示为负数

This commit is contained in:
2026-04-30 17:12:10 +08:00
parent 616aa46a0c
commit a007721c8f

View File

@@ -371,7 +371,9 @@
<div style="display: flex; align-items: center; margin-bottom: 16px; gap: 16px"> <div style="display: flex; align-items: center; margin-bottom: 16px; gap: 16px">
<span style="font-size: 16px; font-weight: 600"> <span style="font-size: 16px; font-weight: 600">
{{ row.adviceName }} {{ row.adviceName }}
{{ row.unitPrice ? ' -' + Number(row.unitPrice).toFixed(2) + '元' : ' -元' }} <template v-if="row.unitPrice != null && row.unitPrice !== ''">
{{ Number(row.unitPrice).toFixed(2) }}
</template>
</span> </span>
<div class="form-group"> <div class="form-group">
<el-form-item <el-form-item