Commit f2b30ee3 authored by youjie's avatar youjie

no message

parent 1b9106f6
...@@ -196,7 +196,9 @@ ...@@ -196,7 +196,9 @@
}, },
join(){ join(){
this.cars = [] this.cars = []
this.cars = JSON.parse(localStorage.getItem('cars')) if(JSON.parse(localStorage.getItem('cars'))){
this.cars = JSON.parse(localStorage.getItem('cars'))
}
if(!this.sumPeople) return this.Error('请加入人数'); if(!this.sumPeople) return this.Error('请加入人数');
const temp= JSON.parse(JSON.stringify(this.parameters)) const temp= JSON.parse(JSON.stringify(this.parameters))
temp.Money=0 temp.Money=0
...@@ -207,7 +209,7 @@ ...@@ -207,7 +209,7 @@
temp.Money+=(x.PeopleNumber*(x.Unit_Price+x.TaxesPrice+x.PriceInTangTax)) temp.Money+=(x.PeopleNumber*(x.Unit_Price+x.TaxesPrice+x.PriceInTangTax))
}); });
let existsIndex = this.cars.findIndex((x)=>x.Date == temp.Date) let existsIndex = this.cars.findIndex((x)=>x.Date == temp.Date)
let exists = existsIndex==-1?null:this.cars[existsIndex] let exists = existsIndex==-1?null:this.cars[existsIndex]
if(exists){ if(exists){
let existsHotel = exists.Hotels.findIndex((h)=>h.HotelId==temp.HotelId) let existsHotel = exists.Hotels.findIndex((h)=>h.HotelId==temp.HotelId)
if(existsHotel!=-1) exists.Hotels.splice(existsHotel,1) if(existsHotel!=-1) exists.Hotels.splice(existsHotel,1)
......
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