1
0
forked from x/ContextOS
2019-01-29 08:41:40 +08:00

11 lines
507 B
Plaintext

<view class="container">
<view class="input">
<input class="command" type="text" bindconfirm="onCommand" confirm-hold="true" focus="true"/>
</view>
<scroll-view scroll-y class="table">
<view class="table-row" wx:if="{{append}}"><view class="table-th" wx:for="{{append}}">{{item}}</view></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>