BluetoothDemo/pages/index/index.wxml

30 lines
1.4 KiB
Plaintext
Raw Normal View History

2021-12-08 09:18:31 +08:00
<wxs module="utils">
2022-06-17 17:32:51 +08:00
module.exports.max = function(n1, n2) {
return Math.max(n1, n2)
}
module.exports.len = function(arr) {
arr = arr || []
return arr.length
}
2021-12-08 09:18:31 +08:00
</wxs>
<view class="container">
2022-06-17 17:32:51 +08:00
<view class="list">
2022-10-13 17:15:36 +08:00
<view class="item2" bindtap="editclick" data-name="PCH0809">PCH08/09/H09B/HB02/META10/PCF01B</view>
<view class="item2" bindtap="editclick" data-name="PCJ02">PCJ02/PCJ01/L01/L03/L05/EKS9919</view>
2022-06-17 17:32:51 +08:00
<view class="item" bindtap="editclick" data-name="PCD01PRO">PCD01PRO</view>
<view class="item" bindtap="editclick" data-name="H01PRO">H01PRO</view>
2022-10-13 17:15:36 +08:00
<view class="item" bindtap="editclick" data-name="PCF08">PCF08/PCF08B</view>
<view class="item" bindtap="editclick" data-name="L08">L08/L06</view>
<view class="item" bindtap="editclick" data-name="FB03">B03/B02/B07</view>
<view class="item" bindtap="editclick" data-name="PCL10">PCL10/PCL11</view>
2022-06-17 17:32:51 +08:00
<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="G01">G01</view>
2022-10-13 17:15:36 +08:00
<!-- <view class="item" bindtap="editclick" data-name="PCL11">PCL11</view> -->
2022-06-17 17:32:51 +08:00
<!-- <view class="item" bindtap="editclick" data-name="h018">h018</view> -->
2022-10-13 17:15:36 +08:00
<!-- <view class="item" bindtap="editclick" data-name="PCF01B">PCF01B</view> -->
2022-06-17 17:32:51 +08:00
</view>
2021-12-08 09:18:31 +08:00
</view>