王飞
2025-01-23 99365608dec6eade7d645a91fb0f2205a332d1f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!--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>