prevention/pages/task/task.wxml

29 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-10-31 15:25:19 +08:00
<!--pages/task/task.wxml-->
<view class="task_container">
<!-- 上传 -->
<view class="upload_box">
<view class="company_message">
2022-11-01 14:06:06 +08:00
<text>{{userInfo.name}}</text>
2022-10-31 15:25:19 +08:00
</view>
<view class="to_upload" bindtap="goUpload">
<image style="width: 80rpx;height: 60rpx;margin-right: 20rpx;" src="../../assets/img/photo.png"></image>
<text>拍照上传车辆信息</text>
</view>
</view>
<!-- 记录 -->
<view class="task_box" wx:if="{{dataList}}">
<view class="all_task">
<text style="font-weight: bold; font-size: 34rpx;">近期上报</text>
<text style="font-size: 26rpx; color: rgba(42, 130, 228, 1);" data-status="all" bindtap="goTaskPage">查看更多</text>
</view>
<view class="task_item" wx:for="{{dataList}}" wx:key="index" bindtap="goTaskDetail" data-detail="{{item}}">
<text style="font-size: 30rpx;color: rgba(0, 0, 0, 0.84);margin-bottom: 15rpx;">登记时间:{{item.createTime || ''}}</text>
<image-info data="{{item}}"></image-info>
</view>
</view>
<!-- <view wx:else class="empty_page">
<image style="width: 150rpx; height: 150rpx;" src="../../assets/img/empty.png"></image>
<text style="font-size: 30rpx; color: #999999;">暂无数据</text>
</view> -->
</view>