Commit 4ef4f43f by lixiaomin

修改退款金额显示

parent 220182fb
......@@ -187,7 +187,11 @@ export default {
},
methods: {
checkSelectable(row,index){
return row.refundId==null
if(row.refundId==null){
return true;
}else{
return false;
}
},
getProvince(province){
let list=this.piovince;
......@@ -340,9 +344,11 @@ export default {
amount.push(selectList[i].realAmount);
this.ids.push(selectList[i].id);
}
}
let sum=this.add(amount);
this.refundForm.refundAmount=sum;
let sum=this.add(amount);
this.refundForm.refundAmount=sum;
}else{
this.refundForm.refundAmount="";
}
},
add(arr){
let fieldArr=[]
......
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