|
@@ -110,6 +110,7 @@
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
+ shop_type:0,
|
|
|
recommend_id: '',
|
|
|
car_detail: {},
|
|
|
showCarPlan: false,
|
|
@@ -130,6 +131,8 @@
|
|
|
this.locationFn()
|
|
|
}
|
|
|
if (options.shop_type) {
|
|
|
+ console.log(options.shop_type,99999999)
|
|
|
+ this.shop_type = options.shop_type
|
|
|
const d = {
|
|
|
hire_duration_unit:options.shop_type,
|
|
|
hire_price:Number(options.hire_price)
|
|
@@ -163,6 +166,16 @@
|
|
|
car_detail: resp.data.data,
|
|
|
// price: ((resp.data.data.rental_setting[0]?.hire_price || 0) / 100).toFixed(2)
|
|
|
})
|
|
|
+ if(!me.shop_type){
|
|
|
+ resp.data.data.rental_setting.map((item,index)=>{
|
|
|
+ if(index === 0){
|
|
|
+ me.tapSelectType({
|
|
|
+ hire_duration_unit:item.hire_duration_unit,
|
|
|
+ hire_price:Number(item.hire_price),
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
} else {
|
|
|
common.simpleToast(resp.data.msg);
|
|
|
}
|
|
@@ -173,6 +186,9 @@
|
|
|
hire_duration_unit,
|
|
|
hire_price
|
|
|
} = e
|
|
|
+ console.log(66666666)
|
|
|
+ console.log(hire_price)
|
|
|
+ console.log(hire_duration_unit)
|
|
|
this.setData({
|
|
|
selectType: hire_duration_unit,
|
|
|
price: (hire_price / 100).toFixed(2)
|