Commit 214ebe34 by cocomilk2012

update

parent 4d6afb8e
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
</div> </div>
<div class="fe-list-child-right"> <div class="fe-list-child-right">
<div class="fe-list-child-right-desc"> <div class="fe-list-child-right-desc">
<h3>{{ item.paidSalary }}.00</h3> <h3>{{ Number(item.paidSalary / 100).toFixed(2) }}</h3>
<p :style="matchColor(item.billStatus)"> <p :style="matchColor(item.billStatus)">
{{ item.billStatus }} {{ item.billStatus }}
</p> </p>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div class="fe-detial-box"> <div class="fe-detial-box">
<div class="fe-detial-top"> <div class="fe-detial-top">
<h4>任务报酬</h4> <h4>任务报酬</h4>
<h3>+{{ item.paidSalary.toFixed(2) }}</h3> <h3>+{{ (item.paidSalary / 100).toFixed(2) }}</h3>
<p :style="matchColor(item.status)">{{ item.status }}</p> <p :style="matchColor(item.status)">{{ item.status }}</p>
</div> </div>
<div class="fe-detial-bottom"> <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