Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
0c1b0c66
提交
0c1b0c66
authored
9月 08, 2022
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore(报名申请): 修改报名申请
上级
808ed223
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
52 行增加
和
15 行删除
+52
-15
cjd.js
modules/my/admission/form/cjd.js
+22
-7
ywjl.js
modules/my/admission/form/ywjl.js
+10
-1
complete.vue
modules/my/application/complete.vue
+5
-5
byzs.js
modules/my/interview/form/byzs.js
+15
-2
没有找到文件。
modules/my/admission/form/cjd.js
浏览文件 @
0c1b0c66
export
default
function
(
_this
)
{
return
{
id
:
'admission_cjd'
,
title
:
'
成绩单(中+英)
'
,
title
:
'
学位证书和成绩单
'
,
get
:
{
action
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/
${
process
.
env
.
projectId
}
`
,
callback
(
data
)
{
...
...
@@ -19,6 +19,9 @@ export default function(_this) {
this
.
form
.
options
.
disabled
=
stageList
.
findIndex
(
item
=>
item
===
submissionStage
)
>
6
return
attachments
.
reduce
(
(
result
,
item
)
=>
{
if
(
item
.
file_type_id
===
'DIPLOMA_CN'
)
{
result
.
DIPLOMA_CN
.
push
(
item
)
}
if
(
item
.
file_type_id
===
'REPORT_CARD_CN'
)
{
result
.
REPORT_CARD_CN
.
push
(
item
)
}
...
...
@@ -27,7 +30,7 @@ export default function(_this) {
}
return
result
},
{
REPORT_CARD_CN
:
[],
REPORT_CARD_EN
:
[]
}
{
DIPLOMA_CN
:
[],
REPORT_CARD_CN
:
[],
REPORT_CARD_EN
:
[]
}
)
}
},
...
...
@@ -35,12 +38,24 @@ export default function(_this) {
next
:
{
to
:
{
query
:
{
active
:
'admission_yynl'
}
}
},
hasButton
:
false
,
options
:
{
'label-position'
:
'top'
},
hint
:
`
<p>已毕业学生需提交完整成绩单,未毕业学生提交现有成绩单,成绩单需要加盖学校公章</p>
<p>请将中英文成绩单原件扫描或者拍照后提交。</p>
<p>获取途径:联系大学时就读学校相关部门(档案馆/教务处)获取成绩单。</p>
`
,
//
hint: `
//
<p>已毕业学生需提交完整成绩单,未毕业学生提交现有成绩单,成绩单需要加盖学校公章</p>
//
<p>请将中英文成绩单原件扫描或者拍照后提交。</p>
//
<p>获取途径:联系大学时就读学校相关部门(档案馆/教务处)获取成绩单。</p>
//
`,
items
:
[
{
label
:
'学位证书'
,
type
:
'v-upload'
,
model
:
'DIPLOMA_CN'
,
attrs
:
{
action
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/attachments/
${
process
.
env
.
projectId
}
/put`
,
deleteAction
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/attachments/
${
process
.
env
.
projectId
}
/delete`
,
data
:
{
file_type
:
'DIPLOMA_CN'
}
},
append
:
'申请者需要将本科和硕士学位证书原件扫描或者拍照后提交。<br> 可上传多个文件,请确保证书号码清晰可辨。<br> 上传文件仅限“jpg,jpeg,png”格式,文件小于10MB。'
},
{
type
:
'v-upload'
,
label
:
'中文成绩单'
,
...
...
modules/my/admission/form/ywjl.js
浏览文件 @
0c1b0c66
...
...
@@ -5,7 +5,16 @@ export default {
action
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/
${
process
.
env
.
projectId
}
`
,
callback
(
data
)
{
const
{
attachments
=
[],
submission_stage
:
submissionStage
=
'FILLING'
}
=
data
.
data
.
material
const
stageList
=
[
'FILLING'
,
'PREPAYMENT'
,
'INTERVIEW_APPLICATION'
,
'AUDITION'
,
'INTERVIEW'
,
'PAYMENT'
,
'REGISTRATION'
,
'CLOSED'
]
const
stageList
=
[
'FILLING'
,
'PREPAYMENT'
,
'INTERVIEW_APPLICATION'
,
'AUDITION'
,
'INTERVIEW'
,
'PAYMENT'
,
'REGISTRATION'
,
'CLOSED'
]
this
.
form
.
options
.
disabled
=
stageList
.
findIndex
(
item
=>
item
===
submissionStage
)
>
6
const
RESUME_EN
=
attachments
.
filter
(
item
=>
{
return
item
.
file_type_id
===
'RESUME_EN'
...
...
modules/my/application/complete.vue
浏览文件 @
0c1b0c66
...
...
@@ -71,11 +71,11 @@ export default {
// code: 'interviewXwzsEnglish',
// view: { to: { path: '/my/interview', query: { active: 'interview_xwzsywzm' } } }
// },
//
{
//
title: '英文简历',
//
code: 'interviewYwjl',
//
view: { to: { path: '/my/interview', query: { active: 'interview_ywjl' } } }
// },
{
title
:
'英文简历'
,
code
:
'interviewYwjl'
,
view
:
{
to
:
{
path
:
'/my/interview'
,
query
:
{
active
:
'interview_ywjl'
}
}
}
}
// {
// title: '成绩单',
// code: 'interviewCjd',
...
...
modules/my/interview/form/byzs.js
浏览文件 @
0c1b0c66
...
...
@@ -29,9 +29,12 @@ export default function(_this) {
if
(
item
.
file_type_id
===
'REPORT_CARD_CN'
)
{
result
.
REPORT_CARD_CN
.
push
(
item
)
}
if
(
item
.
file_type_id
===
'REPORT_CARD_EN'
)
{
result
.
REPORT_CARD_EN
.
push
(
item
)
}
return
result
},
{
...
basicInfo
,
DIPLOMA_CN
:
[],
REPORT_CARD_CN
:
[]
}
{
...
basicInfo
,
DIPLOMA_CN
:
[],
REPORT_CARD_CN
:
[]
,
REPORT_CARD_EN
:
[]
}
)
}
},
...
...
@@ -75,13 +78,23 @@ export default function(_this) {
'申请者需要将本科和硕士学位证书原件扫描或者拍照后提交。<br> 可上传多个文件,请确保证书号码清晰可辨。<br> 上传文件仅限“jpg,jpeg,png”格式,文件小于10MB。'
},
{
label
:
'成绩单'
,
label
:
'
中文
成绩单'
,
type
:
'v-upload'
,
model
:
'REPORT_CARD_CN'
,
attrs
:
{
action
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/attachments/
${
process
.
env
.
projectId
}
/put`
,
deleteAction
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/attachments/
${
process
.
env
.
projectId
}
/delete`
,
data
:
{
file_type
:
'REPORT_CARD_CN'
}
}
},
{
type
:
'v-upload'
,
label
:
'英文成绩单'
,
model
:
'REPORT_CARD_EN'
,
attrs
:
{
action
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/attachments/
${
process
.
env
.
projectId
}
/put`
,
deleteAction
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/attachments/
${
process
.
env
.
projectId
}
/delete`
,
data
:
{
file_type
:
'REPORT_CARD_EN'
}
},
append
:
'申请者需要将本科和硕士阶段的成绩单原件扫描或拍照后提交。<br> 可上传多个文件,请确保公章清晰可辨。<br> 上传文件仅限“jpg,jpeg,png”格式,文件小于10MB。'
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论