<!-- 中间弹窗 -->
|
<view class="popup-box" wx:if="{{visible=='1'}}" bindtap="closePopup"></view>
|
<view class="info-center" style="top:{{height*0.1}}px" wx:if="{{visible=='1'}}">
|
<view class="row-info">
|
<view class="popup-content">
|
<view class="warning-txt">
|
检测到您未加入班级,如您不加入班级,提交的答案将不能提交到班级老师处:
|
</view>
|
<t-radio
|
allow-uncheck
|
icon="dot"
|
label="加入班级"
|
value="1"
|
data-value="1"
|
checked="{{joinGroup == 1}}"
|
bind:change="onChangeRadio"
|
/>
|
<view class="phone-input">
|
<input
|
value="{{inputvalue}}"
|
placeholder="请输入班级邀请码"
|
bind:change="inputChange"
|
type="text"
|
class="phone"
|
style="{{inputStyle}}"
|
/>
|
</view>
|
<t-radio
|
allow-uncheck
|
icon="dot"
|
label="不加入班级"
|
value="0"
|
data-value="2"
|
checked="{{joinGroup == 2}}"
|
bind:change="onChangeRadio"
|
/>
|
<t-checkbox label="不再提示加入班级" icon="rectangle" value="{{noTip}}" />
|
</view>
|
<view class="submit-btn">
|
<t-button theme="primary" size="large" block bind:tap="confirmSuggest"
|
>确认</t-button
|
>
|
</view>
|
</view>
|
</view>
|