BluetoothDemo/pages/index/index.wxml

28 lines
1.1 KiB
Plaintext

<wxs module="utils">
module.exports.max = function(n1, n2) {
return Math.max(n1, n2)
}
module.exports.len = function(arr) {
arr = arr || []
return arr.length
}
</wxs>
<view class="container">
<view class="list">
<view class="item" bindtap="editclick" data-name="PCD01PRO">PCD01PRO</view>
<view class="item" bindtap="editclick" data-name="H01PRO">H01PRO</view>
<view class="item" bindtap="editclick" data-name="PCH0809">PCH08/09</view>
<view class="item" bindtap="editclick" data-name="PCF01B">PCF01B</view>
<view class="item" bindtap="editclick" data-name="PCF01proFRK">PCF01pro(旧)</view>
<view class="item" bindtap="editclick" data-name="PCF01B">PCF01pro(新)</view>
<view class="item" bindtap="editclick" data-name="PCF08">PCF08</view>
<view class="item" bindtap="editclick" data-name="L08">L08</view>
<view class="item" bindtap="editclick" data-name="FB03">B03</view>
<view class="item" bindtap="editclick" data-name="PCJ02">PCJ02</view>
<view class="item" bindtap="editclick" data-name="G01">G01</view>
<!-- <view class="item" bindtap="editclick" data-name="h018">h018</view> -->
</view>
</view>