公司简称、电话商议
This commit is contained in:
parent
65380418c7
commit
99f5c58938
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue