File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed
java/com/java110/web/smo/impl
resources/components/index-arrears Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -379,8 +379,8 @@ private void validateListFee(IPageData pd) {
379
379
JSONObject paramIn = JSONObject .parseObject (pd .getReqData ());
380
380
Assert .hasLength (paramIn .getString ("communityId" ), "小区ID不能为空" );
381
381
Assert .hasLength (paramIn .getString ("feeTypeCd" ), "停车位feeTypeCd不能为空" );
382
- Assert .isInteger ("row" , "row必须为数字" );
383
- Assert .isInteger ("page" , "page必须为数字" );
382
+ Assert .isInteger (paramIn . getString ( "row" ) , "row必须为数字" );
383
+ Assert .isInteger (paramIn . getString ( "page" ) , "page必须为数字" );
384
384
}
385
385
386
386
Original file line number Diff line number Diff line change 4
4
< div class ="ibox ">
5
5
< div class ="ibox-title ">
6
6
< h5 > 欠费信息</ h5 >
7
- < div class ="ibox-tools ">
8
- < div data-toggle ="buttons " class ="btn-group btn-group-toggle ">
9
- < label class ="btn btn-sm btn-white active "> < input type ="radio " v-on:click ="_switchFeeType(888800010001) " name ="options "> 物业费 </ label >
10
- < label class ="btn btn-sm btn-white "> < input type ="radio " v-on:click ="_switchFeeType(888800010006) " name ="options "> 停车费 </ label >
7
+ < div class ="ibox-tools " style ="top: 10px; ">
8
+
9
+ < div class ="btn-group " role ="group " aria-label ="Basic example ">
10
+ < button type ="button "
11
+ class ="btn btn-light btn-sm "
12
+ v-bind:class ="{'btn-primary': indexArrearsInfo.feeTypeCd == 888800010001} "
13
+ v-on:click ="_switchFeeType(888800010001) "
14
+ > 物业费</ button >
15
+
16
+
17
+ < button type ="button "
18
+ class ="btn btn-light btn-sm "
19
+ v-bind:class ="{'btn-primary': indexArrearsInfo.feeTypeCd == 888800010005} "
20
+ v-on:click ="_switchFeeType(888800010005) "
21
+ > 停车费</ button >
11
22
</ div >
12
23
</ div >
13
24
</ div >
Original file line number Diff line number Diff line change 54
54
55
55
} ,
56
56
_switchFeeType :function ( _feeTypeCd ) {
57
+ console . log ( '_feeTypeCd' )
57
58
vc . component . indexArrearsInfo . feeTypeCd = _feeTypeCd ;
58
59
vc . component . _listArrearsData ( DEFAULT_PAGE , DEFAULT_ROWS ) ;
59
60
}
You can’t perform that action at this time.
0 commit comments