punchDetail.wxml
982 Bytes
<!--pages/index/punchDetail/punchDetail.wxml-->
<view class="punch_detail">
<!-- 顶部统一返回 -->
<view class="navigation_back" bindtap="handleBack">
<van-icon name="arrow-left" />
</view>
<!-- 已打卡 -->
<image class="temporary" wx:if="{{Clocked}}" src="/img/_check_in3.png" mode="widthFix" alt="" />
<!-- 未打卡 -->
<image class="temporary" wx:else src="/img/_check_in1.png" mode="widthFix" alt="" />
<text class="temporary_box" wx:if="{{!Clocked}}" style="width: 308rpx;height: 100rpx;position: absolute;top: 1412rpx;right: 32rpx;" bindtap="handleEdit"></text>
<van-popup show="{{ showEdit }}" position="bottom" custom-style="height: 80%;" bind:close="closeEdit">
<image class="temporary" src="/img/_check_in2.png" mode="widthFix" alt="" />
<text class="temporary_box" style="width: 700rpx;height: 100rpx;position: absolute;top: 1452rpx;right: 32rpx;" bindtap="handleSubmit"></text>
</van-popup>
</view>