This commit is contained in:
BianLzhaoMin 2025-12-12 19:20:09 +08:00
parent d6d0b7aa05
commit 407ba53fd2
2 changed files with 7 additions and 3 deletions

View File

@ -239,7 +239,9 @@
<el-row>
<el-col :span="4"> 日租金</el-col>
<el-col :span="8" style="color: #eb190a">
{{ goods.dayLeasePrice }}{{ ' ' + '元/天' }}
{{
goods.dayLeasePrice ? `'${goods.dayLeasePrice}'元/天'` : '电话面议'
}}
</el-col>
</el-row>
</div>

View File

@ -204,8 +204,10 @@
<el-row v-if="isShowDayLeasePrice">
<el-col :span="4"> 日租金</el-col>
<el-col :span="8" style="color: #eb190a">
{{ goods.dayLeasePrice }} / </el-col
>
{{
goods.dayLeasePrice ? `'${goods.dayLeasePrice}'元/天'` : '电话面议'
}}
</el-col>
</el-row>
</div>
</div>