65 lines
2.5 KiB
Plaintext
65 lines
2.5 KiB
Plaintext
<!--pages/backlog/violation/violation.wxml-->
|
|
<view class="container">
|
|
<view class="bg">
|
|
<image src="../../../images/bg_page_blue.png" mode=""/>
|
|
</view>
|
|
<view class="top">
|
|
<view class="row">
|
|
<view class="number-plate">
|
|
<view class="val">{{item.plateNumber}}</view>
|
|
</view>
|
|
<view class="project-name">{{item.projectId_dictText}}</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="time">违章时间: {{item.violationTime}}</view>
|
|
<view class="time" wx:if="{{!item.status}}">{{item.time}}</view>
|
|
<view class="type-list">
|
|
<view class="type">{{item.violationAct_dictText}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="detail-container">
|
|
<view class="tabs">
|
|
<view class="tab {{tabActive == 0 ? 'active' : ''}}" data-tab="0" catch:tap="changeTab">
|
|
<view class="bg"><image src="../../../images/btn_l.png" mode=""/></view>
|
|
<view class="value">违章信息</view>
|
|
</view>
|
|
<!-- <view class="tab {{tabActive == 1 ? 'active' : ''}}" data-tab="1" catch:tap="changeTab">报价信息</view> -->
|
|
</view>
|
|
<view class="content">
|
|
<view class="row">
|
|
<view class="label">负责人</view>
|
|
<view class="val">{{ item.director ? item.director : '/'}}</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="label">违章地点</view>
|
|
<view class="val">{{ item.violationAddress ? item.violationAddress : '/'}}</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="label">违章司机</view>
|
|
<view class="val">{{ item.violationDriver ? item.violationDriver : '/'}}</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="label">违章记分</view>
|
|
<view class="val"> {{ item.violationScore ? item.violationScore : '/'}}</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="label">违章费用</view>
|
|
<view class="val">{{ item.violationCost ? item.violationCost : '0'}}元</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="label">处理限期</view>
|
|
<view class="val">{{ item.violationAct ? item.violationAct : '/'}}天</view>
|
|
</view>
|
|
<view class="row">
|
|
<view class="label">违章行为描述</view>
|
|
<view class="val">{{ item.violationActDes ? item.violationActDes : '/'}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bottom">
|
|
<view class="btn-box">
|
|
<view class="btn" catch:tap="toFeedback">处理反馈</view>
|
|
</view>
|
|
</view>
|
|
</view> |