debugger
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 23s
Docker Build & Deploy / Deploy to Production (push) Successful in 8s
Docker Build & Deploy / Cleanup Dangling Images (push) Successful in 1s
Docker Build & Deploy / WeChat Notification (push) Successful in 2s

This commit is contained in:
孙诚
2026-01-12 17:56:58 +08:00
parent a41c2b79af
commit c07c9dd07d
2 changed files with 32 additions and 19 deletions

View File

@@ -564,13 +564,13 @@ public class BudgetService(
else
{
description.Append("""
<table style="width: 100%; table-layout: fixed;">
<table>
<thead>
<tr>
<th style="width: 40%;"></th>
<th style="width: 20%;"></th>
<th style="width: 20%;"></th>
<th style="width: 20%;"></th>
<th">名称</th>
<th">金额</th>
<th">折算</th>
<th">合计</th>
</tr>
</thead>
<tbody>
@@ -579,10 +579,10 @@ public class BudgetService(
{
description.Append($"""
<tr>
<td style="width: 40%;">{item.Name}</td>
<td style="width: 20%;">{item.Limit:N0}</td>
<td style="width: 20%;">{item.Factor:0.##}</td>
<td style="width: 20%;"><span class='income-value'>{item.Total:N0}</span></td>
<td>{item.Name}</td>
<td>{item.Limit:N0}</td>
<td>{item.Factor:0.##}</td>
<td><span class='income-value'>{item.Total:N0}</span></td>
</tr>
""");
}
@@ -595,13 +595,13 @@ public class BudgetService(
else
{
description.Append("""
<table style="width: 100%; table-layout: fixed;">
<table>
<thead>
<tr>
<th style="width: 40%;"></th>
<th style="width: 20%;"></th>
<th style="width: 20%;"></th>
<th style="width: 20%;"></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
@@ -610,10 +610,10 @@ public class BudgetService(
{
description.Append($"""
<tr>
<td style="width: 40%;">{item.Name}</td>
<td style="width: 20%;">{item.Limit:N0}</td>
<td style="width: 20%;">{item.Factor:0.##}</td>
<td style="width: 20%;"><span class='expense-value'>{item.Total:N0}</span></td>
<td>{item.Name}</td>
<td>{item.Limit:N0}</td>
<td>{item.Factor:0.##}</td>
<td><span class='expense-value'>{item.Total:N0}</span></td>
</tr>
""");
}