费用汇总表明细

This commit is contained in:
java110 2022-07-07 19:19:51 +08:00
parent 45dbc4761a
commit 15850bec70
3 changed files with 25 additions and 17 deletions

View File

@ -1,7 +1,15 @@
<div class="index-1-right-1"> <div class="index-1-right-1">
<div class="index-title"><span>小区公告</span></div> <div class="index-title"><span>小区公告</span></div>
<ul > <ul>
<li class="flex justify-between padding-top-sm" v-for="(item,index) in indexNoticeInfo.notices" v-if="indexNoticeInfo.notices && indexNoticeInfo.notices.length>0"> <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"> <div class="vc-index-notice-title">
{{item.title}} {{item.title}}
</div> </div>
@ -10,13 +18,5 @@
</div> </div>
</li> </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> </ul>
</div> </div>

View File

@ -17,6 +17,12 @@
<th class="text-center"> <th class="text-center">
<span><vc:i18n name="日期" namespace="reportFeeSummaryDetail"></vc:i18n></span> <span><vc:i18n name="日期" namespace="reportFeeSummaryDetail"></vc:i18n></span>
</th> </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"> <th class="text-center">
<span><vc:i18n name="历史欠费" namespace="reportFeeSummaryDetail"></vc:i18n></span>(单位:元) <span><vc:i18n name="历史欠费" namespace="reportFeeSummaryDetail"></vc:i18n></span>(单位:元)
</th> </th>
@ -49,6 +55,8 @@
<tbody> <tbody>
<tr v-for="fee in reportFeeSummaryDetailInfo.fees"> <tr v-for="fee in reportFeeSummaryDetailInfo.fees">
<td class="text-center">{{fee.feeYear+'年'+fee.feeMonth+'月'}}</td> <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.hisOweAmount}}</td>
<td class="text-center">{{fee.curReceivableAmount}}</td> <td class="text-center">{{fee.curReceivableAmount}}</td>
<td class="text-center">{{_computeSum(fee.hisOweAmount,fee.curReceivableAmount)}}</td> <td class="text-center">{{_computeSum(fee.hisOweAmount,fee.curReceivableAmount)}}</td>
@ -72,15 +80,15 @@
</table> </table>
<!-- 分页 --> <!-- 分页 -->
<!-- 分页 --> <!-- 分页 -->
</div>
<div class="row margin-top-xs"> <div class="row margin-top-xs">
<div class="col-sm-3 float-right"> <div class="col-sm-12 float-right">
<vc:create path="frame/pagination"></vc:create> <vc:create path="frame/pagination"></vc:create>
</div> </div>
</div> </div>
</div> </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> </div>

View File

@ -3,7 +3,7 @@
**/ **/
(function(vc) { (function(vc) {
var DEFAULT_PAGE = 1; var DEFAULT_PAGE = 1;
var DEFAULT_ROWS = 10; var DEFAULT_ROWS = 20;
vc.extends({ vc.extends({
data: { data: {
reportFeeSummaryDetailInfo: { reportFeeSummaryDetailInfo: {