Browse Source

新增对账单时默认光标在客户,增加客户提示

git-svn-id: svn+ssh://10.10.101.21/source/platform/platform-b2b@7175 f3bf4e98-0cf0-11e4-a00c-a99a8b9d557d
hejq 9 years ago
parent
commit
cc676d1c23

+ 3 - 3
src/main/webapp/resources/tpl/index/fa/apCheckList.html

@@ -66,8 +66,8 @@
 			</div>
  			<div class="col-xs-3">
  				<div class="form-group form-group-sm has-feedback">
-					<input type="search" class="form-control input-sm" 
-						ng-model="suuorname" placeholder="可用客户名称筛选" /><span
+					<input type="text" class="form-control input-sm" 
+						id="suuorname" ng-model="suuorname" placeholder="可用客户名称筛选" ng-click="searchCust(suuorname)"/><span
 						class="form-control-feedback text-simple"><i
 						class="fa fa-search"></i></span>
 				</div>
@@ -155,7 +155,7 @@
 							</button>
 						</span>
 					</div>
-					<div>(<span class="text-inverse">*注: </span>列表默认显示的时间为近个月的数据,超出的可以通过日期筛选得出)</div>
+					<div>(<span class="text-inverse">*注: </span>列表默认显示的时间为近个月的数据,超出的可以通过日期筛选得出)</div>
 					</div>
 					</div>
 					<div class="col-xs-2 col-xs-offset-1" style="margin-top:4px">

+ 24 - 0
src/main/webapp/resources/tpl/index/fa/custInfo.html

@@ -0,0 +1,24 @@
+<div class="modal-header">
+	<h3 class="modal-title">
+		<i class="fa fa-user fa-fw text-default"></i>客户名称
+	</h3>
+</div>
+<div class="modal-body">
+	<div>
+		<table width="50%" class="block table table-bordered table-striped table-hover">
+		<thead>
+				<th width="80px;" class="text-center">用户名称</th>
+		</thead>
+		<tbody>
+				<div style="overflow-y:scroll; width:100%;max-height:500px">			
+					<tr ng-repeat="cust in custs">
+						<td width="80px;"><a ng-bind="cust.custName" ng-click="CustName(cust.custName)"></a></td>
+					</tr>
+				</div>
+		<tbody>
+	</table>
+	</div>
+</div>
+<div class="modal-footer">
+	<button class="btn btn-default" ng-click="close(false)" type="button">取消</button>
+</div>