mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
优化代码
This commit is contained in:
parent
2ef6bf6171
commit
f9405318c3
@ -48,10 +48,10 @@
|
||||
<div class="ibox-title">
|
||||
<h5>缴费清单</h5>
|
||||
<div class="ibox-tools" style="top:10px;">
|
||||
<button type="button" class="btn btn-primary btn-sm" v-on:click="_exportExcel()">
|
||||
<!-- <button type="button" class="btn btn-primary btn-sm" v-on:click="_exportExcel()">
|
||||
<i class="fa fa-plus"></i>
|
||||
导出
|
||||
</button>
|
||||
</button> -->
|
||||
</div>
|
||||
</div>
|
||||
<div class="ibox-content">
|
||||
@ -70,6 +70,7 @@
|
||||
<td class="text-center">实付金额</td>
|
||||
<td class="text-center">操作员工</td>
|
||||
<td class="text-center">缴费时间</td>
|
||||
<td class="text-right">详情</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -83,7 +84,12 @@
|
||||
<td class="text-center">{{payFee.receivedAmount}}</td>
|
||||
<td class="text-center">{{payFee.userName}}</td>
|
||||
<td class="text-center">{{payFee.createTime}}</td>
|
||||
|
||||
<td class="text-right">
|
||||
|
||||
<button class="btn btn-link btn-xs"
|
||||
v-on:click="_detailFee(payFee)">详情
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
|
||||
@ -126,6 +126,9 @@
|
||||
}
|
||||
);
|
||||
},
|
||||
_detailFee:function(_fee){
|
||||
vc.jumpToPage('/admin.html#/pages/property/propertyFee?'+vc.objToGetParam(_fee));
|
||||
}
|
||||
}
|
||||
});
|
||||
})(window.vc);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user