This commit is contained in:
parent
d6d0b7aa05
commit
407ba53fd2
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue