1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <view class='page' ref='saveChildRef0'>
- <view class='search'>
- <custom-input
- class='search_input'
- placeholder='请输入区域名称'
- placeholder-class='input-placeholder'
- onInput='getVaule'
- >
- </custom-input>
- <btn class='query' onTap='antmoveAction' data-antmove-tap='getList'>
- <image class='query_img' src='../../../static/function-bar/Vector.png'>
- </image>
- 查询
- </btn>
- </view>
- <view
- a:for='{{list}}'
- class='content'
- a:key='{{index}}'
- data-item='{{item}}'
- data-type='details'
- ref-numbers='{{list}}'
- onTap='antmoveAction'
- data-antmove-tap='gotoFun'
- >
- <view class='tit'>
- {{item.disinfectAreaName}}
- <text>
- {{item.todayDisinfectNum}}/{{item.todayTotalDisinfectNum}}
- </text>
- </view>
- <view class='today'>
- 今日消杀次数:
- <text
- a:for='{{item.disinfectAreaTimeVOList}}'
- a:for-item='num'
- a:key='{{disinfectAreaTimeId}}'
- class="{{num.disinfectAreaTimeType===1?'blue':num.disinfectAreaTimeType===2?'red':''}}"
- ref-numbers='{{item.disinfectAreaTimeVOList}}'
- >
- </text>
- </view>
- <view class='time'>
- {{item.waitDisinfect}}
- </view>
- <view class='place'>
- 具体消杀地点:{{item.disinfectAreaAddress}}
- </view>
- <view a:if='{{checkAuth}}' class='button'>
- <view
- class='remind'
- data-index='{{index}}'
- catchTap='antmoveAction'
- data-antmove-tap='remindFun'
- >
- 提醒消杀
- </view>
- <view
- class='update'
- data-item='{{item}}'
- data-type='edit'
- onTap='antmoveAction'
- data-antmove-tap='gotoFun'
- >
- 编辑
- </view>
- </view>
- </view>
- <view a:if='{{list.length<=0}}' class='tip-area'>
- <text>
- ~暂无更多~
- </text>
- </view>
- </view>
|