From 1def784acd76564300b633d2c23b2544a127b8a0 Mon Sep 17 00:00:00 2001
From: admin <>
Date: Thu, 17 Oct 2024 09:35:57 +0800
Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E4=BB=B7=E6=A0=BC?=
=?UTF-8?q?=E8=AE=A1=E7=AE=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pagesLogin/index copy.vue | 285 ++++++++++++++++++++++++++++++++++
src/pagesVehicle/inquiry.vue | 8 +-
2 files changed, 290 insertions(+), 3 deletions(-)
create mode 100644 src/pagesLogin/index copy.vue
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 @@
+
+
+ 欢迎使用在生万有回收平台
+
+
+
+
+
+
+ {handleInput(e, 'phone')}"
+ @clear="handleClear({ key: 'phone' })"
+ >
+
+
+
+
+
+ 获取验证码
+ {{ seconds }}s后重新发送
+
+
+
+
+
+ 立即登录
+
+ {
+ checkGroup.agreeCheck = v;
+ }
+ "
+ >
+
+ 我已阅读并同意在生万有
+ 《 用户协议 》
+ 和
+ 《 隐私政策 》
+
+
+
+
+
+
+
+
+
+
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",