mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
费用汇总表明细
This commit is contained in:
parent
45dbc4761a
commit
15850bec70
@ -1,7 +1,15 @@
|
||||
<div class="index-1-right-1">
|
||||
<div class="index-title"><span>小区公告</span></div>
|
||||
<ul >
|
||||
<li class="flex justify-between padding-top-sm" v-for="(item,index) in indexNoticeInfo.notices" v-if="indexNoticeInfo.notices && indexNoticeInfo.notices.length>0">
|
||||
<ul>
|
||||
<li class="flex justify-between padding-top-sm" v-if="!indexNoticeInfo.notices || indexNoticeInfo.notices.length < 1">
|
||||
<div class="vc-index-notice-title">
|
||||
当前没有公告信息
|
||||
</div>
|
||||
<div class="vc-index-notice-time">
|
||||
|
||||
</div>
|
||||
</li>
|
||||
<li class="flex justify-between padding-top-sm" v-for="(item,index) in indexNoticeInfo.notices" v-else>
|
||||
<div class="vc-index-notice-title">
|
||||
{{item.title}}
|
||||
</div>
|
||||
@ -10,13 +18,5 @@
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="flex justify-between padding-top-sm" v-else >
|
||||
<div class="vc-index-notice-title">
|
||||
当前没有公告信息
|
||||
</div>
|
||||
<div class="vc-index-notice-time">
|
||||
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@ -17,6 +17,12 @@
|
||||
<th class="text-center">
|
||||
<span><vc:i18n name="日期" namespace="reportFeeSummaryDetail"></vc:i18n></span>
|
||||
</th>
|
||||
<th class="text-center">
|
||||
<span><vc:i18n name="房号/车辆/合同" namespace="reportFeeSummaryDetail"></vc:i18n></span>
|
||||
</th>
|
||||
<th class="text-center">
|
||||
<span><vc:i18n name="费用项" namespace="reportFeeSummaryDetail"></vc:i18n></span>
|
||||
</th>
|
||||
<th class="text-center">
|
||||
<span><vc:i18n name="历史欠费" namespace="reportFeeSummaryDetail"></vc:i18n></span>(单位:元)
|
||||
</th>
|
||||
@ -49,6 +55,8 @@
|
||||
<tbody>
|
||||
<tr v-for="fee in reportFeeSummaryDetailInfo.fees">
|
||||
<td class="text-center">{{fee.feeYear+'年'+fee.feeMonth+'月'}}</td>
|
||||
<td class="text-center">{{fee.objName}}</td>
|
||||
<td class="text-center">{{fee.feeName}}</td>
|
||||
<td class="text-center">{{fee.hisOweAmount}}</td>
|
||||
<td class="text-center">{{fee.curReceivableAmount}}</td>
|
||||
<td class="text-center">{{_computeSum(fee.hisOweAmount,fee.curReceivableAmount)}}</td>
|
||||
@ -72,15 +80,15 @@
|
||||
</table>
|
||||
<!-- 分页 -->
|
||||
<!-- 分页 -->
|
||||
</div>
|
||||
<div class="row margin-top-xs">
|
||||
<div class="col-sm-3 float-right">
|
||||
<vc:create path="frame/pagination"></vc:create>
|
||||
|
||||
<div class="row margin-top-xs">
|
||||
<div class="col-sm-12 float-right">
|
||||
<vc:create path="frame/pagination"></vc:create>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<vc:create path="property/searchFloor" emitChooseFloor="reportFeeSummaryDetail" emitLoadData="xx"></vc:create>
|
||||
<vc:create path="property/searchFloor" emitChooseFloor="reportFeeSummaryDetail" emitLoadData="xx"></vc:create>
|
||||
</div>
|
||||
@ -3,7 +3,7 @@
|
||||
**/
|
||||
(function(vc) {
|
||||
var DEFAULT_PAGE = 1;
|
||||
var DEFAULT_ROWS = 10;
|
||||
var DEFAULT_ROWS = 20;
|
||||
vc.extends({
|
||||
data: {
|
||||
reportFeeSummaryDetailInfo: {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user