| 12345678910111213141516171819202122232425262728293031323334353637 | <div class="panel-title fluid">    <div class="title-main  d-flex justify-content-between">        <div>            <div class="d-inline-block mr-2">                <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>            </div>            <div class="d-inline-block">                <div class="btn-group btn-group-toggle" data-toggle="buttons">                    <label class="btn btn-sm btn-light <% if (ctx.url === '/list') { %>active<% } %>" onclick="window.location.href='/list'">                        <input type="radio" name="options" id="option1" autocomplete="off"> 金额概况                    </label>                    <label class="btn btn-sm btn-light  <% if (ctx.url === '/list/progress') { %>active<% } %>" onclick="window.location.href='/list/progress'">                        <input type="radio" name="options" id="option2" autocomplete="off"> 计量进度                    </label>                    <% if (userPermission !== null && userPermission.tender !== undefined && userPermission.tender.indexOf('1') !== -1) { %>                    <label class="btn btn-sm btn-light  <% if (ctx.url === '/list/manage') { %>active<% } %>" onclick="window.location.href='/list/manage'">                        <input type="radio" name="options" id="option2" autocomplete="off"> 管理标段                    </label>                    <% } %>                </div>            </div>            <!--<div class="d-inline-block ml-3">-->                <!--<div class="form-check-inline">-->                    <!--<label class="form-check-label" onclick="window.location.href='/list/manage'">-->                        <!--<input class="form-check-input" type="checkbox" <% if (ctx.url === '/list/manage') { %>checked="checked"<% } %>>-->                        <!--管理标段-->                    <!--</label>-->                <!--</div>-->            <!--</div>-->        </div>        <% if (userPermission !== null && userPermission.tender !== undefined && userPermission.tender.indexOf('1') !== -1) { %>        <div>            <a href="#add-bd" data-toggle="modal" data-target="#add-bd" class="btn btn-sm btn-primary pull-right">新建标段</a>        </div>        <% } %>    </div></div>
 |