621 [系统管理-诊疗目录] 诊疗项目(如空调费)编辑/新增保存成功后,再次编辑时“零售价”字段回显为空

622
[系统管理-诊疗目录] 诊疗项目编辑弹窗中,除编号外的大部分核心字段(零售价、目录分类等)无法编辑
This commit is contained in:
wangjian963
2026-05-29 15:47:05 +08:00
parent e3c0e700a5
commit ba5ac84d96
2 changed files with 1 additions and 8 deletions

View File

@@ -112,7 +112,7 @@ public class MedicationRequest extends HisBaseEntity {
private String supportInfo; private String supportInfo;
/** 退回原因 */ /** 退回原因 */
private String backReason; private String backReason = "";
/** 请求开始时间 */ /** 请求开始时间 */
private Date reqAuthoredTime; private Date reqAuthoredTime;

View File

@@ -115,7 +115,6 @@
v-model="form.categoryCode" v-model="form.categoryCode"
clearable clearable
filterable filterable
:disabled="form.isEditInfoDisable === 1"
no-data-text="" no-data-text=""
> >
<el-option <el-option
@@ -192,7 +191,6 @@
clearable clearable
filterable filterable
style="width: 240px" style="width: 240px"
:disabled="form.isEditInfoDisable === 1 || form.isEditInfoDisable === 2"
no-data-text="" no-data-text=""
> >
<el-option <el-option
@@ -258,7 +256,6 @@
placeholder="" placeholder=""
clearable clearable
filterable filterable
:disabled="form.isEditInfoDisable === 1"
no-data-text="" no-data-text=""
> >
<el-option <el-option
@@ -323,7 +320,6 @@
<el-input <el-input
v-model="form.retailPrice" v-model="form.retailPrice"
placeholder="" placeholder=""
:disabled="form.isEditInfoDisable === 1"
@input="updatePrices" @input="updatePrices"
/> />
</el-form-item> </el-form-item>
@@ -404,7 +400,6 @@
controls-position="right" controls-position="right"
:min="1" :min="1"
:max="999" :max="999"
:disabled="form.isEditInfoDisable === 1"
@change="calculateTotalPrice" @change="calculateTotalPrice"
/> />
</el-form-item> </el-form-item>
@@ -605,8 +600,6 @@ function calculateTotalPrice() {
); );
if (hasValidItem) { if (hasValidItem) {
form.value.retailPrice = parseFloat(totalPrice.value) || 0; form.value.retailPrice = parseFloat(totalPrice.value) || 0;
} else {
form.value.retailPrice = undefined;
} }
} catch (error) { } catch (error) {
totalPrice.value = '0.00'; totalPrice.value = '0.00';