1
0
mirror of https://shylinux.com/x/ContextOS synced 2025-04-27 01:28:28 +08:00
2019-03-03 09:48:21 +08:00

11 lines
478 B
Plaintext

<view class="container">
<view class="input">
<input class="command" type="text" value="{{cmd}}" bindconfirm="onCommand" confirm-hold="true" focus="{{focus}}"/>
</view>
<scroll-view scroll-y class="table">
<view class="table-th" wx:for="{{append}}">{{item}}</view>
<view class="table-row" wx:for="{{table}}"><view class="table-td" wx:for="{{item}}">{{item}}</view></view>
</scroll-view>
<view class="result">{{result}}</view>
</view>