|
|
@@ -101,7 +101,8 @@ export default {
|
|
|
"days":item.days,
|
|
|
"amountrate":(item.amountrate/100).toFixed(4),
|
|
|
"isused":"1",
|
|
|
- "point":"订单审核"
|
|
|
+ "point":"订单审核",
|
|
|
+ "iswarranty":item.iswarranty
|
|
|
}
|
|
|
})
|
|
|
}else {
|
|
|
@@ -113,7 +114,8 @@ export default {
|
|
|
"days":item.days,
|
|
|
"amountrate":(item.amountrate/100).toFixed(4),
|
|
|
"isused":"1",
|
|
|
- "point":"订单出货"
|
|
|
+ "point":"订单出货",
|
|
|
+ "iswarranty":item.iswarranty
|
|
|
}
|
|
|
})
|
|
|
}else {
|
|
|
@@ -125,7 +127,8 @@ export default {
|
|
|
"days":item.days,
|
|
|
"amountrate":(item.amountrate/100).toFixed(4),
|
|
|
"isused":"1",
|
|
|
- "point":"订单开票"
|
|
|
+ "point":"订单开票",
|
|
|
+ "iswarranty":item.iswarranty
|
|
|
}
|
|
|
})
|
|
|
}else {
|
|
|
@@ -164,17 +167,20 @@ export default {
|
|
|
this.$refs.audit.list = [{
|
|
|
days:'',
|
|
|
amountrate:'',
|
|
|
+ iswarranty:'0'
|
|
|
}]
|
|
|
}
|
|
|
}else if (value === '出货'){
|
|
|
this.$refs.shipment.list = [{
|
|
|
days:'',
|
|
|
amountrate:'',
|
|
|
+ iswarranty:'0'
|
|
|
}]
|
|
|
}else if (value === '开票'){
|
|
|
this.$refs.invoice.list = [{
|
|
|
days:'',
|
|
|
amountrate:'',
|
|
|
+ iswarranty:'0'
|
|
|
}]
|
|
|
}
|
|
|
},
|