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
669bdfa8
authored
Nov 19, 2025
by
kaisa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:更新
parent
5986b19e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
14 deletions
src/utils/requestAct.ts
src/views/activity/recruitment/components/sign/index.vue
src/views/activity/recruitment/index.vue
src/utils/requestAct.ts
View file @
669bdfa8
...
...
@@ -74,8 +74,6 @@ service.interceptors.request.use(
service
.
interceptors
.
response
.
use
(
(
response
:
AxiosResponse
)
=>
{
const
{
code
,
msg
}
=
response
.
data
console
.
log
(
response
.
data
,
'response.data?'
);
if
(
code
===
1
)
{
return
response
.
data
;
}
else
{
...
...
src/views/activity/recruitment/components/sign/index.vue
View file @
669bdfa8
...
...
@@ -43,14 +43,18 @@ const stageIndex = ref(0)
// 监听合作状态 0 试合作 1 中期合作 2 长期合作
watch
(()
=>
props
.
signLevel
,
(
newVal
)
=>
{
stageIndex
.
value
=
newVal
;
},
{
deep
:
true
});
},
{
deep
:
true
,
immediate
:
true
});
// 监听合作平台数据
watch
(()
=>
props
.
platformList
,
(
newVal
)
=>
{
newVal
.
map
(
item
=>
{
columns
.
value
.
push
({
text
:
item
.
platform
,
value
:
item
.
context
,
nickName
:
item
.
value
})
})
},
{
deep
:
true
});
console
.
log
(
newVal
,
'newVal~'
);
if
(
newVal
)
{
newVal
.
map
(
item
=>
{
columns
.
value
.
push
({
text
:
item
.
platform
,
value
:
item
.
context
,
nickName
:
item
.
value
})
})
}
},
{
deep
:
true
,
immediate
:
true
});
const
onConfirm
=
({
selectedValues
}:
any
)
=>
{
const
selectedItem
=
columns
.
value
.
find
(
item
=>
item
.
value
===
selectedValues
);
...
...
src/views/activity/recruitment/index.vue
View file @
669bdfa8
...
...
@@ -16,13 +16,6 @@ const getAnchorSignView = async () => {
type
:
0
});
// 签约状态 0 需要签约页面 1 签约结果页面
if
(
data
.
signInfo
==
1
)
{
isShowReview
.
value
=
true
}
else
{
isShowReview
.
value
=
false
}
// 合作状态
signLevel
.
value
=
data
.
levelInfo
;
...
...
@@ -31,6 +24,17 @@ const getAnchorSignView = async () => {
// 签约平台
platformList
.
value
=
data
.
list
;
console
.
log
(
platformList
.
value
,
'??'
);
// 签约状态 0 需要签约页面 1 签约结果页面
if
(
data
.
signInfo
==
1
)
{
isShowReview
.
value
=
true
}
else
{
isShowReview
.
value
=
false
}
};
onMounted
(()
=>
{
...
...
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