1234567891011121314151617181920212223242526272829303132333435 |
- <!-- 导航栏,索尼蓝牙遥控与蓝牙调试器工具 -->
- <view class="rounded-chunk">
- <view class="chunk">
- <!-- change log -->
- <view class="chunk-title rounded-t">蓝牙控制器</view>
- <view class="c-content rounded-b">
- <!-- info -->
- 本工具用于调试蓝牙设备,包括蓝牙设备的搜索、连接、断开、发送数据、接收数据等功能。
- </view>
- </view>
- <view class="chunk mt">
- <!-- change log -->
- <view class="chunk-title rounded-t">索尼遥控</view>
- <view class="c-content">
- <!-- info -->
- 本工具用于控制索尼相机,拍照
- </view>
- <view class="c-content rounded-b">
-
- <view class="line hr-b"
- wx:for="{{sonyItems}}"
- wx:key="fnKey"
- wx:for-index="idx">
- <view class="info align-left">{{item.title}}</view>
- <!-- 判断是否为最后一个元素 -->
- <view class="select {{idx === (sonyItems.length - 1) ? '':'bool-font'}}">
- <fnState state="{{item.state}}"></fnState>
- </view>
-
- </view>
- </view>
- </view>
- </view>
|