Compare commits
2 Commits
prod-25-07
...
prod-25-04
Author | SHA1 | Date | |
---|---|---|---|
c0ac29efe2 | |||
e04743e871 |
@ -77,6 +77,16 @@
|
|||||||
<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 class="suGang"></div>
|
||||||
|
<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>
|
||||||
@ -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
|
||||||
});
|
});
|
||||||
|
@ -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