JSFiddle - React, Tailwind, and code Playground

HTML

<table cellpadding="0" cellspacing="0" style="border-collapse: collapse;">
	<thead>
		<tr>
		   <th>订单号</th>
		   <th>科目</th>
		   <th>总费用</th>
		</tr>
	</thead>
	<tbody id="ongoing">
		<tr class="no-data" style="display: none;">
			没有进行中的订单
		</tr>
		<tr>
			<td>1110</td>
			<td>1110</td>
            <td>1110</td>
		</tr>
	</tbody>
</table>