sub_menu.ejs 1.7 KB

123456789101112131415161718192021222324252627282930
  1. <div class="panel-title fluid">
  2. <div class="title-main d-flex justify-content-between">
  3. <div>
  4. <div class="d-inline-block mr-2">
  5. <button href="#cate-set" class="btn btn-sm btn-light" data-toggle="modal" data-target="#cate-set"><i class="fa fa-sitemap fa-rotate-270"></i> 分类</button>
  6. </div>
  7. <div class="d-inline-block">
  8. <div class="btn-group btn-group-toggle" data-toggle="buttons">
  9. <label class="btn btn-sm btn-light <% if (ctx.url === '/list') { %>active<% } %>" onclick="window.location.href='/list'">
  10. <input type="radio" name="options" id="option1" autocomplete="off"> 金额概况
  11. </label>
  12. <label class="btn btn-sm btn-light <% if (ctx.url === '/list/progress') { %>active<% } %>" onclick="window.location.href='/list/progress'">
  13. <input type="radio" name="options" id="option2" autocomplete="off"> 计量进度
  14. </label>
  15. </div>
  16. </div>
  17. <div class="d-inline-block ml-3">
  18. <div class="form-check-inline">
  19. <label class="form-check-label" onclick="window.location.href='/list/manage'">
  20. <input class="form-check-input" type="checkbox" <% if (ctx.url === '/list/manage') { %>checked="checked"<% } %>>
  21. 管理标段
  22. </label>
  23. </div>
  24. </div>
  25. </div>
  26. <div>
  27. <a href="#add-bd" data-toggle="modal" data-target="#add-bd" class="btn btn-sm btn-primary pull-right">新建标段</a>
  28. </div>
  29. </div>
  30. </div>