Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dd_school
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangqi
dd_school
Commits
57b0aed0
Commit
57b0aed0
authored
Apr 18, 2024
by
taowenzhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
审核可修改姓名和身份证号
parent
6f7fc833
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
ruoyi-ui/src/api/smartSchool/openRecruitment/index.js
+0
-1
ruoyi-ui/src/views/smartSchool/openRecruitment/examManage/components/InfoReview.vue
+21
-2
No files found.
ruoyi-ui/src/api/smartSchool/openRecruitment/index.js
View file @
57b0aed0
...
...
@@ -473,4 +473,3 @@ export function checkEnd(examId) {
}).
then
(()
=>
{
})
}
ruoyi-ui/src/views/smartSchool/openRecruitment/examManage/components/InfoReview.vue
View file @
57b0aed0
...
...
@@ -141,9 +141,25 @@
<div
style=
"flex: 1"
>
<el-descriptions
:column=
"1"
border
>
<el-descriptions-item
label=
"姓名"
>
<div
style=
"width: 500px"
>
{{ form.studentName }}
</div>
<
template
v-if=
"isHandle"
>
<div
style=
"width: 700px"
>
{{
form
.
studentName
}}
</div>
</
template
>
<
template
v-else
>
<el-form-item
prop=
"studentName"
style=
"min-width: 700px;"
>
<el-input
v-model=
"form.studentName"
></el-input>
</el-form-item>
</
template
>
</el-descriptions-item>
<el-descriptions-item
label=
"身份证号码"
>
<
template
v-if=
"isHandle"
>
{{
form
.
idCard
}}
</
template
>
<
template
v-else
>
<el-form-item
prop=
"idCard"
>
<el-input
v-model=
"form.idCard"
></el-input>
</el-form-item>
</
template
>
</el-descriptions-item>
<el-descriptions-item
label=
"身份证号码"
>
{{ form.idCard }}
</el-descriptions-item>
<el-descriptions-item
label=
"性别"
>
<dict-tag
:options=
"dict.type.sys_user_sex"
:value=
"form.sex"
/>
</el-descriptions-item>
...
...
@@ -449,6 +465,9 @@ export default {
},
// 表单校验
rules
:
{
studentName
:
[
{
required
:
true
,
message
:
"姓名不能为空"
,
trigger
:
"blur"
}
],
idCard
:
[
{
required
:
true
,
message
:
"身份证号不能为空"
,
trigger
:
"blur"
}
],
...
...
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