From 533df59646caccad8bbca69c2f73307a4d06053b Mon Sep 17 00:00:00 2001 From: pengjun <158915633@qq.com> Date: Wed, 25 Oct 2023 17:45:38 +0800 Subject: [PATCH] org --- src/assets/css/global_input.css | 2 +- .../customerOrg/customerOrgGroupAsbitem.vue | 7 +- .../patientRegister/PatientRegisterItem.vue | 7 +- .../patientRegister/PatientRegisterList.vue | 151 +++++++++--------- .../patientRegisterAsbItem.vue | 12 +- src/store/index.js | 2 +- src/views/customerOrg/customerOrgGroup.vue | 114 +++++++++++-- 7 files changed, 197 insertions(+), 98 deletions(-) diff --git a/src/assets/css/global_input.css b/src/assets/css/global_input.css index 23b7a8d..fb01251 100644 --- a/src/assets/css/global_input.css +++ b/src/assets/css/global_input.css @@ -44,7 +44,7 @@ input[type="number"]::-webkit-outer-spin-button { margin: 0 !important; } -/* 下拉框选中颜色 */ +/* select 下拉框选中颜色 */ .el-select-dropdown__item.hover, .el-select-dropdown__item:hover { background-color: #CCF9CB; /* 原始 默认 #F5F7FA */ } diff --git a/src/components/customerOrg/customerOrgGroupAsbitem.vue b/src/components/customerOrg/customerOrgGroupAsbitem.vue index 1b8734b..65cb222 100644 --- a/src/components/customerOrg/customerOrgGroupAsbitem.vue +++ b/src/components/customerOrg/customerOrgGroupAsbitem.vue @@ -327,8 +327,8 @@ export default { //表格强制刷新 refreshTable(tableRef){ this.$nextTick(() => { - this.$refs[tableRef].doLayout() - }) + this.$refs[tableRef].doLayout() + }) }, //初始数据 @@ -709,6 +709,9 @@ export default { this.customerOrgGroupAsbitems[index].customerOrgGroupDetailMoney = (this.customerOrgGroupAsbitems[index].customerOrgGroupDetailPrice * this.customerOrgGroupAsbitems[index].customerOrgGroupDetailAmount).toFixed(2) + this.customerOrgGroupAsbitems[index].asbitemMoney = + (this.customerOrgGroupAsbitems[index].price * this.customerOrgGroupAsbitems[index].customerOrgGroupDetailAmount).toFixed(2) + this.customerOrgGroupAsbitems[index].discount = (this.customerOrgGroupAsbitems[index].customerOrgGroupDetailPrice * 100 / this.customerOrgGroupAsbitems[index].price).toFixed(2) //this.getSummaries() }, diff --git a/src/components/patientRegister/PatientRegisterItem.vue b/src/components/patientRegister/PatientRegisterItem.vue index f284750..7650269 100644 --- a/src/components/patientRegister/PatientRegisterItem.vue +++ b/src/components/patientRegister/PatientRegisterItem.vue @@ -85,7 +85,7 @@