Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
kaisa
/
SopWeb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
ae0624d7
authored
Nov 15, 2025
by
kaisa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:更新
parent
daf4c154
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
83 additions
and
9 deletions
src/views/activity/recruitment/components/review/index.vue
src/views/activity/recruitment/components/sign/index.vue
src/views/activity/recruitment/image/fail.png
src/views/activity/recruitment/image/judge.png
src/views/activity/recruitment/image/success.png
src/views/activity/recruitment/index.vue
src/views/activity/recruitment/components/review/index.vue
View file @
ae0624d7
<
script
setup
lang=
"ts"
>
<
script
setup
lang=
"ts"
>
const
isSuccess
=
ref
(
false
)
const
isFail
=
ref
(
false
)
const
isJudge
=
ref
(
false
)
</
script
>
</
script
>
<
template
>
<
template
>
<div
class=
"review-wrap"
>
<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>
</div>
</
template
>
</
template
>
<
style
scoped
lang=
"scss"
>
<
style
scoped
lang=
"scss"
>
.review-wrap
{
.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
>
</
style
>
\ No newline at end of file
src/views/activity/recruitment/components/sign/index.vue
View file @
ae0624d7
...
@@ -797,6 +797,7 @@ const onSubmit = (values: any) => {
...
@@ -797,6 +797,7 @@ const onSubmit = (values: any) => {
color
:
#FFFFFF
;
color
:
#FFFFFF
;
width
:
592px
;
width
:
592px
;
height
:
60px
;
height
:
60px
;
text-align
:
center
;
}
}
img
{
img
{
...
...
src/views/activity/recruitment/image/fail.png
0 → 100644
View file @
ae0624d7
186 KB
src/views/activity/recruitment/image/judge.png
0 → 100644
View file @
ae0624d7
212 KB
src/views/activity/recruitment/image/success.png
0 → 100644
View file @
ae0624d7
187 KB
src/views/activity/recruitment/index.vue
View file @
ae0624d7
<
script
setup
lang=
"ts"
>
<
script
setup
lang=
"ts"
>
import
review
from
'./components/review/index.vue'
import
review
from
'./components/review/index.vue'
import
sign
from
'./components/sign/index.vue'
import
sign
from
'./components/sign/index.vue'
const
isShowReview
=
ref
(
false
)
</
script
>
</
script
>
<
template
>
<
template
>
<sign
/>
<sign
v-if=
"!isShowReview"
/>
<review
/>
<review
v-else
/>
</
template
>
</
template
>
<
style
scoped
lang=
"scss"
></
style
>
<
style
scoped
lang=
"scss"
></
style
>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment