From 99f5c589386a8026e80233e3f5c70d0241df573e Mon Sep 17 00:00:00 2001
From: hayu <1604366271@qq.com>
Date: Sat, 3 Jan 2026 17:16:43 +0800
Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E5=8F=B8=E7=AE=80=E7=A7=B0=E3=80=81?=
=?UTF-8?q?=E7=94=B5=E8=AF=9D=E5=95=86=E8=AE=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/equip/detail.vue | 4 +---
src/views/equip/list.vue | 4 ++--
2 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/src/views/equip/detail.vue b/src/views/equip/detail.vue
index a3f1d78..33ffef8 100644
--- a/src/views/equip/detail.vue
+++ b/src/views/equip/detail.vue
@@ -107,9 +107,7 @@
- ¥
- {{ pageData.dayLeasePrice }}
- /天
+ {{ pageData.dayLeasePrice !== 0 ? `¥${pageData.dayLeasePrice}/天` : '¥电话商议' }}
diff --git a/src/views/equip/list.vue b/src/views/equip/list.vue
index 8b70f53..6696496 100644
--- a/src/views/equip/list.vue
+++ b/src/views/equip/list.vue
@@ -419,7 +419,7 @@ const getCompanyAddressListData = async () => {
.filter((e: any) => e.isShow)
.map((e: any) => {
// console.log('🚀 ~ addressList ~ e:', e)
- return { ...e, name: e.companyName, value: e.companyId, isChecked: false, index: 4 }
+ return { ...e, name: e.companyAbbreviationName, value: e.companyId, isChecked: false, index: 4 }
})
screenChooseList[4].list.push(...addressList)
}
@@ -503,7 +503,7 @@ const getDeviceListData = async (params: any = null, keyWord: any = null) => {
const result: any = await getCompanyCountApi(searchParams_2)
screenChooseList[4].list.forEach((e: any, index: any) => {
if (index != 0) {
- e.name = e.companyName + `(${0})`
+ e.name = e.companyAbbreviationName + `(${0})`
}
})
for (let key in result.data) {