17 lines
394 B
Plaintext
17 lines
394 B
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="PCH0809">PCH08/09</view>
|
||
|
|
</view>
|
||
|
|
</view>
|