feat: Bug #597 - 新增医嘱弹窗添加备注字段 + 查询返回remark

This commit is contained in:
2026-05-28 11:24:59 +08:00
parent fbdcd815bd
commit 2e267b4353
4 changed files with 25 additions and 3 deletions

View File

@@ -285,6 +285,9 @@
</el-select>
</template>
</div>
<el-form-item label="备注:" prop="remark">
<el-input v-model="row.remark" maxlength="50" placeholder="最多50字" style="width: 200px" />
</el-form-item>
<div class="form-actions">
<el-button type="primary" @click="handleSave">确定</el-button>
<el-button @click="handleCancel">取消</el-button>
@@ -365,6 +368,9 @@
总金额{{ row.totalPrice ? Number(row.totalPrice).toFixed(2) + ' ' : '0.00 ' }}
</span>
</div>
<el-form-item label="备注:" prop="remark">
<el-input v-model="row.remark" maxlength="50" placeholder="最多50字" style="width: 200px" />
</el-form-item>
<div class="form-actions">
<el-button type="primary" @click="handleSave">确定</el-button>
<el-button @click="handleCancel">取消</el-button>
@@ -418,6 +424,9 @@
<!-- 金额: {{ row.priceList[0].price }} -->
</span>
</div>
<el-form-item label="备注:" prop="remark">
<el-input v-model="row.remark" maxlength="50" placeholder="最多50字" style="width: 200px" />
</el-form-item>
<div class="form-actions">
<el-button type="primary" @click="handleSave">确定</el-button>
<el-button @click="handleCancel">取消</el-button>