Browse Source

增加邀请记录查询

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@8420 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
hejq 9 years ago
parent
commit
f75e99740f
1 changed files with 157 additions and 0 deletions
  1. 157 0
      src/main/webapp/resources/tpl/index/baseInfo/invitation.html

+ 157 - 0
src/main/webapp/resources/tpl/index/baseInfo/invitation.html

@@ -0,0 +1,157 @@
+<style>
+.wrap table{
+	background-color: #fff;
+}
+
+.wrap table .table-hover {
+	border: 1px red solid;
+}
+#customer-tab .header th,#customer-tab tbody tr.header,#customer-tab tbody tr.header th{
+	height: 38px;
+	text-align: center;
+	padding: 0;
+	line-height: 38px;
+	border-bottom-width: 0;
+	background: #f5f5f5;
+	border: none;
+	font-size: 12px;
+}
+#customer-tab tbody tr.header:hover{
+	border: none;
+}
+.pane-header{
+	/*border-radius: 0px 0 0px 0px;
+	box-shadow: 0 0 3px #ccc;
+	background: linear-gradient(to top, #e7e7e7 0%,#ffffff 100%);*/
+	height: 40px;
+	font-size: 14px;
+	line-height: 40px;}
+#customer-tab .pane-header th{
+	border-bottom: none;
+}
+.table>tbody+tbody{
+	border-top: none;
+}
+#customer-tab tbody td{
+	border: none;
+}
+#customer-tab .pane-body{
+	padding: 0;
+}
+#customer-tab tbody tr{
+	background: none;
+	height: 100px;
+	border-top: #e8e8e8 1px solid;
+	line-height: 100px;
+}
+#customer-tab tbody tr td{
+	text-align: center;
+	line-height: 20px;
+	vertical-align: inherit;
+	font-size: 14px;
+}
+/*#customer-tab tbody tr:hover{
+	border: #d32526 2px solid;
+}*/
+#customer-tab .com_title{
+	margin-bottom: 10px;
+}
+#customer-tab tbody tr td a{
+	color: #3578ba;
+}
+#customer-tab tbody tr td a:hover{
+	color: #d32526;
+}
+#customer-tab .content{
+	width: 100%;
+}
+#myquest-public .group-container{
+	width: 100%;
+}
+#myquest-public .group-container .btn-group {
+	width: 160px;
+	border: none;
+	height: 45px;
+}
+#myquest-public .group-container .btn-group .btn {
+	border: none;
+	font-size: 16px;
+}
+#myquest-public  .group-container .btn-group .btn em {
+	color: #d32526;
+	font-style: inherit;
+}
+ #myquest-public .group-container .btn-group .btn:hover {
+	background: #fff;
+	color: #d32526;
+}
+#myquest-public .group-container .btn-group .btn-info {
+	color: #d32526;
+	background: #fff;
+	border: none;
+}
+#myquest-public .margin-bot{
+	margin-bottom: 10px;
+}
+#myquest-public .group-container{
+	height: 45px;
+	padding: 0;
+	background: #fff;
+}
+#myquest-public #public .search-bg .input-group-addon{
+	width: 85px;
+}
+</style>
+<div style="margin-left: -240px; width: 1170px; background: #f5f5f5;" id="myquest-public">
+<div ng-include src="'static/tpl/index/baseInfo/vendorAndCustomer.html'"></div>
+<link rel="stylesheet" href="static/css/public.css">
+<div id="public" style="background: #f5f5f5;">
+	<div class="condition" style="padding: 0;">
+		<div class="myReuest search-bg condition" >
+			<div class="row">
+				<div class="col-xs-5">
+					<div class="search">
+						<div class="form-group form-group-sm has-feedback" dropdown auto-close="outsideClick" on-toggle="searchAdvance=open">
+							<input type="search" class="form-control input-sm" ng-model="keyword" ng-search="onSearch(keyword)" placeholder="输入企业名称、简称或申请人搜索"  style="width: 100%"/>
+							<a class="btn input-group-addon" ng-click="onSearch(keyword)">搜索</a>
+						</div>
+					</div>
+				</div>
+				<div class="col-xs-4">
+					<p>搜索到<em>{{tableParams.total()}}</em>条</p>
+				</div>
+			</div>
+		</div>
+	</div>
+</div>
+<div class="wrap" id="customer-tab">
+	<div class="content">
+		<!--供应商列表-->
+		<table class="table  table-hover customer-tab"
+			ng-table="tableParams">
+			<tbody ng-repeat="record in $data">
+					<tr class="customer-hd">
+						<td colspan="4" class="text-left"><span ng-bind="::record.vendname"></span></td>
+					</tr>
+					<tr class="customer-bd">
+						<td  class="first" colspan="4">
+							<div>联系人:<span ng-bind="::record.vendusername"></span></div>
+							<div ng-if="::record.vendusertel != null">电话:<span ng-bind="::record.vendusertel"></span></div>
+							<div ng-if="::record.venduseremail != null">邮箱:<span ng-bind="::record.venduseremail"></span></div>
+							<div>邀请时间:<span ng-bind="::record.date| date: 'yyyy-MM-dd'"></span></div>
+							<div>次数:<span ng-bind="::record.count"></span></div>
+						</td>
+						<td width="400" class="text-center all-btn">
+							
+						</td>
+					</tr>
+			</tbody>
+			<tbody ng-if="customerParams.total() == 0">
+				<tr>
+					<td><i class="fa  fa-info-circle"></i> 暂无供应商信息</td>
+				</tr>
+			</tbody>
+		</table>
+	</div>
+</div>
+</div>