jhprjv2/ruoyi-ui-app/miniprogram/pages/winter-training/index.wxml

70 lines
2.4 KiB
Plaintext

<!-- 冬季培训 -->
<view class="learn-binding">
<!-- 顶部栏 -->
<view class="learn-nav">
冬季施工安全专项培训
</view>
<!-- 头部模块 -->
<view class="learn-header">
<image src="https://xiangguan.sxyanzhu.com/statics/static/img/WEB_77C2BB6ECBEA4F39B7E22CF5E96DB652.png" mode=""/>
</view>
<!-- 内容部分 -->
<view class="learn-content">
<view style="display: flex;justify-content: space-between;align-items: center;width: 598rpx;height: 60rpx;">
<view style="color: #848fce;">
姓名:
</view>
<view>
{{userName}}
</view>
</view>
<view style="display: flex;justify-content: space-between;align-items: center;width: 598rpx;height: 60rpx;" >
<view style="color: #848fce;">
归属工种:
</view>
<view>
{{typeWordName}}
</view>
</view>
<view style="display: flex;justify-content: space-between;align-items: center;width: 598rpx;height: 60rpx;">
<view style="color: #848fce;">
归属劳务队:
</view>
<view>
{{companyName}}
</view>
</view>
<view style="display: flex;justify-content: space-between;align-items: center;width: 598rpx;height: 60rpx;">
<view style="color: #848fce;">
我的电子签名:
</view>
<view style="width:150rpx;height:60rpx;">
<image src="{{signUrl}}" bindtap='showImg' mode="" style="width: 100%;height: 100%;filter: invert(100%);"/>
<!-- 展示图片 -->
<page-container wx:if="{{show}}" position="center" bindtap="closeShow">
<view style="width: 100%;height: 100%;background: rgba(255, 255, 255, 0.7);position: absolute;top: 0;left: 0;">
<image src="{{signUrl}}" mode="" style="width: 100%;height: 100%;"/>
</view>
</page-container>
</view>
</view>
</view>
<!-- 底部模块 -->
<view class="learn-footer">
<view wx:if="{{!isShow}}" bindtap="affirmLearn" style="width: 420rpx;height:88rpx;border: 1px solid pink;text-align: center;line-height: 88rpx;font-size: 28rpx;letter-spacing: 4rpx;border-radius: 80rpx;background-color: #523fa8;">
确认学习
</view>
<view wx:if="{{isShow}}" style="width: 420rpx;height:88rpx;text-align: center;line-height: 88rpx;font-size: 28rpx;letter-spacing: 4rpx;border-radius: 80rpx;">
已学习
</view>
<view bindtap="cancelLearn" style="color: #848fce;">
关闭
</view>
</view>
</view>
<van-overlay show="{{loadShow}}">
<view class="gif">
<image src="../../images/loding2.gif"></image>
<view>数据加载中!请稍后...</view>
</view>
</van-overlay>