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
f5d052ad
Commit
f5d052ad
authored
Nov 11, 2024
by
石建新(贵阳日报)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改提示
parent
eae80bfe
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
8 deletions
+29
-8
addPost.vue
src/pages/signUp/addPost.vue
+12
-7
fillIn.vue
src/pages/user/businessLicense/fillIn.vue
+8
-1
request.js
src/utils/request.js
+9
-0
No files found.
src/pages/signUp/addPost.vue
View file @
f5d052ad
...
...
@@ -113,7 +113,7 @@
<wd-radio
v-for=
"(v, n) in radioOpstion"
:value=
"v.code"
:key=
"n"
>
{{
v
.
text
}}
</wd-radio>
</wd-radio-group>
</form-item>
<form-item
title=
"福利待遇"
icon=
""
>
<form-item
title=
"福利待遇
(选填)
"
icon=
""
>
<view
class=
"welfare"
>
<view
v-for=
"(el, nl) in item.myBenefits"
...
...
@@ -124,7 +124,7 @@
>
</view>
</form-item>
<form-item
title=
"身份
要求
"
icon=
""
>
<form-item
title=
"身份"
icon=
""
>
<wd-picker
:columns=
"identityPostion"
value-key=
"code"
...
...
@@ -135,13 +135,13 @@
>
<view
:class=
"`inner flex-between $
{item.identityText ? '' : 'placeholder'}`">
<view
class=
"flex-align-center"
>
{{
item
.
identityText
||
"请选择身份
要求
"
}}
{{
item
.
identityText
||
"请选择身份"
}}
</view>
</view>
</wd-picker>
</form-item>
<view
class=
"transverse"
>
<form-item
title=
"学历
要求
"
icon=
""
>
<form-item
title=
"学历"
icon=
""
>
<wd-picker
:columns=
"educationPostion"
value-key=
"code"
...
...
@@ -173,7 +173,9 @@
</p>
</wd-col-picker>
</form-item>
<form-item
title=
"年龄要求"
icon=
""
>
</view>
<form-item
title=
"年龄"
icon=
""
>
<wd-col-picker
v-model=
"ageValue"
:columns=
"ageColumns"
...
...
@@ -186,7 +188,6 @@
</view>
</wd-col-picker>
</form-item>
</view>
<form-row
:fill=
"false"
>
<form-item
title=
"专业技术职称(选填)"
icon=
"edit"
>
<input
...
...
@@ -207,7 +208,7 @@
>
<view
:class=
"`inner flex-between $
{item.majorSelectValue ? '' : 'placeholder'}`">
<view
class=
"flex-align-center"
bind:tap=
"onShowIdentitySelect"
>
{{
item
.
majorSelectValue
||
"请选择职
业
等级"
}}
{{
item
.
majorSelectValue
||
"请选择职
称
等级"
}}
</view>
</view>
</wd-picker>
...
...
@@ -431,6 +432,7 @@ getMajorTreeApi().then(res => {
children
:
res
.
data
[
key
]
}))
);
majorOpstion
.
value
[
0
].
unshift
({
name
:
"不限"
});
}
});
const
tabList
=
ref
([
...
...
@@ -449,6 +451,9 @@ const handleConfirmMajor = (params, item) => {
const
{
value
}
=
params
;
item
.
majorText
=
value
[
0
];
item
.
majorRequirement
=
value
[
0
];
if
(
value
[
0
]
==
"不限"
)
{
item
.
majorRequirement
=
""
;
}
};
const
getEnumCertificatesLevel
=
async
()
=>
{
levelOptions
.
value
=
await
getEumData
(
"EnumCertificatesLevel"
);
...
...
src/pages/user/businessLicense/fillIn.vue
View file @
f5d052ad
...
...
@@ -180,7 +180,14 @@ const nextStep = () => {
title
:
"申诉中"
,
content
:
"您的申述已提交请等待审核"
,
showCancel
:
false
,
confirmText
:
"好的"
confirmText
:
"好的"
,
success
:
function
(
confirm
)
{
if
(
confirm
.
confirm
)
{
xma
.
navigateTo
({
url
:
"/pages/login/index"
});
}
}
});
}
});
...
...
src/utils/request.js
View file @
f5d052ad
...
...
@@ -67,6 +67,14 @@ instance.interceptors.response.use(
duration
:
1900
});
}
else
if
(
code
==
13
)
{
if
(
response
.
data
.
data
>
0
)
{
uni
.
showModal
({
title
:
'您提交的申诉在审核中'
,
content
:
'您提交的申诉在审核中,请勿重复提交'
,
showCancel
:
true
,
confirmText
:
'确定'
});
}
else
{
uni
.
showModal
({
title
:
'您的帐号已失效'
,
content
:
'由于您超过1月未登录现已将您的账号禁用您可完成申述后继续使用'
,
...
...
@@ -81,6 +89,7 @@ instance.interceptors.response.use(
}
});
}
}
else
if
(
code
==
12
)
{
uni
.
showModal
({
title
:
response
.
data
.
data
.
title
,
...
...
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