hldy_xcx/pages/addstaff/successpush.vue

150 lines
3.1 KiB
Vue
Raw Normal View History

2025-08-22 14:30:39 +08:00
<template>
<view class="font-father">
<view class="fixed">
2025-10-17 10:51:10 +08:00
<!-- <image v-if="!uni.getStorageSync('isstaffchange')" class="title-photo"
:src="`https://www.focusnu.com/media/directive/index/blue111.png`" /> -->
<image class="title-photo" style="width: 200rpx;height: 200rpx;"
:src="`https://www.focusnu.com/media/directive/index/jumpImge/yuangongruzhu.png`" />
2025-10-17 10:51:10 +08:00
<view style="font-size: 35rpx;font-weight: 600;margin: 30rpx 0;">
2025-09-29 10:40:43 +08:00
{{ uni.getStorageSync('isstaffchange') ? '变更信息已提交' : '提交成功' }}
2025-08-22 14:30:39 +08:00
</view>
2025-08-22 14:30:39 +08:00
<view class="small-title">
2025-09-29 10:40:43 +08:00
{{ uni.getStorageSync('isstaffchange') ? '尊敬的用户,您好!您的个人信息已提交' : '尊敬的用户,您的员工入驻申请已提交成功' }}
2025-08-22 14:30:39 +08:00
</view>
<view class="normal">
<text>
2025-09-29 10:40:43 +08:00
{{ uni.getStorageSync('isstaffchange')?`请等待机构审核`:`欢迎加入护理单元大家庭` }}
2025-08-22 14:30:39 +08:00
</text>
</view>
</view>
<view class="bottom-button" @click="jumpto">
我的机构
</view>
</view>
</template>
<script setup>
import {
onLoad
} from '@dcloudio/uni-app'
import {
reactive,
ref
} from 'vue';
import {
getMessage
} from '@/api/loginApi.js'
const special = ref(false);
const jumpto = () => {
getMessage(uni.getStorageSync("openid")).then(res => {
uni.setStorageSync('tel', res.result.tel);
uni.setStorageSync('token', res.result.token);
uni.setStorageSync('serverUrl', res.result.serverUrl);
uni.setStorageSync('platId', res.result.platId);
uni.setStorageSync('izJg', res.result.izJg);
uni.setStorageSync('izJs', res.result.izJs);
uni.setStorageSync('izYg', res.result.izYg);
2025-09-19 17:12:59 +08:00
uni.reLaunch({
2025-09-02 16:45:54 +08:00
url: `/pages/yuangongindex/index`
2025-08-22 14:30:39 +08:00
});
})
}
onLoad(() => {
2025-08-22 14:30:39 +08:00
})
</script>
<style lang="scss" scoped>
.font-father {
width: 100%;
min-height: 100vh;
padding: 0 30rpx;
display: flex;
align-items: center;
flex-direction: column;
position: relative;
background-color: rgb(239, 241, 252);
2025-08-22 14:30:39 +08:00
.font-title {
margin-top: 0rpx;
margin-bottom: 30rpx;
font-weight: 600;
font-size: 30rpx;
display: flex;
flex-direction: column;
font-size: 80rpx;
}
.bottom-button {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 0rpx;
margin-top: 80rpx;
margin-bottom: 90rpx;
width: 80%;
height: 90rpx;
border-radius: 35rpx;
background: linear-gradient(to bottom, #e7f4ff, #c5e5ff);
border: 2rpx solid #9AD1FF;
color: #007CFF;
2025-08-22 14:30:39 +08:00
font-size: 33rpx;
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;
}
.fixed {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 2;
padding: 0 70rpx;
display: flex;
flex-direction: column;
align-items: center;
}
.small-title {
margin-bottom: 10rpx;
font-size: 28rpx;
}
.normal {
padding: 0 70rpx;
font-size: 28rpx;
margin-bottom: 20rpx;
display: flex;
align-items: center;
line-height: 50rpx;
text-align: center
}
.title-photo {
2025-10-17 10:51:10 +08:00
margin-top: 500rpx;
2025-08-22 14:30:39 +08:00
width: 120rpx;
height: 120rpx;
z-index: 1;
}
</style>