31 lines
1012 B
Vue
31 lines
1012 B
Vue
<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> |