|
@@ -130,6 +130,13 @@
|
|
this.model_id = options.model_id
|
|
this.model_id = options.model_id
|
|
this.locationFn()
|
|
this.locationFn()
|
|
}
|
|
}
|
|
|
|
+ if (options.shop_type) {
|
|
|
|
+ const d = {
|
|
|
|
+ hire_duration_unit:options.shop_type,
|
|
|
|
+ hire_price:Number(options.hire_price)
|
|
|
|
+ }
|
|
|
|
+ this.tapSelectType(d)
|
|
|
|
+ }
|
|
// this.loadCarInfo()
|
|
// this.loadCarInfo()
|
|
// getFlatternDistance 获取直线距离
|
|
// getFlatternDistance 获取直线距离
|
|
},
|
|
},
|
|
@@ -149,12 +156,13 @@
|
|
}, (resp) => {
|
|
}, (resp) => {
|
|
if (resp.data.code === 200) {
|
|
if (resp.data.code === 200) {
|
|
// resp.data.data.desc = resp.data.data.desc.replaceAll('/<img\b/gi, '$& style="1"'')
|
|
// resp.data.data.desc = resp.data.data.desc.replaceAll('/<img\b/gi, '$& style="1"'')
|
|
- me.tapSelectType(resp.data.data.rental_setting[0])
|
|
|
|
|
|
+
|
|
|
|
+ // me.tapSelectType(resp.data.data.rental_setting[0])
|
|
resp.data.data.distance = common.formatDistance(Number(resp.data.data.distance))
|
|
resp.data.data.distance = common.formatDistance(Number(resp.data.data.distance))
|
|
resp.data.data.desc = this.$htmlData(resp.data.data.desc)
|
|
resp.data.data.desc = this.$htmlData(resp.data.data.desc)
|
|
me.setData({
|
|
me.setData({
|
|
car_detail: resp.data.data,
|
|
car_detail: resp.data.data,
|
|
- price: ((resp.data.data.rental_setting[0]?.hire_price || 0) / 100).toFixed(2)
|
|
|
|
|
|
+ // price: ((resp.data.data.rental_setting[0]?.hire_price || 0) / 100).toFixed(2)
|
|
})
|
|
})
|
|
} else {
|
|
} else {
|
|
common.simpleToast(resp.data.msg);
|
|
common.simpleToast(resp.data.msg);
|