2025-07-03 17:27:42 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<view class="font-father">
|
|
|
|
|
|
<image class="title-img" :src="`https://www.focusnu.com/media/directive/login/introduce/allbgc.png`" />
|
|
|
|
|
|
<image class="title-photo" :src="`https://www.focusnu.com/media/directive/index/bluephoto.png`" />
|
2025-07-23 17:37:27 +08:00
|
|
|
|
<view class="small-title">尊敬的用户,您的手机<text style="color: rgb(1,153,255);font-weight: 600;">{{ phone }}</text></view>
|
|
|
|
|
|
<!-- <view class="small-title"></view> -->
|
2025-07-03 17:27:42 +08:00
|
|
|
|
<view class="font-title">
|
2025-07-23 17:37:27 +08:00
|
|
|
|
已成功绑定,期待您早日加入护理单元大家庭!
|
2025-07-03 17:27:42 +08:00
|
|
|
|
</view>
|
2025-07-23 17:37:27 +08:00
|
|
|
|
<!-- <view class="normal">
|
2025-07-03 17:27:42 +08:00
|
|
|
|
<text style="font-weight: 600;">
|
|
|
|
|
|
期待您早日加入护理单元大家庭!
|
|
|
|
|
|
</text>
|
2025-07-23 17:37:27 +08:00
|
|
|
|
</view> -->
|
2025-07-03 17:27:42 +08:00
|
|
|
|
<view class="bottom-button" @click="jumpto">
|
|
|
|
|
|
我的机构
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
|
import {
|
|
|
|
|
|
onLoad
|
|
|
|
|
|
} from '@dcloudio/uni-app'
|
|
|
|
|
|
import {
|
|
|
|
|
|
reactive,
|
|
|
|
|
|
ref
|
|
|
|
|
|
} from 'vue';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const jumpto = () => {
|
|
|
|
|
|
console.log("???")
|
|
|
|
|
|
uni.redirectTo({
|
|
|
|
|
|
url: `/pages/login/threeselectone`
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const phone = ref("");
|
|
|
|
|
|
onLoad((options) => {
|
|
|
|
|
|
phone.value = uni.getStorageSync('tel');
|
|
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.font-father {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
padding: 0 100rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
.font-title {
|
2025-07-23 17:37:27 +08:00
|
|
|
|
padding: 0 70rpx;
|
2025-07-03 17:27:42 +08:00
|
|
|
|
margin-top: 0rpx;
|
2025-07-23 17:37:27 +08:00
|
|
|
|
// margin-bottom: 30rpx;
|
|
|
|
|
|
// font-weight: 600;
|
|
|
|
|
|
font-size: 28rpx;
|
2025-07-03 17:27:42 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2025-07-23 17:37:27 +08:00
|
|
|
|
// font-size: 70rpx;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
line-height: 50rpx;
|
2025-07-03 17:27:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bottom-button {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
bottom: 0rpx;
|
|
|
|
|
|
margin-top: 80rpx;
|
2025-07-23 17:37:27 +08:00
|
|
|
|
margin-bottom: 90rpx;
|
2025-07-03 17:27:42 +08:00
|
|
|
|
width: 80%;
|
2025-07-23 17:37:27 +08:00
|
|
|
|
height: 90rpx;
|
|
|
|
|
|
border-radius: 35rpx;
|
2025-07-03 17:27:42 +08:00
|
|
|
|
background: linear-gradient(to left, #00C9FF, #0076FF);
|
|
|
|
|
|
color: #fff;
|
2025-07-23 17:37:27 +08:00
|
|
|
|
font-size: 33rpx;
|
2025-07-03 17:27:42 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
z-index: 3;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.title-img {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100vh;
|
|
|
|
|
|
z-index: -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.small-title {
|
|
|
|
|
|
margin-bottom: 10rpx;
|
2025-07-23 17:37:27 +08:00
|
|
|
|
font-size: 28rpx;
|
2025-07-03 17:27:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.normal {
|
|
|
|
|
|
font-size: 33rpx;
|
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.title-photo {
|
|
|
|
|
|
margin-top: 300rpx;
|
|
|
|
|
|
width: 350rpx;
|
|
|
|
|
|
height: 350rpx;
|
|
|
|
|
|
z-index: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|