微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.9 KiB

  1. <!--pages/contract/add/add.wxml-->
  2. <view class="ns" style="height:{{isIPX?'88px':'64px'}};">
  3. <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>
  4. <text style="top:{{isIPX?'54px':'30px'}};">四议表决</text>
  5. </view>
  6. <view class="main-box table-box" style="margin-top:{{isIPX?'100px':'75px'}};">
  7. <view class="table-boxs">
  8. <van-field label="意见" readonly required label-width="auto" border="{{false}}"></van-field>
  9. <van-field label-width="auto">
  10. <van-radio-group value="{{ form.voteResult }}" data-value="form.voteResult" bind:change="onChange" slot="input" direction="horizontal">
  11. <van-radio name="1">同意</van-radio>
  12. <van-radio name="2">不同意</van-radio>
  13. <van-radio name="3">弃权</van-radio>
  14. </van-radio-group>
  15. </van-field>
  16. <van-field label="备注" readonly label-width="auto" border="{{false}}"></van-field>
  17. <van-field value="{{ form.remark }}" maxlength="150" show-word-limit type="textarea" autosize="{{autosize}}" bind:change="onChange" placeholder="请输入备注" data-value="form.remark"></van-field>
  18. <van-cell title="签字" required>
  19. <view style="color: rgb(112, 205, 248);" bind:tap="retDraw">
  20. <van-icon name="edit" />重签
  21. </view>
  22. </van-cell>
  23. <view class="wrapper">
  24. <view class="hand-center">
  25. <canvas class="hand-writing" disable-scroll="true" bindtouchstart="uploadScaleStart" bindtouchmove="uploadScaleMove" bindtouchend="uploadScaleEnd" canvas-id="handWriting">
  26. </canvas>
  27. <!-- <image mode="scaleToFill" class="hand-writing" wx:if="{{isShow}}" src="{{url}}"></image> -->
  28. </view>
  29. </view>
  30. <view class="btn2" bind:tap="subCanvas">
  31. 保存
  32. </view>
  33. </view>
  34. </view>
  35. <view class="ipXbtn"></view>