Fix Bug #571: 根因+修复方案摘要
This commit is contained in:
@@ -42,51 +42,80 @@
|
||||
<div class="report-title">门诊收费日结单</div>
|
||||
<div class="report-section">
|
||||
<div class="section-title">基本信息</div>
|
||||
<div class="report-row cols-4">
|
||||
<div class="report-item"><span class="label">经办人姓名:</span><span class="value">{{ userStore.nickName }}</span></div>
|
||||
<div class="report-item"><span class="label">科室:</span><span class="value">{{ userStore.orgName }}</span></div>
|
||||
<div class="report-item span-2"><span class="label">时间:</span><span class="value">{{ queryTime[0] + '~' + queryTime[1] }}</span></div>
|
||||
</div>
|
||||
<table class="report-table">
|
||||
<tr>
|
||||
<td class="label-cell">经办人姓名:</td>
|
||||
<td class="value-cell">{{ userStore.nickName }}</td>
|
||||
<td class="label-cell">科室:</td>
|
||||
<td class="value-cell">{{ userStore.orgName }}</td>
|
||||
<td class="label-cell">时间:</td>
|
||||
<td class="value-cell" colspan="3">{{ queryTime[0] + '~' + queryTime[1] }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="divider"></div>
|
||||
<div class="report-section">
|
||||
<div class="section-title">收费汇总</div>
|
||||
<div class="report-row cols-4">
|
||||
<div class="report-item"><span class="label">实际现金收入:</span><span class="value">{{ formatValue(reportValue.cashSum) }}</span></div>
|
||||
<div class="report-item"><span class="label">现金:</span><span class="value">{{ formatValue(reportValue.rmbCashSum) }}</span></div>
|
||||
<div class="report-item"><span class="label">微信:</span><span class="value">{{ formatValue(reportValue.vxCashSum) }}</span></div>
|
||||
<div class="report-item"><span class="label">支付宝:</span><span class="value">{{ formatValue(reportValue.aliCashSum) }}</span></div>
|
||||
</div>
|
||||
<table class="report-table">
|
||||
<tr>
|
||||
<td class="label-cell">实际现金收入:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.cashSum) }}</td>
|
||||
<td class="label-cell">现金:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.rmbCashSum) }}</td>
|
||||
<td class="label-cell">微信:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.vxCashSum) }}</td>
|
||||
<td class="label-cell">支付宝:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.aliCashSum) }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="divider"></div>
|
||||
<div class="report-section">
|
||||
<div class="section-title">医保支付</div>
|
||||
<div class="report-row cols-4">
|
||||
<div class="report-item"><span class="label">统筹支付:</span><span class="value">{{ formatValue(reportValue.tcSum) }}</span></div>
|
||||
<div class="report-item"><span class="label">账户支付:</span><span class="value">{{ formatValue(reportValue.zhSum) }}</span></div>
|
||||
<div class="report-item span-2"><span class="label">基金支付总额:</span><span class="value">{{ formatValue(reportValue.fundSum) }}</span></div>
|
||||
</div>
|
||||
<table class="report-table">
|
||||
<tr>
|
||||
<td class="label-cell">统筹支付:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.tcSum) }}</td>
|
||||
<td class="label-cell">账户支付:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.zhSum) }}</td>
|
||||
<td class="label-cell">基金支付总额:</td>
|
||||
<td class="value-cell" colspan="3">{{ formatValue(reportValue.fundSum) }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="divider"></div>
|
||||
<div class="report-section">
|
||||
<div class="section-title">费用明细</div>
|
||||
<div class="report-row cols-4">
|
||||
<div class="report-item"><span class="label">诊查费:</span><span class="value">{{ formatValue(reportValue.DIAGNOSTIC_FEE) }}</span></div>
|
||||
<div class="report-item"><span class="label">检查费:</span><span class="value">{{ formatValue(reportValue.CHECK_FEE) }}</span></div>
|
||||
<div class="report-item"><span class="label">化验费:</span><span class="value">{{ formatValue(reportValue.DIAGNOSTIC_TEST_FEE) }}</span></div>
|
||||
<div class="report-item"><span class="label">治疗费:</span><span class="value">{{ formatValue(reportValue.MEDICAL_EXPENSE_FEE) }}</span></div>
|
||||
</div>
|
||||
<div class="report-row cols-4">
|
||||
<div class="report-item"><span class="label">西药费:</span><span class="value">{{ formatValue(reportValue.WEST_MEDICINE) }}</span></div>
|
||||
<div class="report-item"><span class="label">中药饮片费:</span><span class="value">{{ formatValue(reportValue.CHINESE_MEDICINE_SLICES_FEE) }}</span></div>
|
||||
<div class="report-item"><span class="label">中成药费:</span><span class="value">{{ formatValue(reportValue.CHINESE_MEDICINE_FEE) }}</span></div>
|
||||
<div class="report-item"><span class="label">卫生材料费:</span><span class="value">{{ formatValue(reportValue.SANITARY_MATERIALS_FEE) }}</span></div>
|
||||
</div>
|
||||
<div class="report-row cols-4">
|
||||
<div class="report-item"><span class="label">诊疗费:</span><span class="value">{{ formatValue(reportValue.GENERAL_CONSULTATION_FEE) }}</span></div>
|
||||
<div class="report-item"><span class="label">挂号费:</span><span class="value">{{ formatValue(reportValue.REGISTRATION_FEE) }}</span></div>
|
||||
<div class="report-item span-2"><span class="label">其他费用:</span><span class="value">{{ formatValue(reportValue.OTHER_FEE) }}</span></div>
|
||||
</div>
|
||||
<table class="report-table">
|
||||
<tr>
|
||||
<td class="label-cell">诊查费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.DIAGNOSTIC_FEE) }}</td>
|
||||
<td class="label-cell">检查费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.CHECK_FEE) }}</td>
|
||||
<td class="label-cell">化验费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.DIAGNOSTIC_TEST_FEE) }}</td>
|
||||
<td class="label-cell">治疗费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.MEDICAL_EXPENSE_FEE) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label-cell">西药费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.WEST_MEDICINE) }}</td>
|
||||
<td class="label-cell">中药饮片费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.CHINESE_MEDICINE_SLICES_FEE) }}</td>
|
||||
<td class="label-cell">中成药费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.CHINESE_MEDICINE_FEE) }}</td>
|
||||
<td class="label-cell">卫生材料费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.SANITARY_MATERIALS_FEE) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="label-cell">诊疗费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.GENERAL_CONSULTATION_FEE) }}</td>
|
||||
<td class="label-cell">挂号费:</td>
|
||||
<td class="value-cell">{{ formatValue(reportValue.REGISTRATION_FEE) }}</td>
|
||||
<td class="label-cell">其他费用:</td>
|
||||
<td class="value-cell" colspan="3">{{ formatValue(reportValue.OTHER_FEE) }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -291,62 +320,38 @@ getPharmacyCabinetLists();
|
||||
padding-left: 8px;
|
||||
border-left: 3px solid #409eff;
|
||||
}
|
||||
.report-row {
|
||||
display: grid;
|
||||
.report-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin: 12px 0;
|
||||
gap: 10px 16px;
|
||||
align-items: baseline;
|
||||
}
|
||||
.cols-4 {
|
||||
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
||||
.report-table td {
|
||||
padding: 8px 4px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.span-2 {
|
||||
grid-column: span 2;
|
||||
}
|
||||
.report-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
min-width: 0;
|
||||
}
|
||||
.label {
|
||||
display: inline-block;
|
||||
width: 140px;
|
||||
flex-shrink: 0;
|
||||
.label-cell {
|
||||
color: #606266;
|
||||
white-space: nowrap;
|
||||
text-align: right;
|
||||
width: 100px;
|
||||
}
|
||||
.value {
|
||||
.value-cell {
|
||||
color: #303133;
|
||||
font-weight: 500;
|
||||
white-space: nowrap;
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.divider {
|
||||
height: 1px;
|
||||
background-color: #dcdfe6;
|
||||
margin: 16px 0;
|
||||
}
|
||||
@media screen and (max-width: 1200px) {
|
||||
.cols-4 {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
.span-2 {
|
||||
grid-column: span 2;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 768px) {
|
||||
.cols-4 {
|
||||
grid-template-columns: 1fr;
|
||||
.label-cell {
|
||||
width: 80px;
|
||||
font-size: 13px;
|
||||
}
|
||||
.span-2 {
|
||||
grid-column: span 1;
|
||||
}
|
||||
.label {
|
||||
width: 100px;
|
||||
.value-cell {
|
||||
font-size: 13px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user