Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
8d548990
提交
8d548990
authored
2月 01, 2024
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: update
上级
e613767c
显示空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
74 行增加
和
36 行删除
+74
-36
complete.vue
modules/my/application/complete.vue
+28
-0
byzs.js
modules/my/interview/form/byzs.js
+1
-0
cjd.js
modules/my/interview/form/cjd.js
+13
-16
form.js
modules/my/interview/form/form.js
+3
-2
grcs.js
modules/my/interview/form/grcs.js
+1
-0
index.js
modules/my/interview/form/index.js
+11
-2
tjx.js
modules/my/interview/form/tjx.js
+2
-1
yynl.js
modules/my/interview/form/yynl.js
+2
-2
index.js
modules/my/review/form/index.js
+8
-8
xy.js
modules/my/review/form/xy.js
+3
-3
index.vue
modules/my/review/index.vue
+2
-2
没有找到文件。
modules/my/application/complete.vue
浏览文件 @
8d548990
...
...
@@ -56,6 +56,7 @@ export default {
title
:
'成绩单'
,
code
:
[
'INTERVIEW_APPLICATION.attachments.missed_required_list.REPORT_CARD_CN'
,
'INTERVIEW_APPLICATION.attachments.missed_required_list.REPORT_CARD_EN'
,
'INTERVIEW_APPLICATION.basic_info.missed_required_list.gpa_score'
,
'INTERVIEW_APPLICATION.basic_info.missed_required_list.average_score'
],
...
...
@@ -65,6 +66,33 @@ export default {
title
:
'语言能力证明'
,
code
:
'INTERVIEW_APPLICATION.attachments.missed_required_list.INTERNATIONAL_LANGUAGE_SCORE'
,
view
:
{
to
:
{
path
:
'/my/interview'
,
query
:
{
active
:
'interview_yynl'
}
}
}
},
{
title
:
'推荐信'
,
code
:
[
'INTERVIEW_APPLICATION.attachments.missed_required_list.RECOMMENDATION_LETTER'
,
'INTERVIEW_APPLICATION.attachments.missed_required_list.RECOMMENDATION_LETTER_2'
],
view
:
{
to
:
{
path
:
'/my/interview'
,
query
:
{
active
:
'interview_tjx'
}
}
}
},
{
title
:
'个人陈述'
,
code
:
'INTERVIEW_APPLICATION.attachments.missed_required_list.PERSONAL_STATEMENT'
,
view
:
{
to
:
{
path
:
'/my/interview'
,
query
:
{
active
:
'interview_grcs'
}
}
}
},
{
title
:
'毕业证或在读证明'
,
code
:
[
'INTERVIEW_APPLICATION.attachments.missed_required_list.DIPLOMA_CN'
,
'INTERVIEW_APPLICATION.attachments.missed_required_list.DEGREE_CERT_CN'
,
'INTERVIEW_APPLICATION.attachments.missed_required_list.PROOF_READING'
],
view
:
{
to
:
{
path
:
'/my/interview'
,
query
:
{
active
:
'interview_byzs'
}
}
}
},
{
title
:
'申请表格'
,
code
:
'INTERVIEW_APPLICATION.attachments.missed_required_list.APPLICATION_FORM'
,
view
:
{
to
:
{
path
:
'/my/interview'
,
query
:
{
active
:
'interview_form'
}
}
}
}
],
[
...
...
modules/my/interview/form/byzs.js
浏览文件 @
8d548990
import
{
STAGE_LIST
}
from
'../../index'
export
default
function
(
_this
)
{
return
{
required
:
true
,
id
:
'interview_byzs'
,
title
:
'毕业证书或在读证明'
,
get
:
{
...
...
modules/my/interview/form/cjd.js
浏览文件 @
8d548990
...
...
@@ -7,11 +7,7 @@ export default function(_this) {
get
:
{
action
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/
${
process
.
env
.
projectId
}
`
,
callback
(
data
)
{
const
{
basic_info
:
basicInfo
=
{},
attachments
=
[],
submission_stage
:
submissionStage
=
'FILLING'
}
=
data
.
data
.
material
const
{
basic_info
:
basicInfo
=
{},
attachments
=
[],
submission_stage
:
submissionStage
=
'FILLING'
}
=
data
.
data
.
material
this
.
form
.
options
.
disabled
=
STAGE_LIST
.
findIndex
(
item
=>
item
===
submissionStage
)
>
2
const
attachment
=
attachments
.
reduce
(
...
...
@@ -68,22 +64,23 @@ export default function(_this) {
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'
}
}
},
{
required
:
true
,
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
:
`
<p>已毕业学生需提交完整成绩单,未毕业学生提交现有成绩单,成绩单需要加盖学校公章</p>
<p>请将
中文
成绩单原件扫描或者拍照后提交。</p>
<p>请将成绩单原件扫描或者拍照后提交。</p>
<p>获取途径:联系大学时就读学校相关部门(档案馆/教务处)获取成绩单。</p>`
}
// {
// 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' }
// }
// }
]
}
}
...
...
modules/my/interview/form/form.js
浏览文件 @
8d548990
import
{
STAGE_LIST
}
from
'../../index'
export
default
function
(
_this
)
{
return
{
required
:
true
,
id
:
'interview_form'
,
title
:
'申请表格'
,
get
:
{
...
...
@@ -26,9 +27,9 @@ export default function(_this) {
return
{
submission_stage
:
'INTERVIEW_APPLICATION'
}
},
callback
()
{
_this
.
changeSubmissionStage
(()
=>
{
this
.
form
.
options
.
disabled
=
true
_this
.
dialogVisible
=
true
_this
.
getApplication
()
})
},
errorCallback
()
{
_this
.
completeVisible
=
true
...
...
modules/my/interview/form/grcs.js
浏览文件 @
8d548990
import
{
STAGE_LIST
}
from
'../../index'
export
default
function
(
_this
)
{
return
{
required
:
true
,
id
:
'interview_grcs'
,
title
:
'个人陈述'
,
get
:
{
...
...
modules/my/interview/form/index.js
浏览文件 @
8d548990
...
...
@@ -16,8 +16,17 @@ export default function(_this) {
children
:
[
ywjl
(
_this
),
cjd
(
_this
),
yynl
(
_this
)
// , ywcjd(_this), tjx(_this), grcs(_this), byzs(_this), form(_this)
yynl
(
_this
),
tjx
(
_this
),
grcs
(
_this
),
byzs
(
_this
),
form
(
_this
),
// {
// required: true,
// id: 'application_pay',
// title: '缴报名费'
// }
// ywcjd(_this), tjx(_this), grcs(_this), byzs(_this), form(_this)
]
}
}
modules/my/interview/form/tjx.js
浏览文件 @
8d548990
import
{
STAGE_LIST
}
from
'../../index'
export
default
function
(
_this
)
{
return
{
required
:
true
,
id
:
'interview_tjx'
,
title
:
'推荐信'
,
get
:
{
...
...
@@ -39,7 +40,7 @@ export default function(_this) {
// }
// },
form
:
{
prev
:
{
to
:
{
query
:
{
active
:
'interview_y
wcjd
'
}
}
},
prev
:
{
to
:
{
query
:
{
active
:
'interview_y
ynl
'
}
}
},
next
:
{
to
:
{
query
:
{
active
:
'interview_grcs'
}
}
},
hasButton
:
false
,
// submitText: '申请面试',
...
...
modules/my/interview/form/yynl.js
浏览文件 @
8d548990
...
...
@@ -43,9 +43,9 @@ export default function(_this) {
},
form
:
{
prev
:
{
to
:
{
query
:
{
active
:
'interview_cjd'
}
},
isSubmit
:
true
},
// next: { to: { query: { active: 'interview_form
' } }, isSubmit: true },
next
:
{
to
:
{
query
:
{
active
:
'interview_tjx
'
}
},
isSubmit
:
true
},
submitText
:
'申请面试'
,
//
hasButton: false,
hasButton
:
false
,
model
:
{
submission_stage
:
'INTERVIEW_APPLICATION'
},
options
:
{
'label-position'
:
'top'
},
items
:
[
...
...
modules/my/review/form/index.js
浏览文件 @
8d548990
...
...
@@ -13,18 +13,18 @@ export default function(_this) {
id
:
'admission'
,
title
:
'综合评审'
,
children
:
[
cjd
(
_this
),
tjx
(
_this
),
grcs
(
_this
),
byzs
(
_this
),
form
(
_this
),
//
cjd(_this),
//
tjx(_this),
//
grcs(_this),
//
byzs(_this),
//
form(_this),
{
required
:
true
,
id
:
'application_pay'
,
title
:
'缴纳留位费'
,
visible
()
{
return
_this
.
hasPay
}
//
visible() {
//
return _this.hasPay
//
}
},
xy
(
_this
)
]
...
...
modules/my/review/form/xy.js
浏览文件 @
8d548990
...
...
@@ -5,9 +5,9 @@ export default function(_this) {
required
:
true
,
id
:
'admission_xy'
,
title
:
'入学协议'
,
visible
()
{
return
_this
.
hasPay
},
//
visible() {
//
return _this.hasPay
//
},
get
:
{
action
:
`
${
process
.
env
.
baseURL
}
/api/enrollment/v1.0/application-materials/
${
process
.
env
.
projectId
}
`
,
callback
(
data
)
{
...
...
modules/my/review/index.vue
浏览文件 @
8d548990
...
...
@@ -53,7 +53,7 @@ export default {
const
menus
=
getMenu
(
this
)
return
{
menus
:
[
menus
],
currentActive
:
'a
dmission_cjd
'
,
currentActive
:
'a
pplication_pay
'
,
dialogVisible
:
false
,
detail
:
null
,
completeVisible
:
false
,
...
...
@@ -65,7 +65,7 @@ export default {
immediate
:
true
,
handler
(
route
)
{
const
{
query
=
{}
}
=
route
this
.
currentActive
=
query
.
active
||
'a
dmission_cjd
'
this
.
currentActive
=
query
.
active
||
'a
pplication_pay
'
}
},
showSubmittedDialog
(
value
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论