| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <script>
- </script>
- ${zhiqim_manager_breadcrumb("订单预约统计")}
- ${zhiqim_manager_content()}
- <#-- 导航栏 -->
- <div class="z-tabnav-main z-mg-b20 ${zmr_color_class}">
- <nav>
- <ul>
- <li onclick="Z.L.href('subscribeStat.htm');">组员预约情况</li>
- <li class="z-active">组织预约情况</li>
- </ul>
- </nav>
- </div>
- <#-- 列表 -->
- <table class="z-table zi-bd zi-bd-b-none z-pd5 z-bg-white">
- <tr class="z-h40">
- <td width="*" class="z-bold z-px15 z-text-left">组织数量:${zmrOrgModelList.size()} 设计师预约总人数:${allSubscribeOperatorNum} 预约总单量:${allSubscribeSum} 接单总单量:${allFinishSum}</td>
- </tr>
- </table>
- <table class="z-table">
- <tr>
- <td width="400" valign="top">
- <table class="z-table z-bordered z-bg-white z-text-center">
- <tr class="z-h40" bgcolor="${zmr_thead_bgcolor}">
- <td colspan="7">选中日期:${selectedDay}</td>
- </tr>
- <tr class="z-h40" bgcolor="${zmr_thead_bgcolor}">
- <td width="14%">周日</td>
- <td width="14%">周一</td>
- <td width="14%">周二</td>
- <td width="14%">周三</td>
- <td width="14%">周四</td>
- <td width="14%">周五</td>
- <td width="14%">周六</td>
- </tr>
- <#for item : list>
- <#if item_index % 7 == 0>
- <tr>
- </#if>
- <td onclick="Z.L.href('subscribeStatAll.htm?dutyTime=${item.getDutyTime()}')" class="" <#if item.getDutyMonth() != "currMonth">style="background-color:#f5f5f5;"</#if> <#if item.getDutyTime() == selectedDay>style="border: 1px solid #00a2eb;"</#if>>
- <div class="z-pd3" style="line-height:2;text-align:left;">
- <span style="margin:0px 0px 0px 10px; color:#bbbbbb;">${item.getDay()}号 </span>
- <#if item.getDutyTime() == today>
- <span class="z-float-right" style="width:8px;height:8px;border-radius:50%;background-color:#14DE00;"></span>
- </#if>
- </div>
- </td>
- <#if item_index % 7 == 6>
- </tr>
- </#if>
- </#for>
- </table>
- </td>
- <td width="10"></td>
- <td width="*" id="result" valign="top">
- <table class="z-table z-bordered z-h40-tr z-pd6 z-bg-white z-text-center">
- <tr bgcolor="${zmr_thead_bgcolor}">
- <td width="30%">组织名称</td>
- <td width="10%">设计师总人数</td>
- <td width="10%">设计师预约总人数</td>
- <td width="10%">预约总单量</td>
- <td width="10%">接单总单量</td>
- <td width="*">进度</td>
- </tr>
- <#for item : zmrOrgModelList>
- <tr ${zhiqim_manager_tr_onmouse()}>
- <td>${item.getOrgName()}</td>
- <td>${item.getOperatorNum()}</td>
- <td>${item.getSubscribeOperatorNum()}</td>
- <td>${item.getSubscribeSum()}</td>
- <td>${item.getFinishSum()}</td>
- <td>
- <div style="margin-left: 10px;margin-right: 10px;height:7px;border:solid 1px #33CC00;border-radius: 5px;">
- <div style="width:${item.getFinishRate()}%;height:100%;background-color:#33CC00;"></div>
- </div>
- <label style="float:right;margin-right: 10px;">${item.getFinishRate()}%</label>
- </td>
- </tr>
- </form>
- </#for>
- </table>
- </tb>
- </tr>
- </table>
- ${zhiqim_manager_content_end()}
|