31 lines
1.2 KiB
Plaintext
31 lines
1.2 KiB
Plaintext
<!--pages/emergency/suddenly-up/index/index.wxml-->
|
||
<!-- 搜索 -->
|
||
<view class="cu-bar search">
|
||
<view class="search-form round">
|
||
<text class="cuIcon-search"></text>
|
||
<input type="text" placeholder="请输入关键字" confirm-type="search"></input>
|
||
</view>
|
||
</view>
|
||
<scroll-view scroll-y style="height: calc(100% - 100rpx)" refresher-enabled>
|
||
<!-- 列表 -->
|
||
<view class="item-bg" wx:for="{{list}}">
|
||
<view catchtap="toDetail" data-item="{{item}}" class="item">
|
||
<view class="head h-div v-center">
|
||
<view class="single"></view>
|
||
<view class="title ellipsis">文件签批流转任务</view>
|
||
</view>
|
||
<view class="tv">关于某某某某某某某某某某某项工作的任务要求,关于某某某某某某某某工作的任务要求。
|
||
</view>
|
||
<view class="line"></view>
|
||
<view class="h-div bottom">
|
||
<text class="flex">发布人:某某人</text>
|
||
<text>发布时间:2022-09-15</text>
|
||
</view>
|
||
<image class="bottom-img" src="/images/task/icon-bottom-line.png" mode="aspectFill" />
|
||
</view>
|
||
</view>
|
||
<view class="space"></view>
|
||
</scroll-view>
|
||
<view class="option">
|
||
<view catchtap="push" class="btn">上报事件</view>
|
||
</view> |