forked from nsjcy/frontEnd/nsjcy

liuwh
2020-03-10 800ffe29f328c84d4de46e8867ad3ca5cbae0d4f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!--pages/wdjb/wdjb.wxml-->
 
<!--导航条-->
<view class="navbar">
  <text wx:for="{{navbar}}" data-idx="{{index}}" class="item {{currentTab==index ? 'active' : ''}}" wx:key="unique" bindtap="navbarTap">{{item}}</text>
</view>
 
<!--列表数据-->
<view style='flex-direction:column;height:94vh;background-color:rgba(80, 119, 170, 0.06)'>
    <div class="businessSchedule" bindtap='businessSchedule' data-id="{{item.id}}" id="{{key}}" wx:for="{{dataSet}}" wx:for-index='key' wx:key="*this">
        <div class="businessSchedule-top">
            <div class="businessSchedule-top-img">
                <div class="businessSchedule-center">{{item.tipoffObject}}</div>
            </div>
            <div class="businessSchedule-top-status backgroundorange-title" wx:if="{{item.status==1}}">未回复</div>
      <div class="businessSchedule-top-status backgroundgreen-title" wx:elif="{{item.status==2}}">已回复</div>
      <div class="businessSchedule-top-status backgroundgray-title" wx:else>未知文件</div>
        </div>
        <div class="businessSchedule-center">{{item.tipoffContent}}</div>
        <div class="businessSchedule-bottom">于 {{item.createTime}} 提交申请</div>
    </div>
    <div class="businessSchedule-load">------{{content}}------</div>
</view>