Commit 1fe6ffb7 by 展昭
parents b3b88867 72c5442d
Showing with 11 additions and 6 deletions
......@@ -10,11 +10,11 @@
<div class="header_content">
<div class="fund">
<span>账户余额</span>
<i>1,000.00</i>
<i>{{data.balance}}</i>
</div>
<div class="paid">
<span>待付金额</span>
<i class="paid_color">200.00</i>
<i class="paid_color">{{data.toBePayAmount}}</i>
</div>
</div>
<div class="header_info">
......@@ -37,11 +37,11 @@
</div>
<p>
<span>应付金额</span>
<i>600.00</i>
<i>{{data.detail.toPayAmount}}</i>
</p>
<p>
<span>待付金额</span>
<i>{{topay}}</i>
<i>{{data.detial.toBePayAmount}}</i>
</p>
</div>
</div>
......@@ -60,8 +60,13 @@ export default {
data() {
return {
title: "人事服务",
data: {
topay: 0
data:{
balance:0,
toBePayAmount:0,
detail:{
toPayAmount:0,
toBePayAmount:0
}
}
};
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment