碧桂园
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

35 行
1.5 KiB

  1. <!-- 相机组件,放在UI最底层显示相机内容 -->
  2. <camera frame-size="medium"
  3. bindinitdone="onCameraInit"
  4. mode="normal"
  5. device-position="back"
  6. resolution="high"
  7. flash="off"/>
  8. <!-- canvas组件,用于进行图片压缩,位置在屏幕外,不可见 -->
  9. <canvas type="2d"
  10. id="capture"
  11. style="width:1px; height: 1px;"/>
  12. <view id="overlay" wx:if="{{showOverlay}}">
  13. <view id="overlay-bottom">
  14. <image id="scan" class="primary-button" src="https://static.quhouse.com/6f94c30051fb46cd9f03c886e63a34fc.png" bind:tap="scan"></image>
  15. </view>
  16. </view>
  17. <view id="loading" wx:if="{{showLoading}}">
  18. <loading text="{{showLoadingText}}"></loading>
  19. </view>
  20. <!-- <view id="content" wx:if="{{showContent}}">
  21. <view wx:if="{{SELECT_TYPE.IMAGE === selectType}}">
  22. <image src="/images/namecard.jpg" style="width: 500rpx; height: 300rpx;"></image>
  23. </view>
  24. <view wx:if="{{SELECT_TYPE.VIDEO === selectType}}">
  25. <video src="https://mp.easyar.cn/video/yuyuan1.mp4" autoplay="{{true}}" controls="{{false}}" loop="{{true}}" style="width: 714rpx; height: 400rpx;"></video>
  26. </view>
  27. </view> -->
  28. <!-- <view id="select" wx:if="{{showContent}}">
  29. <view class="select {{SELECT_TYPE.IMAGE === selectType ? 'selected': ''}}" data-contentType="{{SELECT_TYPE.IMAGE}}" bind:tap="selectContent">图片</view>
  30. <view class="select {{SELECT_TYPE.VIDEO === selectType ? 'selected': ''}}" data-contentType="{{SELECT_TYPE.VIDEO}}" bind:tap="selectContent">视频</view>
  31. </view> -->