sub_menu.ejs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 text-primary" 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" id="show-level"></div>
  8. <div class="d-inline-block">
  9. <div class="btn-group btn-group-toggle group-tab" data-toggle="buttons">
  10. <label class="btn btn-sm btn-light <% if (ctx.url === '/list') { %>active<% } %>" onclick="window.location.href='/list'">
  11. <input type="radio" name="options" id="option1" autocomplete="off"> 标段列表
  12. </label>
  13. <label class="btn btn-sm btn-light <% if (ctx.url === '/list/info') { %>active<% } %>" onclick="window.location.href='/list/info'">
  14. <input type="radio" name="options" id="option1" autocomplete="off"> 金额概况
  15. </label>
  16. <label class="btn btn-sm btn-light <% if (ctx.url === '/list/progress') { %>active<% } %>" onclick="window.location.href='/list/progress'">
  17. <input type="radio" name="options" id="option2" autocomplete="off"> 计量进度
  18. </label>
  19. <% if (userPermission !== null && userPermission.tender !== undefined && userPermission.tender.indexOf('1') !== -1) { %>
  20. <label class="btn btn-sm btn-light <% if (ctx.url === '/list/manage') { %>active<% } %>" onclick="window.location.href='/list/manage'">
  21. <input type="radio" name="options" id="option2" autocomplete="off"> 管理标段
  22. </label>
  23. <% } %>
  24. </div>
  25. </div>
  26. <!--<div class="d-inline-block ml-3">-->
  27. <!--<div class="form-check-inline">-->
  28. <!--<label class="form-check-label" onclick="window.location.href='/list/manage'">-->
  29. <!--<input class="form-check-input" type="checkbox" <% if (ctx.url === '/list/manage') { %>checked="checked"<% } %>>-->
  30. <!--管理标段-->
  31. <!--</label>-->
  32. <!--</div>-->
  33. <!--</div>-->
  34. </div>
  35. <% if (ctx.app.config.is_debug) { %>
  36. <div>
  37. <a href="/compare/tz" class="btn btn-sm btn-primary pull-right" target="_blank">统计分析</a>
  38. </div>
  39. <% } %>
  40. <% if (userPermission !== null && userPermission.tender !== undefined && userPermission.tender.indexOf('1') !== -1) { %>
  41. <div>
  42. <a href="#add-bd" name="add" data-toggle="modal" data-target="#add-bd" class="btn btn-sm btn-primary pull-right">新建标段</a>
  43. </div>
  44. <% } %>
  45. </div>
  46. </div>