Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -36,7 +36,7 @@
|
|||||||
<el-dialog
|
<el-dialog
|
||||||
v-model="applicationFormDialogVisible"
|
v-model="applicationFormDialogVisible"
|
||||||
destroy-on-close
|
destroy-on-close
|
||||||
width="1000px"
|
width="1200px"
|
||||||
:close-on-click-modal="false"
|
:close-on-click-modal="false"
|
||||||
:title="applicationFormTitle"
|
:title="applicationFormTitle"
|
||||||
@close="closeDialog"
|
@close="closeDialog"
|
||||||
|
|||||||
@@ -121,10 +121,13 @@ const getList = () => {
|
|||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
applicationListAll.value = res.data.records;
|
applicationListAll.value = res.data.records;
|
||||||
applicationList.value = res.data.records.map((item) => {
|
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 {
|
return {
|
||||||
adviceDefinitionId: item.adviceDefinitionId,
|
adviceDefinitionId: item.adviceDefinitionId,
|
||||||
orgId: item.orgId,
|
orgId: item.orgId,
|
||||||
label: item.adviceName + item.adviceDefinitionId,
|
label: item.adviceName + ' (¥' + price + '/' + unit + ')',
|
||||||
key: item.adviceDefinitionId,
|
key: item.adviceDefinitionId,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@@ -310,7 +313,7 @@ defineExpose({ state, submit, getLocationInfo, getDiagnosisList });
|
|||||||
}
|
}
|
||||||
|
|
||||||
.el-transfer {
|
.el-transfer {
|
||||||
--el-transfer-panel-width: 400px !important;
|
--el-transfer-panel-width: 480px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bloodTransfusion-form {
|
.bloodTransfusion-form {
|
||||||
|
|||||||
@@ -122,10 +122,13 @@ const getList = () => {
|
|||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
applicationListAll.value = res.data.records;
|
applicationListAll.value = res.data.records;
|
||||||
applicationList.value = res.data.records.map((item) => {
|
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 {
|
return {
|
||||||
adviceDefinitionId: item.adviceDefinitionId,
|
adviceDefinitionId: item.adviceDefinitionId,
|
||||||
orgId: item.orgId,
|
orgId: item.orgId,
|
||||||
label: item.adviceName + item.adviceDefinitionId,
|
label: item.adviceName + ' (¥' + price + '/' + unit + ')',
|
||||||
key: item.adviceDefinitionId,
|
key: item.adviceDefinitionId,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@@ -312,7 +315,7 @@ defineExpose({ state, submit, getLocationInfo, getDiagnosisList });
|
|||||||
}
|
}
|
||||||
|
|
||||||
.el-transfer {
|
.el-transfer {
|
||||||
--el-transfer-panel-width: 400px !important;
|
--el-transfer-panel-width: 480px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bloodTransfusion-form {
|
.bloodTransfusion-form {
|
||||||
|
|||||||
@@ -122,10 +122,13 @@ const getList = () => {
|
|||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
applicationListAll.value = res.data.records;
|
applicationListAll.value = res.data.records;
|
||||||
applicationList.value = res.data.records.map((item) => {
|
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 {
|
return {
|
||||||
adviceDefinitionId: item.adviceDefinitionId,
|
adviceDefinitionId: item.adviceDefinitionId,
|
||||||
orgId: item.orgId,
|
orgId: item.orgId,
|
||||||
label: item.adviceName + item.adviceDefinitionId,
|
label: item.adviceName + ' (¥' + price + '/' + unit + ')',
|
||||||
key: item.adviceDefinitionId,
|
key: item.adviceDefinitionId,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@@ -311,7 +314,7 @@ defineExpose({ state, submit, getLocationInfo, getDiagnosisList });
|
|||||||
}
|
}
|
||||||
|
|
||||||
.el-transfer {
|
.el-transfer {
|
||||||
--el-transfer-panel-width: 400px !important;
|
--el-transfer-panel-width: 480px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bloodTransfusion-form {
|
.bloodTransfusion-form {
|
||||||
|
|||||||
@@ -122,10 +122,13 @@ const getList = () => {
|
|||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
applicationListAll.value = res.data.records;
|
applicationListAll.value = res.data.records;
|
||||||
applicationList.value = res.data.records.map((item) => {
|
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 {
|
return {
|
||||||
adviceDefinitionId: item.adviceDefinitionId,
|
adviceDefinitionId: item.adviceDefinitionId,
|
||||||
orgId: item.orgId,
|
orgId: item.orgId,
|
||||||
label: item.adviceName + item.adviceDefinitionId,
|
label: item.adviceName + ' (¥' + price + '/' + unit + ')',
|
||||||
key: item.adviceDefinitionId,
|
key: item.adviceDefinitionId,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@@ -312,7 +315,7 @@ defineExpose({ state, submit, getLocationInfo, getDiagnosisList });
|
|||||||
}
|
}
|
||||||
|
|
||||||
.el-transfer {
|
.el-transfer {
|
||||||
--el-transfer-panel-width: 400px !important;
|
--el-transfer-panel-width: 480px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bloodTransfusion-form {
|
.bloodTransfusion-form {
|
||||||
|
|||||||
Reference in New Issue
Block a user