2025-07-01 17:29:13 +08:00
|
|
|
|
<template>
|
2025-10-13 14:58:45 +08:00
|
|
|
|
<div class="container">
|
|
|
|
|
|
<image style="width: 500rpx;height:500rpx"
|
|
|
|
|
|
src="https://www.focusnu.com/media/directive/index/account/oldsuccess.png" />
|
|
|
|
|
|
<view class="white-font">
|
|
|
|
|
|
尊敬的用户,您的机构{{ special?`变更信息`:`加盟` }}<text style="color: rgb(1,153,255);">申请已成功提交</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="normal">
|
|
|
|
|
|
<text>
|
|
|
|
|
|
{{ special?`我们将尽快处理并反馈审核结果`:`请耐心等待审核结果` }},{{ special?`期待与您继续携手同行`:`期待您早日加入护理单元大家庭` }}
|
|
|
|
|
|
!
|
|
|
|
|
|
</text>
|
2025-07-01 17:29:13 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
<view class="bottom-button" @click="jumpto">
|
|
|
|
|
|
我的机构
|
|
|
|
|
|
</view>
|
2025-10-13 14:58:45 +08:00
|
|
|
|
</div>
|
2025-07-01 17:29:13 +08:00
|
|
|
|
</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 = () => {
|
2025-07-14 17:29:17 +08:00
|
|
|
|
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-07-14 17:29:17 +08:00
|
|
|
|
url: `/pages/index/index`
|
|
|
|
|
|
});
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2025-07-01 17:29:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
onLoad((options) => {
|
|
|
|
|
|
if (options.special == `true`) {
|
|
|
|
|
|
special.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2025-10-13 14:58:45 +08:00
|
|
|
|
.container {
|
2025-07-01 17:29:13 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2025-10-13 14:58:45 +08:00
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
background-color: #F7F7F7;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
2025-07-01 17:29:13 +08:00
|
|
|
|
|
2025-10-13 14:58:45 +08:00
|
|
|
|
.white-content {
|
|
|
|
|
|
width: 70%;
|
|
|
|
|
|
height: 600rpx;
|
|
|
|
|
|
border-radius: 50rpx;
|
|
|
|
|
|
background-color: #fff;
|
2025-07-01 17:29:13 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
align-items: center;
|
2025-10-13 14:58:45 +08:00
|
|
|
|
margin-top: -50rpx;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
.white-font {
|
|
|
|
|
|
font-size: 38rpx;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
margin-top: 40rpx;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-07-01 17:29:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-13 14:58:45 +08:00
|
|
|
|
.bottom-button {
|
2025-07-01 17:29:13 +08:00
|
|
|
|
position: absolute;
|
2025-10-13 14:58:45 +08:00
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
bottom: 0rpx;
|
|
|
|
|
|
margin-top: 80rpx;
|
|
|
|
|
|
margin-bottom: 90rpx;
|
|
|
|
|
|
width: 80%;
|
|
|
|
|
|
height: 90rpx;
|
|
|
|
|
|
border-radius: 35rpx;
|
|
|
|
|
|
background: linear-gradient(to left, #00C9FF, #0076FF);
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
font-size: 33rpx;
|
2025-07-01 17:29:13 +08:00
|
|
|
|
display: flex;
|
2025-10-13 14:58:45 +08:00
|
|
|
|
justify-content: center;
|
2025-07-01 17:29:13 +08:00
|
|
|
|
align-items: center;
|
2025-10-13 14:58:45 +08:00
|
|
|
|
z-index: 3;
|
2025-07-01 17:29:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.normal {
|
2025-07-23 17:37:27 +08:00
|
|
|
|
padding: 0 70rpx;
|
|
|
|
|
|
font-size: 28rpx;
|
2025-07-01 17:29:13 +08:00
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
display: flex;
|
2025-07-23 17:37:27 +08:00
|
|
|
|
align-items: center;
|
|
|
|
|
|
line-height: 50rpx;
|
|
|
|
|
|
text-align: center
|
2025-07-01 17:29:13 +08:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|