Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
2026-04-30 16:49:26 +08:00
5 changed files with 21 additions and 9 deletions

View File

@@ -36,7 +36,7 @@
<el-dialog
v-model="applicationFormDialogVisible"
destroy-on-close
width="1000px"
width="1200px"
:close-on-click-modal="false"
:title="applicationFormTitle"
@close="closeDialog"

View File

@@ -121,10 +121,13 @@ const getList = () => {
if (res.code === 200) {
applicationListAll.value = res.data.records;
applicationList.value = res.data.records.map((item) => {
const priceInfo = item.priceList?.[0] || {};
const price = priceInfo.price != null ? Number(priceInfo.price).toFixed(2) : '0.00';
const unit = item.unitCode_dictText || item.unitCode || '';
return {
adviceDefinitionId: item.adviceDefinitionId,
orgId: item.orgId,
label: item.adviceName + item.adviceDefinitionId,
label: item.adviceName + ' (¥' + price + '/' + unit + ')',
key: item.adviceDefinitionId,
};
});
@@ -310,7 +313,7 @@ defineExpose({ state, submit, getLocationInfo, getDiagnosisList });
}
.el-transfer {
--el-transfer-panel-width: 400px !important;
--el-transfer-panel-width: 480px !important;
}
.bloodTransfusion-form {

View File

@@ -122,10 +122,13 @@ const getList = () => {
if (res.code === 200) {
applicationListAll.value = res.data.records;
applicationList.value = res.data.records.map((item) => {
const priceInfo = item.priceList?.[0] || {};
const price = priceInfo.price != null ? Number(priceInfo.price).toFixed(2) : '0.00';
const unit = item.unitCode_dictText || item.unitCode || '';
return {
adviceDefinitionId: item.adviceDefinitionId,
orgId: item.orgId,
label: item.adviceName + item.adviceDefinitionId,
label: item.adviceName + ' (¥' + price + '/' + unit + ')',
key: item.adviceDefinitionId,
};
});
@@ -312,7 +315,7 @@ defineExpose({ state, submit, getLocationInfo, getDiagnosisList });
}
.el-transfer {
--el-transfer-panel-width: 400px !important;
--el-transfer-panel-width: 480px !important;
}
.bloodTransfusion-form {

View File

@@ -122,10 +122,13 @@ const getList = () => {
if (res.code === 200) {
applicationListAll.value = res.data.records;
applicationList.value = res.data.records.map((item) => {
const priceInfo = item.priceList?.[0] || {};
const price = priceInfo.price != null ? Number(priceInfo.price).toFixed(2) : '0.00';
const unit = item.unitCode_dictText || item.unitCode || '';
return {
adviceDefinitionId: item.adviceDefinitionId,
orgId: item.orgId,
label: item.adviceName + item.adviceDefinitionId,
label: item.adviceName + ' (¥' + price + '/' + unit + ')',
key: item.adviceDefinitionId,
};
});
@@ -311,7 +314,7 @@ defineExpose({ state, submit, getLocationInfo, getDiagnosisList });
}
.el-transfer {
--el-transfer-panel-width: 400px !important;
--el-transfer-panel-width: 480px !important;
}
.bloodTransfusion-form {

View File

@@ -122,10 +122,13 @@ const getList = () => {
if (res.code === 200) {
applicationListAll.value = res.data.records;
applicationList.value = res.data.records.map((item) => {
const priceInfo = item.priceList?.[0] || {};
const price = priceInfo.price != null ? Number(priceInfo.price).toFixed(2) : '0.00';
const unit = item.unitCode_dictText || item.unitCode || '';
return {
adviceDefinitionId: item.adviceDefinitionId,
orgId: item.orgId,
label: item.adviceName + item.adviceDefinitionId,
label: item.adviceName + ' (¥' + price + '/' + unit + ')',
key: item.adviceDefinitionId,
};
});
@@ -312,7 +315,7 @@ defineExpose({ state, submit, getLocationInfo, getDiagnosisList });
}
.el-transfer {
--el-transfer-panel-width: 400px !important;
--el-transfer-panel-width: 480px !important;
}
.bloodTransfusion-form {