公司简称、电话商议

This commit is contained in:
hayu 2026-01-03 17:16:43 +08:00
parent 65380418c7
commit 99f5c58938
2 changed files with 3 additions and 5 deletions

View File

@ -107,9 +107,7 @@
<div class="right">
<div class="Top">
<div class="price" v-if="isShowPrice">
<span>{{ pageData.dayLeasePrice }}</span>
/
{{ pageData.dayLeasePrice !== 0 ? `${pageData.dayLeasePrice}/天` : '¥电话商议' }}
</div>
</div>
<div class="phone" style="margin-top: 100px; margin-right: 30px">

View File

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