Newer
Older
smart_construction / miniprogram / pages / notice / notice.wxml
dutingting on 29 May 2023 1 KB 实现手写签名
<!--miniprogram/pages/notice.wxml-->

<view>
    <image class="login_image"  src="../../images/notice.jpg" bindtap="clickImage"></image>
  	<!-- <view  hidden="{{showTime}}" class="cover"> <van-count-down time="{{ time }}"  format=" ss 秒"  bind:finish="finished"/>		</view> -->
   <!-- <view style="position:fixed;bottom:100rpx; " hidden="{{!showTime}}"> 
    <van-button  round  type="primary" style="margin-left:200rpx;" open-type="getUserInfo" color="#ffcf00"   bindgetuserinfo="loginValidate">授权登录</van-button>
  </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>
</view>