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.
18 lines
692 B
18 lines
692 B
4 months ago
|
<view class="container">
|
||
|
<button class="data-button" bindtap="showData">
|
||
|
<view>名称:{{randomRecord.name}}</view>
|
||
|
<view>学号:{{randomRecord.num}}</view>
|
||
|
<view>分数:{{randomRecord.score}}</view>
|
||
|
</button>
|
||
|
<view class="t-login">
|
||
|
<form class="cl">
|
||
|
<view class="t-a">
|
||
|
<input type="number"placeholder="请输入分数" maxlength="11" bindinput="inputChange" />
|
||
|
</view>
|
||
|
<button bindtap="queryUser">打 分</button>
|
||
|
<button bindtap="decreaseScore">不能复述</button>
|
||
|
<button bindtap="addScore">可以复述</button>
|
||
|
</form>
|
||
|
</view>
|
||
|
</view>
|