1
0
mirror of https://shylinux.com/x/volcanos synced 2025-04-25 16:58:06 +08:00
2020-07-25 16:21:32 +08:00

9 lines
492 B
Plaintext

<view class="display">
<input class="detail" type="text" value="{{cmd}}" focus bindfocus="onFocus" bindinput="onInput" bindconfirm="onEnter" confirm-hold/>
<table wx:if="{{msg.append && msg.append[0]}}">
<tr><th wx:for="{{msg.append}}">{{item}}</th></tr>
<tr wx:for="{{msg[msg.append[0]]}}" wx:for-index="line"><td wx:for="{{msg.append}}">{{msg[item][line]}}</td></tr>
</table>
<view class="output"><text wx:for="{{msg.result}}">{{item}}</text></view>
</view>