Files
threeonecheck_web/pages/login/success.vue
2026-01-18 16:06:37 +08:00

31 lines
1012 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<!-- 注册成功 -->
<view class="text-center" v-if="success">
<image src="/static/index/蒙版组 260.png" style="width: 160rpx;height: 160rpx;margin-top: 140rpx;"></image>
<view class="text-bold margin-bottom-xl margin-top-xl">注册成功</view>
<view class="text-gray">等待管理员确认后才能进行账号登录</view>
<button class="bg-blue round lg but ">返回首页</button>
</view>
<!-- 注册异常 -->
<view class="text-center" v-else>
<image src="/static/index/蒙版组 261.png" style="width: 160rpx;height: 160rpx;margin-top: 140rpx;"></image>
<view class="text-bold margin-bottom-xl margin-top-xl">注册异常</view>
<view class="text-gray">员工已注册如账号异常请联系管理员</view>
<button class="bg-blue round lg but ">返回首页</button>
</view>
</view>
</template>
<script setup>
const success = true
</script>
<style scoped>
.but {
width: 248rpx;
height: 88rpx;
margin-top: 100rpx;
}
</style>