소스 검색

验收修改情况处理表格样式

wangcz 8 년 전
부모
커밋
9b64b6897e
2개의 변경된 파일8개의 추가작업 그리고 8개의 파일을 삭제
  1. 4 4
      src/main/resources/spring/context.xml
  2. 4 4
      src/main/webapp/resources/view/usercenter/forstore/pay_center.html

+ 4 - 4
src/main/resources/spring/context.xml

@@ -11,13 +11,13 @@
 	http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
 	http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache-3.1.xsd">
 
-	<context:property-placeholder location="classpath*:${profile}/*.properties" />
+	<context:property-placeholder location="classpath*:dev/*.properties" />
 	<!-- 系统运行参数注入 -->
 	<util:properties id="sys"
-		location="classpath:${profile}/sys.properties" />
+		location="classpath:dev/sys.properties" />
 	<!-- 消息参数 -->
 	<util:properties id="message"
-		location="classpath:${profile}/message.properties" />
+		location="classpath:dev/message.properties" />
 	<!-- 注册spring上下文对象 -->
 	<bean class="com.uas.platform.b2c.core.support.ApplicationContextRegister" />
 	<!-- 容器启动完成之后执行 -->
@@ -185,7 +185,7 @@
 	<!-- 账户中心配置 -->
 	<bean id="accountConfigurer" class="com.uas.account.web.AccountConfigurer"
 		init-method="init">
-		<property name="configPath" value="classpath:${profile}/account.properties" />
+		<property name="configPath" value="classpath:dev/account.properties" />
 	</bean>
 
 	<import resource="classpath:spring/ehcache.xml"/>

+ 4 - 4
src/main/webapp/resources/view/usercenter/forstore/pay_center.html

@@ -411,7 +411,7 @@
 						<span>新增账户</span>
 					</div>
 				</div>
-				<table class="user-account-table table" ng-table="bankInfoTableParams">
+				<table class="user-account-table table" ng-table="bankInfoTableParams" style="table-layout: fixed">
 					<thead>
 						<th>开户银行</th>
 						<th >开户支行</th>
@@ -421,10 +421,10 @@
 					</thead>
 					<tbody>
 						<tr ng-repeat="account in accounts">
-							<td ng-bind="account.bankname">中国银行</td>
-							<td ng-bind="account.branchname">南山支行</td>
+							<td ng-bind="account.bankname" title="{{account.bankname}}">中国银行</td>
+							<td ng-bind="account.branchname" title="{{account.branchname}}">南山支行</td>
 							<td ng-bind="account.number | hideBankFilter">1256325*******************5621</td>
-							<td ng-bind="account.accountname">优软*********有限公司</td>
+							<td ng-bind="account.accountname" title="{{account.accountname}}">优软*********有限公司</td>
 							<td class="operate-area">
 								<a ng-click="showDeleteFrame(account)">删除</a>
 								<span class="mall-btn-submit" ng-if="account.num == 1">默认账户</span>