This commit is contained in:
parent
bc81c0e682
commit
c98c012287
|
|
@ -21,7 +21,7 @@
|
||||||
<span style="text-align: right; color: #ff4800" v-if="isShowPrice">
|
<span style="text-align: right; color: #ff4800" v-if="isShowPrice">
|
||||||
<i style="font-size: 14px">¥</i>
|
<i style="font-size: 14px">¥</i>
|
||||||
<i style="margin: 0 6px; font-size: 18px; font-weight: bold">{{ price == 0 ? '电话商议' : price }}</i>
|
<i style="margin: 0 6px; font-size: 18px; font-weight: bold">{{ price == 0 ? '电话商议' : price }}</i>
|
||||||
<i v-if="price > 0" style="font-size: 14px">/ 天</i>
|
<i v-if="price > 0" style="font-size: 14px">{{isOperator == 1 ? '(含机手)' : ''}}/ 天</i>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -84,6 +84,10 @@ const props: any = defineProps({
|
||||||
type: [String, Number],
|
type: [String, Number],
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
|
isOperator: {
|
||||||
|
type: [String, Number],
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
const emit = defineEmits(['onClick'])
|
const emit = defineEmits(['onClick'])
|
||||||
|
|
|
||||||
|
|
@ -107,7 +107,7 @@
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="Top">
|
<div class="Top">
|
||||||
<div class="price" v-if="isShowPrice" style="font-size: 18px; font-weight: 800">
|
<div class="price" v-if="isShowPrice" style="font-size: 18px; font-weight: 800">
|
||||||
{{ pageData.dayLeasePrice !== 0 ? `¥${pageData.dayLeasePrice}/天` : '¥电话商议' }}
|
{{ pageData.dayLeasePrice !== 0 ? `¥${pageData.dayLeasePrice}${ pageData.isOperator == 1 ? '(含机手)' : '' }/天` : '¥电话商议' }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="phone" style="margin-top: 100px; margin-right: 30px">
|
<div class="phone" style="margin-top: 100px; margin-right: 30px">
|
||||||
|
|
|
||||||
|
|
@ -132,6 +132,7 @@
|
||||||
:ma_status="v.maStatus || v.ma_status"
|
:ma_status="v.maStatus || v.ma_status"
|
||||||
:manageMode="v.manageMode"
|
:manageMode="v.manageMode"
|
||||||
:deviceCount="v.deviceCount"
|
:deviceCount="v.deviceCount"
|
||||||
|
:isOperator="v.isOperator"
|
||||||
@click="onHandleDetails(v)"
|
@click="onHandleDetails(v)"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<div class="Top">
|
<div class="Top">
|
||||||
<div class="price" style="font-size: 18px; font-weight: 800">
|
<div class="price" style="font-size: 18px; font-weight: 800">
|
||||||
{{ pageData.dayLeasePrice !== 0 ? `¥${pageData.dayLeasePrice}/天` : '¥电话商议' }}
|
{{ pageData.dayLeasePrice !== 0 ? `¥${pageData.dayLeasePrice}${ pageData.isOperator == 1 ? '(含机手)' : '' }/天` : '¥电话商议' }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="phone" style="margin-top: 100px; margin-right: 30px">
|
<div class="phone" style="margin-top: 100px; margin-right: 30px">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue