Compare commits
9 Commits
prod-25-04
...
prod-25-04
Author | SHA1 | Date | |
---|---|---|---|
c0ac29efe2 | |||
e04743e871 | |||
95c8095518 | |||
0aa3630adb | |||
75eba22e9e | |||
a162c3fdcc | |||
33f4857427 | |||
432f35a403 | |||
ae0bd3b169 |
@ -44,10 +44,10 @@
|
||||
<body>
|
||||
<div class="container">
|
||||
<h3>声明</h3>
|
||||
<p>本平台为二手车买卖双方提供免费信息发布服务。在您使用本平台之前,请仔细阅读并理解本免责声明。一旦使用本平台,即视为您已阅读、理解并同意接受本免责声明的所有条款。</p>
|
||||
<p>本平台为二手拖车买卖双方提供免费信息发布服务。在您使用本平台之前,请仔细阅读并理解本免责声明。一旦使用本平台,即视为您已阅读、理解并同意接受本免责声明的所有条款。</p>
|
||||
|
||||
<h4>一、平台性质</h4>
|
||||
<p>1. 本平台仅为信息发布平台,不参与任何二手车交易环节,包括但不限于交易洽谈、合同签订、款项支付、车辆交付等,实际交易价格由买卖双方自行协商确定。</p>
|
||||
<p>1. 本平台仅为信息发布平台,不参与任何二手拖车交易环节,包括但不限于交易洽谈、合同签订、款项支付、车辆交付等,实际交易价格由买卖双方自行协商确定。</p>
|
||||
<p>2. 本平台不对发布信息的真实性、准确性、完整性、合法性进行任何形式的担保或保证,用户应自行判断信息的真实性并承担由此产生的风险。</p>
|
||||
|
||||
<h4>二、用户责任</h4>
|
||||
|
@ -54,14 +54,14 @@ export function userFeedback(data){
|
||||
data
|
||||
})
|
||||
}
|
||||
//二手车信息擦亮
|
||||
//二手拖车信息擦亮
|
||||
export function usedCarPolish(data){
|
||||
return request({
|
||||
url: `/toc-user/car-app/usedCarPolish/${data}`,
|
||||
method:'POST',
|
||||
})
|
||||
}
|
||||
//二手车信息下架
|
||||
//二手拖车信息下架
|
||||
export function usedCarRemove(data){
|
||||
return request({
|
||||
url: '/toc-user/car-app/usedCarRemove',
|
||||
@ -70,7 +70,7 @@ export function usedCarRemove(data){
|
||||
data
|
||||
})
|
||||
}
|
||||
//二手车信息重新上架
|
||||
//二手拖车信息重新上架
|
||||
export function usedCarReShelf(data){
|
||||
return request({
|
||||
url: `/toc-user/car-app/usedCarReShelf/${data}`,
|
||||
|
@ -143,7 +143,7 @@
|
||||
<img v-show="radio==1" @click="radio=0" class="radioIcon" src="@/assets/secondHandCar/checked.png" />
|
||||
<img v-show="radio==0" @click="radio=1" class="radioIcon" src="@/assets/secondHandCar/uncheck.png" />
|
||||
<span>我已阅读并同意</span>
|
||||
<span @click="viewPrivacy">《二手车交易条款》</span>
|
||||
<span @click="viewPrivacy">《二手拖车交易条款》</span>
|
||||
</div>
|
||||
<div class="btnWrap" >
|
||||
<div v-if="type==1" class="btn commonBtn" @click="noMultipleClicks(submitHandle)">发布</div>
|
||||
|
@ -77,6 +77,16 @@
|
||||
<span>排放标准</span>
|
||||
</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">
|
||||
<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>
|
||||
@ -190,10 +200,12 @@ export default {
|
||||
this.getDuration(2)
|
||||
Dialog.alert({
|
||||
message:this.detailInfo.contactNumber ,
|
||||
confirmButtonText:'拨打电话',
|
||||
confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
|
||||
showCancelButton:true,
|
||||
}).then(async() => {
|
||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||
if(!this.isWebFunc()){
|
||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||
}
|
||||
}).catch(() => {
|
||||
// on cancel
|
||||
});
|
||||
@ -399,4 +411,8 @@ export default {
|
||||
::v-deep .el-carousel__indicators--horizontal {
|
||||
bottom: 10px;
|
||||
}
|
||||
::v-deep .el-image__inner {
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
}
|
||||
</style>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<div class="wrap">
|
||||
<div class="navBar">
|
||||
<van-nav-bar
|
||||
title="二手车信息"
|
||||
title="二手拖车信息"
|
||||
left-arrow
|
||||
left-arrow-color="#FFFFFF"
|
||||
:border="false"
|
||||
|
@ -329,6 +329,8 @@ export default {
|
||||
height: 77px;
|
||||
border-radius: 7px;
|
||||
margin-right: 10px;
|
||||
object-fit: cover;
|
||||
object-position: center;
|
||||
}
|
||||
.smallImg{
|
||||
position: absolute;
|
||||
|
@ -93,7 +93,7 @@
|
||||
<img v-show="radio==1" @click="radio=0" class="radioIcon" src="@/assets/secondHandCar/checked.png" />
|
||||
<img v-show="radio==0" @click="radio=1" class="radioIcon" src="@/assets/secondHandCar/uncheck.png" />
|
||||
<span>我已阅读并同意</span>
|
||||
<span @click="viewPrivacy">《二手车交易条款》</span>
|
||||
<span @click="viewPrivacy">《二手拖车交易条款》</span>
|
||||
</div>
|
||||
<div class="btnWrap" >
|
||||
<div v-if="type==1" class="btn commonBtn" @click="noMultipleClicks(submitHandle)">发布</div>
|
||||
|
@ -107,10 +107,12 @@ export default {
|
||||
this.getDuration(2)
|
||||
Dialog.alert({
|
||||
message:this.detailInfo.contactNumber ,
|
||||
confirmButtonText:'拨打电话',
|
||||
confirmButtonText:this.isWebFunc() ? '确定' : '拨打电话',
|
||||
showCancelButton:true,
|
||||
}).then(() => {
|
||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||
if(!this.isWebFunc()){
|
||||
window.location.href = `tel:${this.detailInfo.contactNumber}`;
|
||||
}
|
||||
}).catch(() => {
|
||||
// on cancel
|
||||
});
|
||||
|
Reference in New Issue
Block a user