v1.0.15: 年度财务明细标题加(单位:万元),列表列头去掉(万元)后缀(保留百分比%)

This commit is contained in:
nanguaboss
2026-08-04 00:21:22 +08:00
parent 3a7986e4f1
commit 595520822a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -149,11 +149,11 @@ $(function () {
' <div class="form-item"><label>最新年营收</label><input type="text" name="latest_annual_revenue" value="' + escHtml(c.latest_annual_revenue) + '"></div>' + ' <div class="form-item"><label>最新年营收</label><input type="text" name="latest_annual_revenue" value="' + escHtml(c.latest_annual_revenue) + '"></div>' +
'</div>' + '</div>' +
'<div style="display:flex;justify-content:space-between;align-items:center;margin:16px 0 8px;">' + '<div style="display:flex;justify-content:space-between;align-items:center;margin:16px 0 8px;">' +
' <b style="font-size:13px;color:#1e2a3a;">年度财务明细</b>' + ' <b style="font-size:13px;color:#1e2a3a;">年度财务明细(单位:万元)</b>' +
' <button type="button" class="btn btn-sm" id="add-fin-row">+ 添加年度</button>' + ' <button type="button" class="btn btn-sm" id="add-fin-row">+ 添加年度</button>' +
'</div>' + '</div>' +
'<div class="table-wrap"><table class="grid fin-tbl" style="font-size:12px;">' + '<div class="table-wrap"><table class="grid fin-tbl" style="font-size:12px;">' +
' <thead><tr><th>财年</th><th>员工数</th><th>总营收(万元)</th><th>净利润(万元)</th><th>总资产(万元)</th><th>总负债(万元)</th><th>所有者权益(万元)</th><th>毛利率(%)</th><th>净利率(%)</th><th>资产负债率(%)</th><th>财务报表链接</th><th>数据来源</th><th>操作</th></tr></thead>' + ' <thead><tr><th>财年</th><th>员工数</th><th>总营收</th><th>净利润</th><th>总资产</th><th>总负债</th><th>所有者权益</th><th>毛利率(%)</th><th>净利率(%)</th><th>资产负债率(%)</th><th>财务报表链接</th><th>数据来源</th><th>操作</th></tr></thead>' +
' <tbody id="fin-tbody">' + finRowsHtml + '</tbody>' + ' <tbody id="fin-tbody">' + finRowsHtml + '</tbody>' +
'</table></div>'; '</table></div>';
+1 -1
View File
@@ -5,7 +5,7 @@ var BASE_URL = '/api/';
var PAGE_SIZE = 20; var PAGE_SIZE = 20;
/** 系统版本号(logo旁展示):修改代码后运行 tools/bump_version.php 自动递增 */ /** 系统版本号(logo旁展示):修改代码后运行 tools/bump_version.php 自动递增 */
var APP_VERSION = 'v1.0.14'; var APP_VERSION = 'v1.0.15';
/** 页脚版权/备案信息(在 config.js 中修改) */ /** 页脚版权/备案信息(在 config.js 中修改) */
var FOOTER_TEXT = '© 2026 SuperLink 管理系统 版权所有 | 备案号:请替换为真实备案号'; var FOOTER_TEXT = '© 2026 SuperLink 管理系统 版权所有 | 备案号:请替换为真实备案号';