diff --git a/static/css/style.css b/static/css/style.css index 6f9ea54..9546fac 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -494,23 +494,19 @@ table.grid .ops a:hover { text-decoration: underline; } max-height: 62vh; overflow-y: auto; } -.fin-year { - border: 1px solid #eef0f4; - border-radius: 6px; - padding: 10px 14px; - margin-bottom: 10px; - background: #fbfcfe; -} -.fin-year-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } -.fin-year-head b { font-size: 13px; color: #1e2a3a; font-weight: bold; } -.fin-year-head input { - width: 100px; +/* 年度财务明细表格 */ +.fin-tbl input { border: 1px solid #d9dee8; border-radius: 4px; - padding: 5px 8px; - font-size: 13px; - margin-left: 6px; + padding: 4px 6px; + font-size: 12px; + background: #fff; + width: 78px; } +.fin-tbl input[name="fin-fiscal_year"], +.fin-tbl input[name="fin-employee_count"] { width: 66px; } +.fin-tbl input[name="fin-financial_report_url"] { width: 150px; } +.fin-tbl input[name="fin-data_source"] { width: 88px; } .cert-row { display: flex; gap: 8px; margin-bottom: 8px; align-items: center; flex-wrap: wrap; } .cert-row select, .cert-row input { border: 1px solid #d9dee8; diff --git a/static/js/company.js b/static/js/company.js index bbd3a9c..c14f245 100644 --- a/static/js/company.js +++ b/static/js/company.js @@ -120,10 +120,6 @@ $(function () { '
' + ' ' + ' ' + - ' ' + - ' ' + ' ' + ''; @@ -136,15 +132,19 @@ $(function () { ' ' + ''; - // Tab2 财务信息:最新冗余字段 + 年度财务明细列表 + // Tab3 财务信息:顶部独立字段(是否上市/股票代码/最新员工/最新营收)+ 年度财务明细列表 var finRowsHtml = ''; if (!financials.length) { - finRowsHtml = finYearRowHtml(null); + finRowsHtml = finRowHtml(null); } else { - financials.forEach(function (f) { finRowsHtml += finYearRowHtml(f); }); + financials.forEach(function (f) { finRowsHtml += finRowHtml(f); }); } var finHtml = '| 财年 | 员工数 | 总营收(万元) | 净利润(万元) | 总资产(万元) | 总负债(万元) | 所有者权益(万元) | 毛利率(%) | 净利率(%) | 资产负债率(%) | 财务报表链接 | 数据来源 | 操作 |
|---|