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) {