32 lines
1.6 KiB
Plaintext
32 lines
1.6 KiB
Plaintext
<van-dialog use-slot show="{{ show }}" show-confirm-button="{{false}}" custom-style="top:50% !important;" custom-class="sign_dialog">
|
|
<view class="content">
|
|
<view class="footer">
|
|
<view style="flex: 1;display: flex;">
|
|
<van-button custom-style="border: 0;border-radius: 0;border-top: 1px solid #ccc;height:100%;" bind:click="retDraw">
|
|
<view wx:for="{{'关闭/重签'}}" wx:key="index" class="title">{{item}}</view>
|
|
</van-button>
|
|
</view>
|
|
<view style="flex: 1;display: flex;">
|
|
<van-button type="info" custom-style="border: 0;border-radius: 0;flex: 1;border-top: 1px solid #ccc;height:100%;" bind:click="subCanvas">
|
|
<view wx:for="{{'完成'}}" wx:key="index" class="title">{{item}}</view>
|
|
</van-button>
|
|
</view>
|
|
</view>
|
|
<view class="container">
|
|
<canvas class="handWriting" disable-scroll="true" bindtouchstart="uploadScaleStart" bindtouchmove="uploadScaleMove" bindtouchend="uploadScaleEnd" canvas-id="handWriting">
|
|
</canvas>
|
|
<!-- 旋转图片canvas -->
|
|
<canvas canvas-id="handWriting1" style="width:2200rpx;height:870rpx;position:absolute;top:-2000%;"></canvas>
|
|
</view>
|
|
<view class="header">
|
|
<view></view>
|
|
<view>
|
|
<view wx:for="{{'签字'}}" wx:key="index" class="title">{{item}}</view>
|
|
</view>
|
|
<view>
|
|
<van-icon name="cross" bind:click="retDraw" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</van-dialog>
|