|
- <!--pages/contract/add/add.wxml-->
- <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
- <image src="../../../image/apply/back.png" style="top:{{isIPX?'54px':'30px'}};height: 19.0909px;" mode="widthFix" bindtap="back" referrer="no-referrer|origin|unsafe-url"></image>
- <text style="top:{{isIPX?'54px':'30px'}};">四议表决</text>
- </view>
- <view class="main-box table-box" style="margin-top:{{isIPX?'100px':'75px'}};">
- <view class="table-boxs">
- <van-field label="意见" readonly required label-width="auto" border="{{false}}"></van-field>
- <van-field label-width="auto">
- <van-radio-group value="{{ form.voteResult }}" data-value="form.voteResult" bind:change="onChange" slot="input" direction="horizontal">
- <van-radio name="1">同意</van-radio>
- <van-radio name="2">不同意</van-radio>
- <van-radio name="3">弃权</van-radio>
- </van-radio-group>
- </van-field>
- <van-field label="备注" readonly label-width="auto" border="{{false}}"></van-field>
- <van-field value="{{ form.remark }}" maxlength="150" show-word-limit type="textarea" autosize="{{autosize}}" bind:change="onChange" placeholder="请输入备注" data-value="form.remark"></van-field>
-
- <van-cell title="签字" required>
- <view style="color: rgb(112, 205, 248);" bind:tap="retDraw">
- <van-icon name="edit" />重签
- </view>
- </van-cell>
- <view class="wrapper">
- <view class="hand-center">
- <canvas class="hand-writing" disable-scroll="true" bindtouchstart="uploadScaleStart" bindtouchmove="uploadScaleMove" bindtouchend="uploadScaleEnd" canvas-id="handWriting">
- </canvas>
- <!-- <image mode="scaleToFill" class="hand-writing" wx:if="{{isShow}}" src="{{url}}"></image> -->
- </view>
- </view>
- <view class="btn2" bind:tap="subCanvas">
- 保存
- </view>
- </view>
- </view>
- <view class="ipXbtn"></view>
|