123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view class="success-box">
- <view class="success-img">
- <image src="@/static/images/jobApplicant/login-success.svg" mode="scaleToFill" />
- </view>
- <view class="success-title"
- >您已经成功 <br />
- 注册账号</view
- >
- <view class="success-btn">
- <u-button
- type="primary"
- @click="goLogin"
- :customStyle="{
- marginTop: '48rpx',
- height: '90rpx',
- fontSize: '32rpx',
- borderRadius: '100rpx',
- }"
- >
- 登录
- </u-button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {
- goLogin(){
- uni.navigateTo({ url: '/pages/my/jobApplicant/loginInput' })
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .success-box {
- padding-top: 168rpx;
- box-sizing: border-box;
- .success-img {
- width: 400rpx;
- height: 280rpx;
- margin: auto;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .success-title {
- color: #27252e;
- font-family: DM Sans;
- font-size: 48rpx;
- font-weight: 700;
- text-align: center;
- margin-top: 64rpx;
- }
- .success-btn {
- margin: 0 32rpx;
- }
- }
- </style>
|