Commit ae0624d7 by kaisa

feat:更新

parent daf4c154
<script setup lang="ts">
const isSuccess = ref(false)
const isFail = ref(false)
const isJudge = ref(false)
</script>
<template>
<div class="review-wrap">
<!-- 成功 -->
<div class="success"></div>
<div class="success" v-show="isSuccess">
<img src="../../image/success.png" alt="">
<span class="result">簽約成功</span>
<span class="content">愿你在全新的舞台上光芒四射, 直播事业一路长红!</span>
</div>
<!-- 審核中 -->
<div class="judge"></div>
<div class="judge" v-show="isJudge">
<img src="../../image/judge.png" alt="">
<span class="result">審核中</span>
<span class="content">您的签约資料正在审核中, 请耐心等待。 </span>
</div>
<!-- 駁回 -->
<div class="failure"></div>
<div class="failure" v-show="isFail">
<img src="../../image/fail.png" alt="">
<span class="result">簽約駁回</span>
<span class="content">您的签约申请暂未通过审核, 請聯繫公會人員了解情況。</span>
</div>
</div>
</template>
<style scoped lang="scss">
.review-wrap {
.success {}
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
.success {
display: flex;
flex-direction: column;
align-items: center;
img {
width: 400px;
height: 329px;
}
}
.judge {
display: flex;
flex-direction: column;
align-items: center;
img {
width: 400px;
height: 329px;
}
}
.failure {
display: flex;
flex-direction: column;
align-items: center;
img {
width: 400px;
height: 329px;
}
.result {
color: #F64848;
}
}
.judge {}
.result {
font-family: PingFang SC;
font-weight: bold;
font-size: 52px;
color: #111;
padding: 40px 0 34px 0;
}
.failure {}
.content {
width: 400px;
height: 68px;
font-family: PingFang SC;
font-weight: 500;
font-size: 28px;
color: #444444;
line-height: 42px;
text-align: center;
}
}
</style>
\ No newline at end of file
......@@ -797,6 +797,7 @@ const onSubmit = (values: any) => {
color: #FFFFFF;
width: 592px;
height: 60px;
text-align: center;
}
img {
......
<script setup lang="ts">
import review from './components/review/index.vue'
import sign from './components/sign/index.vue'
const isShowReview = ref(false)
</script>
<template>
<sign />
<review />
<sign v-if="!isShowReview" />
<review v-else />
</template>
<style scoped lang="scss"></style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment