Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-old
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-old
Commits
1f88c244
提交
1f88c244
authored
11月 30, 2020
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
bug fixes
上级
ff81af6d
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
21 行增加
和
14 行删除
+21
-14
index.vue
src/pages/my/admission/index.vue
+1
-1
first.js
src/pages/my/application/form/info/first.js
+5
-4
profile.js
src/pages/my/application/form/info/profile.js
+13
-7
index.vue
src/pages/my/application/index.vue
+1
-1
index.vue
src/pages/my/interview/index.vue
+1
-1
没有找到文件。
src/pages/my/admission/index.vue
浏览文件 @
1f88c244
...
...
@@ -87,7 +87,7 @@ export default {
},
handlePageChange
(
value
)
{
this
.
currentActive
=
value
this
.
$router
.
push
({
path
:
this
.
$route
.
path
,
query
:
{
active
:
value
}
})
this
.
$router
.
push
({
path
:
this
.
$route
.
path
,
query
:
{
active
:
value
}
})
.
catch
(()
=>
{})
console
.
log
(
'页面切换了'
,
value
)
},
handleSuccess
(
data
)
{
...
...
src/pages/my/application/form/info/first.js
浏览文件 @
1f88c244
...
...
@@ -32,6 +32,7 @@ export default function(_this) {
},
{
ID_CARD_FRONT
:
[],
ID_CARD_BACK
:
[],
HK_ID_CARD
:
[],
PASSPORT
:
[],
OTHER_ID_CARD_PHOTO
:
[]
}
)
basicInfo
.
id_type
=
basicInfo
.
id_type
===
'护照'
?
'中国护照'
:
basicInfo
.
id_type
return
Object
.
assign
({},
basicInfo
,
attachment
)
}
},
...
...
@@ -125,10 +126,10 @@ export default function(_this) {
return
data
.
id_type
===
'港澳台身份证'
}
},
// 护照
//
中国
护照
{
type
:
'v-upload'
,
label
:
'护照'
,
label
:
'
中国
护照'
,
model
:
'PASSPORT'
,
attrs
:
{
action
:
`/api/enrollment/v1.0/application-materials/attachments/
${
webConf
.
others
.
projectId
}
/put`
,
...
...
@@ -137,9 +138,9 @@ export default function(_this) {
limit
:
1
,
accept
:
'image/*'
},
rules
:
[{
type
:
'array'
,
required
:
true
,
message
:
'请上传护照'
,
trigger
:
'change'
}],
rules
:
[{
type
:
'array'
,
required
:
true
,
message
:
'请上传
中国
护照'
,
trigger
:
'change'
}],
isShow
(
data
)
{
return
data
.
id_type
===
'护照'
return
data
.
id_type
===
'
中国
护照'
}
},
// 其他证件
...
...
src/pages/my/application/form/info/profile.js
浏览文件 @
1f88c244
...
...
@@ -34,6 +34,7 @@ export default function(_this) {
},
{
ID_CARD_FRONT
:
[],
ID_CARD_BACK
:
[],
HK_ID_CARD
:
[],
PASSPORT
:
[],
OTHER_ID_CARD_PHOTO
:
[]
}
)
basicInfo
.
id_type
=
basicInfo
.
id_type
===
'护照'
?
'中国护照'
:
basicInfo
.
id_type
return
Object
.
assign
({},
basicInfo
,
attachment
)
}
},
...
...
@@ -104,6 +105,7 @@ export default function(_this) {
deleteAction
:
`/api/enrollment/v1.0/application-materials/attachments/
${
webConf
.
others
.
projectId
}
/delete`
,
data
:
{
file_type
:
'ID_CARD_BACK'
},
limit
:
1
,
accept
:
'image/*'
,
image
:
'https://zws-imgs-pub.oss-cn-beijing.aliyuncs.com/pc/cu/id_card_back.png'
},
rules
:
[{
type
:
'array'
,
required
:
true
,
message
:
'请上传身份证照片人像面'
,
trigger
:
'change'
}],
...
...
@@ -121,6 +123,7 @@ export default function(_this) {
deleteAction
:
`/api/enrollment/v1.0/application-materials/attachments/
${
webConf
.
others
.
projectId
}
/delete`
,
data
:
{
file_type
:
'ID_CARD_FRONT'
},
limit
:
1
,
accept
:
'image/*'
,
image
:
'https://zws-imgs-pub.oss-cn-beijing.aliyuncs.com/pc/cu/id_card_front.png'
},
rules
:
[{
type
:
'array'
,
required
:
true
,
message
:
'请上传身份证照片国徽面'
,
trigger
:
'change'
}],
...
...
@@ -137,27 +140,29 @@ export default function(_this) {
action
:
`/api/enrollment/v1.0/application-materials/attachments/
${
webConf
.
others
.
projectId
}
/put`
,
deleteAction
:
`/api/enrollment/v1.0/application-materials/attachments/
${
webConf
.
others
.
projectId
}
/delete`
,
data
:
{
file_type
:
'HK_ID_CARD'
},
limit
:
1
limit
:
1
,
accept
:
'image/*'
},
rules
:
[{
type
:
'array'
,
required
:
true
,
message
:
'请上传港澳台身份证'
,
trigger
:
'change'
}],
isShow
(
data
)
{
return
data
.
id_type
===
'港澳台身份证'
}
},
// 护照
//
中国
护照
{
type
:
'v-upload'
,
label
:
'护照'
,
label
:
'
中国
护照'
,
model
:
'PASSPORT'
,
attrs
:
{
action
:
`/api/enrollment/v1.0/application-materials/attachments/
${
webConf
.
others
.
projectId
}
/put`
,
deleteAction
:
`/api/enrollment/v1.0/application-materials/attachments/
${
webConf
.
others
.
projectId
}
/delete`
,
data
:
{
file_type
:
'PASSPORT'
},
limit
:
1
limit
:
1
,
accept
:
'image/*'
},
rules
:
[{
type
:
'array'
,
required
:
true
,
message
:
'请上传护照'
,
trigger
:
'change'
}],
rules
:
[{
type
:
'array'
,
required
:
true
,
message
:
'请上传
中国
护照'
,
trigger
:
'change'
}],
isShow
(
data
)
{
return
data
.
id_type
===
'护照'
return
data
.
id_type
===
'
中国
护照'
}
},
// 其他证件
...
...
@@ -169,7 +174,8 @@ export default function(_this) {
action
:
`/api/enrollment/v1.0/application-materials/attachments/
${
webConf
.
others
.
projectId
}
/put`
,
deleteAction
:
`/api/enrollment/v1.0/application-materials/attachments/
${
webConf
.
others
.
projectId
}
/delete`
,
data
:
{
file_type
:
'OTHER_ID_CARD_PHOTO'
},
limit
:
1
limit
:
1
,
accept
:
'image/*'
},
rules
:
[{
type
:
'array'
,
required
:
true
,
message
:
'请上传其他证件'
,
trigger
:
'change'
}],
isShow
(
data
)
{
...
...
src/pages/my/application/index.vue
浏览文件 @
1f88c244
...
...
@@ -94,7 +94,7 @@ export default {
},
handlePageChange
(
value
)
{
this
.
currentActive
=
value
this
.
$router
.
push
({
path
:
this
.
$route
.
path
,
query
:
{
active
:
value
}
})
this
.
$router
.
push
({
path
:
this
.
$route
.
path
,
query
:
{
active
:
value
}
})
.
catch
(()
=>
{})
},
handleTabChange
(
value
)
{
this
.
tabActive
=
value
...
...
src/pages/my/interview/index.vue
浏览文件 @
1f88c244
...
...
@@ -98,7 +98,7 @@ export default {
},
handlePageChange
(
value
)
{
this
.
currentActive
=
value
this
.
$router
.
push
({
path
:
this
.
$route
.
path
,
query
:
{
active
:
value
}
})
this
.
$router
.
push
({
path
:
this
.
$route
.
path
,
query
:
{
active
:
value
}
})
.
catch
(()
=>
{})
console
.
log
(
'页面切换了'
,
value
)
},
handleSuccess
(
data
)
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论