Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
eb1ce76a
提交
eb1ce76a
authored
11月 25, 2021
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 修复报名申请#2387,#2391,#2392
上级
e4c9ef81
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
39 行增加
和
29 行删除
+39
-29
career.js
modules/my/application/form/info/career.js
+1
-1
pay.vue
modules/my/application/pay.vue
+1
-1
preview.vue
modules/my/application/preview.vue
+37
-27
没有找到文件。
modules/my/application/form/info/career.js
浏览文件 @
eb1ce76a
...
@@ -146,7 +146,7 @@ export default function(_this) {
...
@@ -146,7 +146,7 @@ export default function(_this) {
type
:
'v-input'
,
type
:
'v-input'
,
label
:
'年薪收入(万元)'
,
label
:
'年薪收入(万元)'
,
model
:
'annual_salary'
,
model
:
'annual_salary'
,
attrs
:
{
placeholder
:
'请输入您的年薪收入'
,
maxlength
:
'20'
},
attrs
:
{
placeholder
:
'请输入您的年薪收入'
,
type
:
'number'
,
maxlength
:
'20'
},
rules
:
[{
required
:
true
,
message
:
'请输入您的年薪收入'
,
trigger
:
'blur'
}]
rules
:
[{
required
:
true
,
message
:
'请输入您的年薪收入'
,
trigger
:
'blur'
}]
},
},
{
{
...
...
modules/my/application/pay.vue
浏览文件 @
eb1ce76a
...
@@ -53,7 +53,7 @@ export default {
...
@@ -53,7 +53,7 @@ export default {
},
},
// 支付成功
// 支付成功
paySuccess
()
{
paySuccess
()
{
return
this
.
order
.
payment_status
===
'SUCCESS'
return
this
.
order
.
payment_status
===
'SUCCESS'
||
this
.
dialogVisible
},
},
// 待支付订单
// 待支付订单
orderList
()
{
orderList
()
{
...
...
modules/my/application/preview.vue
浏览文件 @
eb1ce76a
...
@@ -50,29 +50,7 @@
...
@@ -50,29 +50,7 @@
</dl>
</dl>
</div>
</div>
</template>
</template>
<
template
v-else
>
<
template
v-else-if=
"item.code === 'attachments'"
>
<div
class=
"group"
>
<dl
v-for=
"subitem in item.items"
:key=
"subitem.code"
>
<dt>
{{
subitem
.
label
}}
:
</dt>
<dd>
<template
v-if=
"subitem.computed"
>
<div
v-html=
"subitem.computed(material[item.code])"
></div>
</
template
>
<
template
v-else
>
{{
material
[
item
.
code
][
subitem
.
code
]
}}
</
template
>
</dd>
</dl>
</div>
</template>
</div>
</div>
</template>
<div
class=
"preview-item is-success"
v-if=
"isManager"
>
<div
class=
"preview-item-hd"
>
<div
class=
"title"
>
照片/附件
</div>
<div
class=
"line"
></div>
</div>
<div
class=
"preview-item-bd"
>
<
template
v-if=
"material.attachments"
>
<ul
class=
"attachments"
>
<ul
class=
"attachments"
>
<li
class=
"attachments-item"
v-for=
"(item, index) in material.attachments"
:key=
"index"
>
<li
class=
"attachments-item"
v-for=
"(item, index) in material.attachments"
:key=
"index"
>
<div
class=
"inner"
@
click=
"handlePreview(item)"
>
<div
class=
"inner"
@
click=
"handlePreview(item)"
>
...
@@ -90,11 +68,36 @@
...
@@ -90,11 +68,36 @@
<el-button
size=
"mini"
:disabled=
"item.status === 'INACTIVE'"
@
click=
"handleRemove(item)"
<el-button
size=
"mini"
:disabled=
"item.status === 'INACTIVE'"
@
click=
"handleRemove(item)"
>
删除
</el-button
>
删除
</el-button
>
>
<el-button
size=
"mini"
:disabled=
"item.status === 'LOG'"
@
click=
"handleSave(item)"
>
存档
</el-button>
<el-button
size=
"mini"
:disabled=
"item.status === 'LOG'"
@
click=
"handleSave(item)"
>
存档
</el-button
>
</el-button-group>
</el-button-group>
</li>
</li>
</ul>
</ul>
</template>
</template>
<
template
v-else
>
<div
class=
"group"
>
<dl
v-for=
"subitem in item.items"
:key=
"subitem.code"
>
<dt>
{{
subitem
.
label
}}
:
</dt>
<dd>
<template
v-if=
"subitem.computed"
>
<div
v-html=
"subitem.computed(material[item.code])"
></div>
</
template
>
<
template
v-else
>
{{
material
[
item
.
code
][
subitem
.
code
]
}}
</
template
>
</dd>
</dl>
</div>
</template>
</div>
</div>
</template>
<div
class=
"preview-item is-success"
>
<div
class=
"preview-item-hd"
>
<div
class=
"title"
>
照片/附件
</div>
<div
class=
"line"
></div>
</div>
<div
class=
"preview-item-bd"
>
<
template
v-if=
"material.attachments"
>
</
template
>
</div>
</div>
</div>
</div>
<div
class=
"preview-item is-success"
v-if=
"isManager"
>
<div
class=
"preview-item is-success"
v-if=
"isManager"
>
...
@@ -307,8 +310,15 @@ export default {
...
@@ -307,8 +310,15 @@ export default {
items
:
[
items
:
[
{
label
:
'获取时间'
,
code
:
'time'
},
{
label
:
'获取时间'
,
code
:
'time'
},
{
label
:
'荣誉奖励'
,
code
:
'title'
},
{
label
:
'荣誉奖励'
,
code
:
'title'
},
{
label
:
'
证书颁发
机构'
,
code
:
'institution_cn'
}
{
label
:
'
授予
机构'
,
code
:
'institution_cn'
}
]
]
},
{
title
:
'照片/附件'
,
code
:
'attachments'
,
edit
:
{
to
:
{
path
:
'/my/application'
,
query
:
{
active
:
'application_info'
,
tab
:
'application_info_attachment'
}
}
}
}
}
// {
// {
// title: '推荐信',
// title: '推荐信',
...
@@ -360,8 +370,8 @@ export default {
...
@@ -360,8 +370,8 @@ export default {
if
(
error
.
toString
()
===
'0'
)
{
if
(
error
.
toString
()
===
'0'
)
{
const
{
material
,
progress
}
=
data
const
{
material
,
progress
}
=
data
this
.
material
=
material
this
.
material
=
material
const
missedRequiredList
=
progress
.
FILLING
.
attachments
.
missed_required_list
//
const missedRequiredList = progress.FILLING.attachments.missed_required_list
progress
.
FILLING
.
attachments
.
progress
=
missedRequiredList
.
NO_CRIMINAL_CERT
?
0
:
1
//
progress.FILLING.attachments.progress = missedRequiredList.NO_CRIMINAL_CERT ? 0 : 1
this
.
progress
=
progress
this
.
progress
=
progress
}
else
{
}
else
{
this
.
$message
.
error
(
message
)
this
.
$message
.
error
(
message
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论