//走一种
<div v-if="other_prescription != ''">
<span v-for="item in extractionss" :key="item">{{ item.medicine_ipt1 }} {{item.medicine_ipt2}}g</span>
</div>
<div v-else-if="extractions != ''">
<span v-for="item in extractionsss" :key="item">{{ item.medicine_ipt1 }} {{item.medicine_ipt2}}g</span>
</div>
<div v-else>
2021-08-08888
该博客内容涉及 Vue 模板中的条件渲染,使用 v-if 和 v-else-if 分支结构展示不同内容。当 `other_prescription` 不为空时,显示 `extractionss` 列表中的药品剂量;否则,如果 `extractions` 不为空,则展示 `extractionsss` 中的药品剂量信息。
摘要由CSDN通过智能技术生成