events.ejs 671 B

12345678910111213141516171819202122
  1. <div>
  2. <h3 id="<%- gennerateID(module + ':' + name + ':events') %>">事件说明</h3>
  3. <table class="table table-bordered">
  4. <tr>
  5. <th>事件名</th>
  6. <th class="events-tb-desc">参数说明</th>
  7. <th>描述</th>
  8. </tr>
  9. <% _.forEach( events, function( item ) { %>
  10. <tr>
  11. <td><code><%= item.name %></code></td>
  12. <td class="events-tb-desc">
  13. <% if ( item.params ) { %>
  14. <%- renderParams( item.params ) %>
  15. <% } %>
  16. </td>
  17. <td><%- markdown(item.description) %></td>
  18. </tr>
  19. <% }) %>
  20. </table>
  21. </div>