碧云体育休闲社区AR党建小程序
fuchengshen
2021-11-30 c1034159f2d7ae8218d470061daef8853b30b14f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!-- 相机组件,放在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}}">
    <button bindtap="goThreeD">点击我去3D页面</button>
    <view id="distinguish"  bindtap="scan">
        <text
       
         class="iconfont icon-yanzhengmashibie" id="icon"></text>
        <text id="scan" class="primary-button">点击识别</text>
    </view>
</view>
<text 
bindtap="back"
 class="iconfont icon-guanbi" wx:if="{{showLoading}}"></text>
<view id="loading" wx:if="{{showLoading}}">
 
    <loading text="{{showLoadingText}}"></loading>
</view>