2021-12-08 09:18:31 +08:00
|
|
|
<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="PCH0809">PCH08/09</view>
|
2022-03-24 11:47:20 +08:00
|
|
|
<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="PCJ02">PCJ02</view>
|
|
|
|
|
<view class="item" bindtap="editclick" data-name="G01">G01</view>
|
|
|
|
|
<view class="item" bindtap="editclick" data-name="FB03">B03</view>
|
|
|
|
|
<!-- <view class="item" bindtap="editclick" data-name="h018">h018</view> -->
|
|
|
|
|
<view class="item" bindtap="editclick" data-name="L08">L08</view>
|
2021-12-08 09:18:31 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|