Commit 0b77b0a5 authored by youjie's avatar youjie

no message

parent 4f17a59f
......@@ -79,7 +79,7 @@
<td>{{item.StatusStr}}</td>
<td>
{{item.Money}}
<span v-if="item.OtherType==65"
<span v-if="item.OtherType&&item.OtherType==65"
style="font-size: 12px;margin-left: 3px;color: #FF9600;">(退)</span>
</td>
......@@ -291,7 +291,7 @@ export default {
let data=res.data.data.pageData;
this.czTableList=data;
data.forEach(item => {
if(item.OtherType==65){
if(item.OtherType&&item.OtherType==65){
this.cdtotal+=-(item.Money);
}else{
this.cdtotal+=item.Money;
......
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