You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
315 B

<view>
<text>请输入第1个数字</text>
<input type="number" bindinput="num1Input"/>
</view>
<view>
<text>请输入第2个数字</text>
<input type="number" bindinput="num2Input"/>
</view>
<button bindtap="compare">比较</button>
<view>
<text wx:if="{{ result }}"> 比较结果:{{ result }} </text>
</view>