Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mp-enterprise-people-recruitment-h5
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
彭佳妮(贵阳日报)
mp-enterprise-people-recruitment-h5
Commits
3605f5a6
Commit
3605f5a6
authored
Nov 11, 2024
by
李明环(东信)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
专业回显设置
parent
eae80bfe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
index.vue
src/pages/recommend/index.vue
+1
-1
step4.vue
src/pages/recommend/releasePostion/step4.vue
+6
-3
No files found.
src/pages/recommend/index.vue
View file @
3605f5a6
...
...
@@ -351,7 +351,7 @@ const columnChangeMajor = ({ selectedItem, resolve, finish }) => {
const
handleConfirmMajor
=
({
value
})
=>
{
if
(
value
[
1
])
{
majorText
.
value
=
value
[
1
];
getResumeRecommendListParams
.
value
.
major
=
value
[
1
]
;
getResumeRecommendListParams
.
value
.
major
=
value
.
join
(
'-'
)
;
}
else
{
majorText
.
value
=
"不限"
;
getResumeRecommendListParams
.
value
.
major
=
""
;
...
...
src/pages/recommend/releasePostion/step4.vue
View file @
3605f5a6
...
...
@@ -271,7 +271,7 @@ const handleConfirmMajor = ({ value }) => {
console
.
log
(
value
);
if
(
value
[
1
])
{
majorText
.
value
=
value
[
1
];
pinias
.
formData
.
majorRequirement
=
value
[
1
]
;
pinias
.
formData
.
majorRequirement
=
value
.
join
(
'-'
)
;
}
else
{
majorText
.
value
=
"不限"
;
}
...
...
@@ -320,12 +320,15 @@ const initViewData = async () => {
// 证书
/* positionalTitle majorInputValue.value + "-" + majorSelectValue.value
professionalCertificates certificateInputValue.value + "-" + certificateSelectValue.value */
const
[
majorInputValue1
,
majorSelectValue1
]
=
pinias
.
formData
.
positionalTitle
.
split
(
"-"
)
;
const
[
certificateInputValue1
,
certificateSelectValue1
]
=
pinias
.
formData
.
professionalCertificates
.
split
(
"-"
)
;
const
[
majorInputValue1
,
majorSelectValue1
]
=
pinias
.
formData
.
positionalTitle
?.
split
(
"-"
)
||
[]
;
const
[
certificateInputValue1
,
certificateSelectValue1
]
=
pinias
.
formData
.
professionalCertificates
?.
split
(
"-"
)
||
[]
;
majorInputValue
.
value
=
majorInputValue1
;
majorSelectValue
.
value
=
majorSelectValue1
;
certificateInputValue
.
value
=
certificateInputValue1
;
certificateSelectValue
.
value
=
certificateSelectValue1
;
console
.
log
(
pinias
.
formData
.
majorRequirement
);
majorText
.
value
=
pinias
.
formData
.
majorRequirement
.
split
(
'-'
)[
1
]
||
''
}
};
initViewData
();
...
...
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