Newer
Older
smart_construction / miniprogram / pages / safeBook / safeBook.wxml
dutingting on 6 Jun 2023 1 KB 新增需求完成
<!--pages/safeBook/safeBook.wxml-->
<view class="main" bindtap="clickImage">
    <view class="title">{{safeBookData.title}}</view>
    <view class="introduction">
        {{safeBookData.introduction}}
    </view>
    <view class="list" wx:for="{{safeBookData.list}}" wx:key="index">
        <view class="list-item">
            {{item}}
        </view>
    </view>
</view>
<van-popup
    show="{{ popupShow }}"
    round
    position="bottom"
    custom-style="height: 660rpx"
    :close-on-click-overlay="true"
    bind:click-overlay="closePopup"
    bind:close="onClose">
    <view class="popup-title">
        请阅读并同意<text class="popup-blue">《安全生产责任书》</text>协议,并签署真实姓名。
    </view>
    <view class="area">
        <view class="name-area">
        <view class="img-area" wx:for="{{imageList}}" wx:key="index">
            <image class="area-login_image"  src="{{item}}" data-index="{{index}}" bindtap="previewBigImage"></image>
        </view>
        <view style="position: absolute;left: 30rpx; bottom: 10rpx;">
            <van-button plain type="info" size="small" round bindtap="startSign">{{buttonName}}</van-button>
        </view>
    </view>
    <van-button  style="margin-left:50rpx;;" size="large" round type="primary"  color="#FFDB2D"   bind:tap="confirm">确认</van-button>
    </view>
  </van-popup>