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.

54 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!--pages/teacher/Mode-arrive/Mode-arrive.wxml-->
<view class="container" style="background-image: url('/image/Mode2.png');">
<button class="confirm-button" bindtap="submitScore">确定</button>
</view>
<image class="back-image" bindtap="goBack" src="/image/back.png" mode="widthFix"></image>
<view class="circle"></view>
<image class="rank-image" bindtap="goTorank" src="/image/rank.png" mode="widthFix"></image>
<image class="nobody-image" src="/image/nobody.png" mode="widthFix"></image>
<view class="rectangle1"></view>
<view class="rectangle2"></view>
<text class="text1">重复问题</text>
<text class="text2">回答质量</text>
<view class="circle1">
<text class="grade1">+0.5</text>
</view>
<view class="circle2">
<text class="grade2">0.5~3</text></view>
<view class="circle3">
<text class="grade3">-1</text>
</view>
<view class="rectangle3">
<input
placeholder="请输入该同学回答问题总积分"
type="text"
bindinput="handleInputScore"
/>
</view>
<!-- 典当信息弹窗仅在showModal为true时显示 -->
<view wx:if="{{showModal}}">
<modal show="{{showModal}}" bindconfirm="closeModal"title="该学生典当信息">
<view>
<text>当前积分: {{currentScore}}
典当积分: {{pledgeScore}}</text>
</view>
</modal>
</view>
<!-- 典当信息弹窗仅在showModal为true时显示 -->
<view wx:if="{{showModalNoPledge}}">
<modal show="{{showModalNoPledge}}" bindconfirm="closeModalNoPledge"title="该学生没有进行典当">
<view>
<text>更新后的积分: {{updatedScore}}</text>
</view>
</modal>
</view>