chache/packageA/pages/wannen/carcxjl.wxml
2024-01-22 18:48:00 +08:00

54 lines
2.8 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<view class="page-view" wx:if="{{cardata.url}}">
<web-view src="{{cardata.url}}"></web-view>
</view>
<view class="page-view" wx:if="{{!cardata.url}}">
<view class="top-title">
<text class="top-title-b">{{cardata.cxtitle}}</text>
<text class="top-title-l">查询时间:{{cardata.time}}</text>
</view>
<view class="top-box">
<view class="box-text">
<text class="order-text" wx:if="{{cardata.vin}}">VIN{{cardata.vin}}</text>
<text class="order-text" wx:if="{{cardata.ipdz}}">IP{{cardata.ipdz}}</text>
<text class="order-text" wx:if="{{cardata.name}}">名字:{{cardata.name}}</text>
<text class="order-text" wx:if="{{cardata.chepai}}">车牌:{{cardata.chepai}}</text>
<text class="order-text" wx:if="{{cardata.car}}">车辆:{{cardata.car}}</text>
<text class="order-text" wx:if="{{cardata.phone}}">手机:{{cardata.phone}}</text>
<text class="order-text" wx:if="{{cardata.engine}}">发动机:{{cardata.engine}}</text>
</view>
<view class="box-img">
<image class="logo-img" mode="widthFix" src="{{cardata.logo?cardata.logo:'/assets/images/ban-list-sel@2.png'}}"></image>
</view>
</view>
<view class="content-view">
<view class="content-desc">
<text class="content-title">{{cardata.cxtitle}}</text>
<text class="content-shuo">* 数据来自第三方,仅作参考</text>
</view>
<view class="list" wx:if="{{cardata.record.length>0}}">
<view class="list" wx:for="{{cardata.record}}" wx:key="index">
<view class="item">
<view class="label">{{item.title}}</view>
<text class="content-shuo">{{item.text}}</text>
</view>
</view>
</view>
<view data-index="{{index}}" wx:if="{{cardata.recordimgs.length>0}}">
<view class="content-detail-single">
<view class="content-right">
<view class="veibao-title">
<text class="{{index==0?'yuandian first-dian':'yuandian no-dian'}}"></text>
</view>
<view class="veibao-text">
<view class="tui-upload-box" wx:if="{{cardata.recordimgs.length>0}}">
<view class="tui-upload-item" wx:for="{{cardata.recordimgs}}" wx:key="{{index}}">
<image bindtap="imgPreview" class="grace-time-line-image grace-border-radius-small" data-src="{{item}}" mode="aspectFit" src="{{item}}" style="width: 100%;"></image>
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>