12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <view>
- <hh-event
- a:for="{{ ampe_params }}"
- number="{{item.number}}"
- name="{{item.name}}"
- initParams="{{item.initParams}}"
- aromeCode="{{item.aromeCode}}"
- >
- </hh-event>
- <container title="系统信息">
- <view slot="headerRight" onTap="changeMsg">
- {{isKEightDevice?'该设备支持刷脸核身':'该设备不支持刷脸核身'}}
- </view>
- <view class="content">
- <list a:if="{{ isKEightDevice && showSystemInfo }}" radius="">
- <list-item extraBrief="{{systemInfo.arome_hardwareName}}">设备型号</list-item>
- <list-item extraBrief="{{systemInfo.arome_deviceId}}">设备SN</list-item>
- <list-item extraBrief="{{systemInfo.arome_hostAppId}}">小程序APPID</list-item>
- <list-item extraBrief="{{systemInfo.productId}}">设备PRODUCTID</list-item>
- </list>
- </view>
- <view a:if="{{ systemInfoStr && showSystemInfo }}" class="result">
- {{systemInfoStr}}
- </view>
- </container>
- <container title="初始化刷脸服务">
- <view slot="headerRight">
- <icon onTap="close" data-type="init" type="RedoOutline" style="font-size: 25px; margin-right: 15px" />
- <icon onTap="doSetting" data-type="init" type="SetOutline" style="font-size: 25px" />
- </view>
- <view class="content">
- <ant-button type="primary" subText="aromeInitBpaasService" onTap="doInit">
- (1)初始化刷脸服务
- </ant-button>
- <view a:if="{{ initObj }}" class="result">
- 入参:
- {{initObj}}
- </view>
- <view a:if="{{ initResult }}" class="result">
- 结果:
- {{initResult}}
- </view>
- </view>
- </container>
- <container title="调用1:N刷脸服务">
- <view slot="headerRight">
- <icon onTap="close" data-type="oneVN" type="RedoOutline" style="font-size: 25px; margin-right: 15px" />
- <icon onTap="doSetting" data-type="oneVN" type="SetOutline" style="font-size: 25px" />
- </view>
- <view class="content">
- <ant-button type="primary" subText="aromeStartBpaasService" onTap="doOneVN">
- (2)调用1:N刷脸服务
- </ant-button>
- <view a:if="{{ oneVNObj }}" class="result">
- 入参:
- {{oneVNObj}}
- </view>
- <view a:if="{{ oneVNResult }}" class="result">
- 结果:
- {{oneVNResult}}
- </view>
- </view>
- </container>
- <container title="调用订阅授权服务">
- <view slot="headerRight">
- <icon onTap="close" data-type="auth" type="RedoOutline" style="font-size: 25px; margin-right: 15px" />
- <icon onTap="doSetting" data-type="auth" type="SetOutline" style="font-size: 25px" />
- </view>
- <view class="content">
- <ant-button type="primary" subText="aromeBPaasNoFaceAuth" onTap="doAuth">
- (3)调用订阅授权服务
- </ant-button>
- <view a:if="{{ authObj }}" class="result">
- 入参:
- {{authObj}}
- </view>
- <view a:if="{{ authResult }}" class="result">
- 结果:
- {{authResult}}
- </view>
- </view>
- </container>
- </view>
|