Fix Bug #568: 修复门诊日结页面排版混乱 - 用HTML表格替代CSS Grid布局

根因:CSS Grid的auto-fit/minmax+span-2在不同容器宽度下列数不可预测,导致对齐混乱。
修复:用HTML<table>替代,表格天然保证列对齐,colspan处理跨越项。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-22 12:16:41 +08:00
parent 432076226d
commit d9913d2182

View File

@@ -263,35 +263,6 @@ async function print() {
await boundAsync
.printReport(getPrintFileName(contractNo.value), jsonString)
.then((response) => {
console.log(response, 'response');
var res = JSON.parse(response);
if (!res.IsSuccess) {
proxy.$modal.msgError('调用打印插件失败:' + res.ErrorMessage);
}
})
.catch((error) => {
proxy.$modal.msgError('调用打印插件失败:' + error);
});
}
function getPrintFileName(value) {
switch (value) {
case '0000':
return '门诊日结单(按登录角色查询)自费.grf';
case '229900':
return '门诊日结单(按登录角色查询)省医保.grf';
case '220100':
return '门诊日结单(按登录角色查询)市医保.grf';
}
}
function formatValue(value) {
return value == null || value == undefined ? '0.00 元' : value.toFixed(2) + ' 元';
}
getList();
getPharmacyCabinetLists();
</script>
<style scoped>
.report-container {
width: 100%;
@@ -320,6 +291,35 @@ getPharmacyCabinetLists();
padding-left: 8px;
border-left: 3px solid #409eff;
}
.report-row {
margin: 12px 0;
}
.label {
display: inline-block;
width: 120px;
color: #606266;
white-space: nowrap;
text-align: right;
}
.value {
color: #303133;
font-weight: 500;
white-space: nowrap;
}
.divider {
height: 1px;
background-color: #dcdfe6;
margin: 16px 0;
}
</style>
.section-title {
font-size: 15px;
font-weight: bold;
color: #303133;
margin: 8px 0;
padding-left: 8px;
border-left: 3px solid #409eff;
}
.report-table {
width: 100%;
border-collapse: collapse;