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
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:
@@ -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>
|
||||
""");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user