Commit 4d6afb8e by cocomilk2012

update

parent f6f7630e
......@@ -58,7 +58,7 @@
</div>
<div class="fe-list-child-right">
<div class="fe-list-child-right-desc">
<h3>{{ item.paidSalary }}</h3>
<h3>{{ item.paidSalary }}.00</h3>
<p :style="matchColor(item.billStatus)">
{{ item.billStatus }}
</p>
......@@ -133,8 +133,8 @@ export default class FlexEmployee extends Vue {
console.log("res=", res);
this.accept_work = res.alCount; // 已接任务
this.perform_work = res.comCount; // 完成任务
this.Payment_receivable = res.receivableSalary; // 应收报酬
this.receive_receivable = res.receivedSalary; // 已收报酬
this.Payment_receivable = res.receivableSalary.toFixed(2); // 应收报酬
this.receive_receivable = res.receivedSalary.toFixed(2); // 已收报酬
this.taskRecordList = res.taskList; // 任务记录
console.log("taskRecordList=", this.taskRecordList);
......
......@@ -2,7 +2,7 @@
<div class="fe-detial-box">
<div class="fe-detial-top">
<h4>任务报酬</h4>
<h3>+{{ item.paidSalary }}</h3>
<h3>+{{ item.paidSalary.toFixed(2) }}</h3>
<p :style="matchColor(item.status)">{{ item.status }}</p>
</div>
<div class="fe-detial-bottom">
......
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