|
@@ -15,9 +15,14 @@
|
|
|
</view>
|
|
|
<block v-else>
|
|
|
<view class="time">{{ item.changedate }}</view>
|
|
|
- <view class="done tag" v-if="item.status == 1">
|
|
|
- 完成
|
|
|
- </view>
|
|
|
+ <block v-if="item.status == 1">
|
|
|
+ <view class="done tag">
|
|
|
+ 完成
|
|
|
+ </view>
|
|
|
+ <view class="underway tag">
|
|
|
+ {{ item.finishby }}
|
|
|
+ </view>
|
|
|
+ </block>
|
|
|
<view class="underway tag" v-else>
|
|
|
进行中
|
|
|
</view>
|
|
@@ -35,9 +40,15 @@
|
|
|
</view>
|
|
|
<block v-else>
|
|
|
<view class="time">{{ child.changedate }}</view>
|
|
|
- <view class="done tag" v-if="child.status == 1">
|
|
|
- 完成
|
|
|
- </view>
|
|
|
+ <block v-if="child.status == 1">
|
|
|
+ <view class="done tag">
|
|
|
+ 完成
|
|
|
+ </view>
|
|
|
+ <view class="underway tag">
|
|
|
+ {{ child.finishby }}
|
|
|
+ </view>
|
|
|
+ </block>
|
|
|
+
|
|
|
<view class="underway tag" v-else>
|
|
|
进行中
|
|
|
</view>
|