<!--pages/details/details.wxml-->
|
<van-notify id="van-notify" />
|
<view>
|
|
<view class="card1">
|
<view style="margin-top: 5px;display: flex;">
|
|
<van-cell title="{{title}}">
|
<view slot="right-icon" class="modal-btn modal-clear" bindtap="bindViewTap">票证关闭</view>
|
</van-cell>
|
|
<!-- <button style="position: absolute; right: 0;" type="primary" size="mini" bindtap="submitForm" style="background-color: #0294e9;">提交</button> -->
|
</view>
|
<view style="margin-left: 15px;">
|
<view>
|
<div>作业票类型:{{type}}</div>
|
</view>
|
<view>
|
<div>负责人:{{name}}</div>
|
</view>
|
<view>
|
<div>联系方式:{{phone}}</div>
|
</view>
|
<view>
|
<div>作业地点:{{locations}}</div>
|
</view>
|
<view style="margin-bottom: 10px;">
|
<div>作业票:</div>
|
<div style="color: dodgerblue;text-decoration: underline;" bindtap="itemPdfOn" data-num="{{item.number}}" data-type="{{item.type}}" data-handle="{{item.handle}}">查看作业票</div>
|
</view>
|
</view>
|
</view>
|
|
<view class="card2">
|
<view style="margin: 10px;">
|
<van-steps
|
steps="{{ steps }}"
|
active="{{ active }}"
|
direction="vertical"
|
active-color="rgb(95, 190, 0)"
|
/>
|
</view>
|
|
</view>
|
</view>
|