diff --git a/src/pagesLogin/index copy.vue b/src/pagesLogin/index copy.vue new file mode 100644 index 0000000..f439d5a --- /dev/null +++ b/src/pagesLogin/index copy.vue @@ -0,0 +1,285 @@ + + + + + diff --git a/src/pagesVehicle/inquiry.vue b/src/pagesVehicle/inquiry.vue index 6e7d5ee..9678d1e 100644 --- a/src/pagesVehicle/inquiry.vue +++ b/src/pagesVehicle/inquiry.vue @@ -821,14 +821,16 @@ const beforeSave = () => { if (res) { // startSave(); // - VehicleApi.queryPrice({ name: model1.formData.wheelMaterial }).then( + // { name: model1.formData.wheelMaterial } + VehicleApi.queryPrice({}).then( (res: any) => { if (res.code === 200) { if (res.data) { isShowPrice.value = true; - totalPrice.value = parseInt( + // 燃油(黄、蓝牌)车在线报价:参考回收价=【当日回收单价*总质量-物流费(280)-铁质400(铝质0)】*90% + totalPrice.value = parseInt(((parseInt( (res.data.price * model1.formData.totalWeight).toFixed(0) - ); + ) - 280 - (model1.formData.wheelMaterial === '铝质' ? 0 : 400)) * 0.9).toFixed(1)) ; } else { uni.showToast({ icon: "none",