code.html 388 B

12345678910111213141516171819202122232425
  1. <table class="layui-table">
  2. <colgroup>
  3. <col width="150">
  4. <col>
  5. <col>
  6. </colgroup>
  7. <thead>
  8. <tr>
  9. <th>状态码</th>
  10. <th>说明</th>
  11. <th>备注</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. {{range $i, $e := .code}}
  16. <tr>
  17. <td>{{$e.Code}}</td>
  18. <td>{{$e.Desc}}</td>
  19. <td>{{$e.Detail}}</td>
  20. </tr>
  21. {{end}}
  22. </tbody>
  23. </table>