付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div th:if="${not #lists.isEmpty(cpuTemperaturesList)}">
    <label style="margin-left: .9rem">CPU温度</label>
    <div class="row">
        <div class="col-12 table-responsive">
            <div style="line-height:0.9" class="language-html highlighter-rouge"><div class="highlight"><pre class="highlight">
                <code>
<th:block th:each="item : ${cpuTemperaturesList}">
<span th:text="${item.core_index}"></span>: 当前:<span class="na" th:text="${item.input}"></span>℃,最高:<span class="s" th:text="${item.max}"></span>℃,临界值:<span class="nt" th:text="${item.crit}"></span>℃
</th:block>
                </code></pre></div></div>
            <!-- /.col -->
        </div>
    </div>
</div>