mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-26 01:04:06 +08:00
17 lines
667 B
Plaintext
17 lines
667 B
Plaintext
<view class="page">
|
|
<picker
|
|
mode="multiSelector" range="{{nodes}}" value="{{shows}}"
|
|
bindchange="onChange" bindcolumnchange="onChange">
|
|
<view class="input">{{ctx}}</view>
|
|
</picker>
|
|
|
|
<view class="input">
|
|
<input class="command" type="text" value="{{cmd}}" bindconfirm="onCommand" confirm-hold="true" focus="{{focus}}"/>
|
|
</view>
|
|
<scroll-view class="table" scroll-y>
|
|
<view wx:for="{{append}}" class="table-th">{{item}}</view>
|
|
<view wx:for="{{table}}" class="table-row"><view wx:for="{{item}}" class="table-td">{{item}}</view></view>
|
|
</scroll-view>
|
|
<view class="result">{{result}}</view>
|
|
</view>
|