You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
2.8 KiB
62 lines
2.8 KiB
<view class="line"></view>
|
|
<view class="card" bindtap="go_detail">
|
|
<view class="body">
|
|
<view class="body_1">
|
|
<view class="body_title">{{buycar_card_data.title}}</view>
|
|
<view class="body_price">{{buycar_card_data.sellingPrice}} 万</view>
|
|
</view>
|
|
<view class="body_desc">{{buycar_card_data.introduction}}</view>
|
|
<view class="body_imgs">
|
|
<image wx:for="{{buycar_card_data.equipmentPictures}}" src="{{item.pictureLink}}" wx:key="equipmentId" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="body_2" wx:if='{{ buycar_card_data.state != 0&&buycar_card_data.state != 10 }}'>
|
|
<view class="body_address" >
|
|
<image src="/images/index/dw.png"></image>
|
|
{{buycar_card_data.automobileLocation}}
|
|
</view>
|
|
<view class="body_time">{{buycar_card_data.refreshDate}}</view>
|
|
</view>
|
|
<!-- 正在出售中 -->
|
|
<view class="footer" wx:if='{{ buycar_card_data.state == 20 }}'>
|
|
<view class="public" catchtap="prevent">
|
|
<text wx:if="{{buycar_card_data.state==20}}">出售中</text>
|
|
<switch color="#3878F9" checked="{{buycar_card_data.state==20}}" bindchange="change_status"></switch>
|
|
</view>
|
|
<view>
|
|
<text class="top" catchtap="refresh">一键刷新</text>
|
|
<text class="top" wx:if="{{ !detail.isTop }}" catchtap="totop">我要置顶</text>
|
|
<text class="top" wx:if="{{ detail.isTop }}">已置顶</text>
|
|
<text class="share" catchtap="go_edit">修改信息</text>
|
|
</view>
|
|
</view>
|
|
<!-- 已成交 -->
|
|
<view class="footer" wx:if='{{ buycar_card_data.state == 30 }}'>
|
|
<view class="public" catchtap="prevent">
|
|
<text>已成交</text>
|
|
<switch color="#3878F9" checked="{{buycar_card_data.state==20}}" bindchange="change_status"></switch>
|
|
</view>
|
|
<text class="change_status" catchtap="go_edit">修改信息</text>
|
|
<!-- <view catchtap="change_status" data-status="1" class="change_status">热招中</view> -->
|
|
</view>
|
|
<!-- 审核中 -->
|
|
<view class="footer" wx:if='{{ buycar_card_data.state == 10 }}'>
|
|
<view >
|
|
<text class="audit">{{buycar_card_data.refreshDate}}</text>
|
|
<view style="margin-left: 70rpx;">审核中</view>
|
|
</view>
|
|
<view>
|
|
<text class="share" catchtap="go_edit">修改信息</text>
|
|
</view>
|
|
</view>
|
|
<!-- 审核失败 -->
|
|
<view class="footer_sb" wx:if='{{ buycar_card_data.state == 0 }}'>失败原因 :<text style="color:red;">{{buycar_card_data.note}}</text></view>
|
|
<view class="footer" wx:if='{{ buycar_card_data.state == 0 }}'>
|
|
<view>
|
|
<text class="audit">{{ buycar_card_data.auditTime }}</text>
|
|
</view>
|
|
<view>
|
|
<text class="share" catchtap="go_edit">修改信息</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|