supplierCouponDetail.html 2.4 KB
<script type="text/javascript" src='js/plugins/jquery.dataTables.min.js'></script>
<div class="pageheader notab">
    <h1 class="pagetitle">优惠券使用模块(列表以转化率降序排序)</h1>
    <span class="pagedesc">各店铺商城优惠券领取情况及使用情况(明细)</span>
</div><!--pageheader-->
<paging>
<div id="contentwrapper" class="contentwrapper">
	<div class="contenttitle2">
		<h3>优惠券领取情况及使用情况</h3>
	</div>
	<div class="overviewhead" style="margin-bottom: 10px;">
		<div class="line">
			<label class="label" >优惠券名称:</label>
			<div class="input">
				<input type="text" id="couponName" ng-model="couponQuery.couponName" name="keyword"/>
			</div>
			<a class="btn btn2 btn_blue btn_search radius50" href="javascript:void(0)" ng-click="searchSupplierCouponDetail()"><span>搜索</span></a>
		</div>
	</div>



	<!--contenttitle-->
	<table cellpadding="0" cellspacing="0" border="0" class="stdtable" id="dyntable3">
		<thead>
			<tr align="center">
				<th class="head0">商铺名称</th>
				<th class="head0">优惠券名称</th>
				<th class="head0">优惠券数量</th>
				<th class="head0">领取数量</th>
				<th class="head0">使用数量(已支付)</th>
				<th class="head0">使用数量(未支付)</th>
				<th class="head0">转化率(使用数量/领取数量)</th>
			</tr>
		</thead>
		<tbody>
			<tr class="gradeX" align="center" ng-repeat="coupon in supplierCoupons">
				<td>{{ coupon.supplierName}}</td>
				<td>{{ coupon.couponName}}</td>
				<td>{{ coupon.couponNum}}</td>
				<td>{{ coupon.receiveNum}}</td>
				<td>{{ coupon.payNum}}</td>
				<td>{{ coupon.notPayNum}}</td>
				<td>{{ coupon.conversionRate}}%</td>
			</tr>
		</tbody>
	</table>
</div>
<div class="angular_pager" style="margin-left: 20px;">
	<ul class="pagination" num-pages="numPages" current-page="currentPage" on-select-page="selectPage(page)">
		<li ng-class="{disabled: noPrevious()}"> <a ng-click="selectPrevious()">&laquo;</a>
		</li>
		<li ng-repeat="page in pages" ng-class="{active: isActive(page)}"> <a ng-click="selectPage(page)">{{page}}</a>
		</li>
		<li ng-class="{disabled: noNext()}"> <a ng-click="selectNext()">&raquo;</a>
		</li>
		<li><span style="position: relative;top: 5px;margin-left: 10px;font-size: 14px;">共:<b style="color: red;">{{numPages}}</b>页,当前第<b style="color: red;">{{currentPage}}</b>页;总记录数:<b style="color: red;">{{totalRecord}}</b></span></li>
	</ul>
</div>
</paging>