Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
project-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
project-online-pc
Commits
9033119a
提交
9033119a
authored
8月 22, 2022
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: update
上级
cd6ec4fa
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
30 行增加
和
2 行删除
+30
-2
declare.js
modules/my/application/form/declare.js
+3
-1
index.vue
modules/my/application/index.vue
+27
-1
没有找到文件。
modules/my/application/form/declare.js
浏览文件 @
9033119a
...
...
@@ -16,6 +16,7 @@ export default function(_this) {
const
isSubmited
=
submissionStage
!==
'FILLING'
this
.
form
.
options
.
disabled
=
isSubmited
if
(
isSubmited
)
{
_this
.
submittedVisible
=
true
return
{
isAgree
:
[
1
]
}
}
return
{
isAgree
:
[]
}
...
...
@@ -27,7 +28,8 @@ export default function(_this) {
_this
.
getApplication
()
this
.
form
.
options
.
disabled
=
true
// _this.$router.push({ path: this.$route.path, query: { active: 'application_pay' } })
_this
.
$router
.
push
({
path
:
'/my/interview'
})
// _this.$router.push({ path: '/my/interview' })
_this
.
submittedVisible
=
true
},
errorCallback
()
{
_this
.
completeVisible
=
true
...
...
modules/my/application/index.vue
浏览文件 @
9033119a
...
...
@@ -49,6 +49,16 @@
<app-preview
:hasEdit=
"true"
@
edit=
"handlePreviewEdit"
v-if=
"dialogVisible"
/>
</el-dialog>
<app-complete
v-model=
"completeVisible"
></app-complete>
<el-dialog
:visible
.
sync=
"submittedVisible"
:center=
"true"
:close-on-click-modal=
"false"
width=
"348px"
>
<div
class=
"dialog-pay"
>
<p>
请填写申请面试的材料,材料齐全后
<br
/>
招生办老师将给您致电预约面试日期与时间
</p>
<div
class=
"icon"
><img
src=
"https://webapp-pub.ezijing.com/project/application/images/icon_success.png"
/></div>
</div>
<
template
#
footer
>
<el-button
type=
"primary"
@
click=
"toInterview"
>
立即预约
</el-button>
</
template
>
</el-dialog>
</app-layout>
</template>
...
...
@@ -72,7 +82,8 @@ export default {
tabActive
:
'application_info_profile'
,
dialogVisible
:
false
,
detail
:
null
,
completeVisible
:
false
completeVisible
:
false
,
submittedVisible
:
false
}
},
watch
:
{
...
...
@@ -169,6 +180,10 @@ export default {
this
.
$message
.
error
(
message
)
}
})
},
// 申请面试
toInterview
()
{
this
.
$router
.
push
(
'/my/interview'
)
}
},
beforeMount
()
{
...
...
@@ -191,4 +206,15 @@ export default {
padding
:
0
;
}
}
.dialog-pay
{
text-align
:
center
;
p
{
color
:
#262626
;
line-height
:
20px
;
}
.icon
{
margin-top
:
20px
;
text-align
:
center
;
}
}
</
style
>
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论