Compare commits
4 Commits
prod-25-04
...
prod-25-05
| Author | SHA1 | Date | |
|---|---|---|---|
| 6a53749cdc | |||
| d71e3679ef | |||
| c626aab606 | |||
| 7594e56cda |
@ -77,14 +77,24 @@
|
|||||||
<span>排放标准</span>
|
<span>排放标准</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="suGang"></div>
|
<div class="suGang"></div>
|
||||||
|
<div class="itemInfo">
|
||||||
|
<span>{{ detailInfo.brakeSystem == 2 ? '油刹' : '汽刹' }}</span>
|
||||||
|
<span>刹车系统</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="descItem descCommon">
|
||||||
|
<div class="itemInfo">
|
||||||
|
<span>{{ detailInfo.underpanBrand }}</span>
|
||||||
|
<span>底盘品牌</span>
|
||||||
|
</div>
|
||||||
|
<div class="suGang"></div>
|
||||||
<div class="itemInfo">
|
<div class="itemInfo">
|
||||||
<el-tooltip class="item" effect="dark" :content="formatToWan(detailInfo.mileage)+'公里'" placement="top">
|
<el-tooltip class="item" effect="dark" :content="formatToWan(detailInfo.mileage)+'公里'" placement="top">
|
||||||
<span style="display: inline-block;width:100%;cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">{{ formatToWan(detailInfo.mileage)}}公里</span>
|
<span style="display: inline-block;width:100%;cursor: pointer; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">{{ formatToWan(detailInfo.mileage)}}公里</span>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<span>行驶公里</span>
|
<span>行驶公里</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<div class="suGang"></div>
|
||||||
<div class="descItem descCommon">
|
|
||||||
<div class="itemInfo dateItemInfo">
|
<div class="itemInfo dateItemInfo">
|
||||||
<span>{{ detailInfo.registerDate?.substring(0,10) }}</span>
|
<span>{{ detailInfo.registerDate?.substring(0,10) }}</span>
|
||||||
<span>注册日期</span>
|
<span>注册日期</span>
|
||||||
@ -193,7 +203,9 @@ export default {
|
|||||||
confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
|
confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
|
||||||
showCancelButton:true,
|
showCancelButton:true,
|
||||||
}).then(async() => {
|
}).then(async() => {
|
||||||
|
if(!this.isWebFunc()){
|
||||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||||
|
}
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
// on cancel
|
// on cancel
|
||||||
});
|
});
|
||||||
@ -320,6 +332,7 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: 23%;
|
width: 23%;
|
||||||
|
flex: 1;
|
||||||
span:first-child{
|
span:first-child{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
@ -339,6 +352,7 @@ export default {
|
|||||||
height: 8px;
|
height: 8px;
|
||||||
border-right: 1px solid #999999;
|
border-right: 1px solid #999999;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
margin-right: 30px;
|
||||||
}
|
}
|
||||||
.desc{
|
.desc{
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
|
|||||||
@ -110,7 +110,9 @@ export default {
|
|||||||
confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
|
confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
|
||||||
showCancelButton:true,
|
showCancelButton:true,
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
|
if(!this.isWebFunc()){
|
||||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||||
|
}
|
||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
// on cancel
|
// on cancel
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user