daofu-applet/pages/task/check/index/index.wxml
2024-01-29 17:42:38 +08:00

56 lines
1.9 KiB
Plaintext

<!--pages/task/check/index/index.wxml-->
<title-bar title="专项检查"></title-bar>
<scroll-view scroll-y style="height: calc(100vh - {{topBarH}}px);">
<!-- 基本信息 -->
<view class="item-bg">
<view class="item">
<view class="h-div v-center content">
<text class="single"></text>
<text class="lab">任务基本信息</text>
</view>
<view class="h-div content">
<text class="lab">任务周期:</text>
<text class="val">2022-09-15至2022-09-20</text>
</view>
<view class="h-div content">
<text class="lab">发布时间:</text>
<text class="val">2022-09-15</text>
</view>
<view class="h-div content">
<text class="lab">发布人:</text>
<text class="val">某某人</text>
</view>
<view class="h-div" style="margin-top: 15rpx;">
<text class="lab">任务内容:</text>
<text class="val flex">关于某某某某某某某某某某某项工作的任务要求,关于某某某某某某某某工作的任务要求。</text>
</view>
</view>
</view>
<!-- 统计 -->
<view class="item-bg">
<view class="item v-div">
<view class="h-div v-center">
<text class="single"></text>
<text class="lab">任务进度</text>
</view>
<view class="h-div h-center">
<ec-canvas id="d-chart" canvas-id="d-chart" ec="{{ ec }}" class="charts flex"></ec-canvas>
</view>
</view>
</view>
<!-- 参与人员 -->
<view class="item-bg">
<view class="item">
<view class="h-div content">
<text class="lab">参与人员:</text>
</view>
<view class="h-div v-center" style="flex-wrap: wrap;">
<view wx:for="{{50}}" class="v-div v-center people">
<image class="avatar" src="/images/task/icon-cloud.png" />
<text class="name">某某人</text>
</view>
</view>
</view>
</view>
<view class="space"></view>
</scroll-view>