Commit 4f17a59f authored by youjie's avatar youjie

no message

parent e21df144
......@@ -77,11 +77,15 @@
<td>{{item.WBMoney}}</td>
<td>{{item.Rate}}</td>
<td>{{item.StatusStr}}</td>
<td>{{item.Money}}</td>
<td>
{{item.Money}}
<span v-if="item.OtherType==65"
style="font-size: 12px;margin-left: 3px;color: #FF9600;">(退)</span>
</td>
</tr>
<tr class="_color_b">
<td colspan="6">合计</td>
<td colspan="7">合计</td>
<td>{{cdtotal}}</td>
</tr>
</table>
......@@ -287,7 +291,12 @@ export default {
let data=res.data.data.pageData;
this.czTableList=data;
data.forEach(item => {
this.cdtotal+=item.Money;
if(item.OtherType==65){
this.cdtotal+=-(item.Money);
}else{
this.cdtotal+=item.Money;
}
});
this.cdtotal=this.cdtotal.toFixed(2);
......
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 to comment