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 @@