env.html 329 B

123456789101112131415161718192021
  1. <table class="layui-table">
  2. <colgroup>
  3. <col width="150">
  4. <col>
  5. </colgroup>
  6. <thead>
  7. <tr>
  8. <th>环境名称</th>
  9. <th>URL</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. {{range $i, $e := .env}}
  14. <tr>
  15. <td>{{$e.EnvName}}</td>
  16. <td>{{$e.EnvHost}}</td>
  17. </tr>
  18. {{end}}
  19. </tbody>
  20. </table>