This commit is contained in:
parent
feb181a130
commit
7e368dc111
|
|
@ -584,59 +584,53 @@
|
|||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 邀请码弹窗 -->
|
||||
<view v-if="showInvitePopup" class="popup-mask" @click="closeInvitePopup">
|
||||
<view class="popup-container" @click.stop>
|
||||
<view class="popup-header">
|
||||
<text class="popup-title">填写测评邀请码</text>
|
||||
<view class="popup-close" @click="closeInvitePopup">
|
||||
<text>×</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="popup-body">
|
||||
<input
|
||||
class="invite-input"
|
||||
type="text"
|
||||
placeholder="请输入5位邀请码"
|
||||
placeholder-style="letter-spacing: 0rpx;"
|
||||
:value="inviteCode"
|
||||
@input="onInviteCodeInput"
|
||||
maxlength="5"
|
||||
/>
|
||||
</view>
|
||||
<view class="popup-footer">
|
||||
<view class="popup-btn" :class="{ 'btn-loading': inviteLoading }" @click="submitInviteCode">
|
||||
<text>{{ inviteLoading ? '验证中...' : '提交' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 进行中测评弹窗 -->
|
||||
<view v-if="showPendingPopup" class="popup-mask" @click="handleDismissPending">
|
||||
<view class="popup-container pending-popup" @click.stop>
|
||||
<view class="popup-header">
|
||||
<text class="popup-title">发现进行中的测评</text>
|
||||
</view>
|
||||
<view class="popup-body">
|
||||
<view class="pending-msg">
|
||||
您有一份未完成的测评记录,是否继续?
|
||||
</view>
|
||||
<view class="pending-info">
|
||||
<text>姓名:{{ pendingRecord?.name }}</text>
|
||||
<text>手机号:{{ pendingRecord?.phone }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="pending-footer">
|
||||
<view class="popup-btn-outline" @click="handleDismissPending">
|
||||
<text>重新开始</text>
|
||||
</view>
|
||||
<view class="popup-btn" @click="handleContinuePending">
|
||||
<text>继续测评</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 邀请码弹窗 -->
|
||||
<view v-if="showInvitePopup" class="popup-mask" @click="closeInvitePopup">
|
||||
<view class="popup-container" @click.stop>
|
||||
<view class="popup-header">
|
||||
<text class="popup-title">填写测评邀请码</text>
|
||||
<view class="popup-close" @click="closeInvitePopup">
|
||||
<text>×</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="popup-body">
|
||||
<input class="invite-input" type="text" placeholder="请输入5位邀请码"
|
||||
placeholder-style="letter-spacing: 0rpx;" :value="inviteCode" @input="onInviteCodeInput"
|
||||
maxlength="5" />
|
||||
</view>
|
||||
<view class="popup-footer">
|
||||
<view class="popup-btn" :class="{ 'btn-loading': inviteLoading }" @click="submitInviteCode">
|
||||
<text>{{ inviteLoading ? '验证中...' : '提交' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 进行中测评弹窗 -->
|
||||
<view v-if="showPendingPopup" class="popup-mask" @click="handleDismissPending">
|
||||
<view class="popup-container pending-popup" @click.stop>
|
||||
<view class="popup-header">
|
||||
<text class="popup-title">发现进行中的测评</text>
|
||||
</view>
|
||||
<view class="popup-body">
|
||||
<view class="pending-msg">
|
||||
您有一份未完成的测评记录,是否继续?
|
||||
</view>
|
||||
<view class="pending-info">
|
||||
<text>姓名:{{ pendingRecord?.name }}</text>
|
||||
<text>手机号:{{ pendingRecord?.phone }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="pending-footer">
|
||||
<view class="popup-btn-outline" @click="handleDismissPending">
|
||||
<text>重新开始</text>
|
||||
</view>
|
||||
<view class="popup-btn" @click="handleContinuePending">
|
||||
<text>继续测评</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user