|
|
@@ -180,14 +180,14 @@ export default {
|
|
|
const item = this.selectedDeliveryItem;
|
|
|
if (!item) {
|
|
|
if (this.deliveryList && this.deliveryList.length > 0) {
|
|
|
- return this.deliveryList[0].price === '暂无报价' ? '19.00' : this.deliveryList[0].price;
|
|
|
+ return this.deliveryList[0].price === '暂无报价' ? 0 : parseInt(this.deliveryList[0].price);
|
|
|
}
|
|
|
- return '0.00';
|
|
|
+ return 0;
|
|
|
}
|
|
|
if (item.price === '暂无报价') {
|
|
|
- return '19.00';
|
|
|
+ return 0;
|
|
|
}
|
|
|
- return item.price;
|
|
|
+ return parseInt(item.price);
|
|
|
}
|
|
|
},
|
|
|
onLoad(options) {
|