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