Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-professional-exam
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.education.frontend
pica-professional-exam
提交
6877a4e5
提交
6877a4e5
编写于
12月 19, 2019
作者:
guangjun.yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
状态样式等
上级
7bb4abbb
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
34 行增加
和
13 行删除
+34
-13
credit-detail.vue
src/views/credit-detail.vue
+9
-6
credit-edit.vue
src/views/credit-edit.vue
+25
-7
未找到文件。
src/views/credit-detail.vue
浏览文件 @
6877a4e5
...
...
@@ -88,21 +88,22 @@ export default {
isShowNavbar
:
true
,
isFixNavbar
:
false
,
pointStyle
:
"activity"
,
// buttonStyleType: "primary",
// 我的进度状态 0: 未学习 1: 学习中 2:待申请 3:已申请审核中 4:审核失败 5:审核成功 6: 已获证
// 1: 学习中 continue 不显示用户信息 不显示提示信息
// 2: 学习已经完成 completed 不显示用户信息 不显示提示信息
// 3:审核中 continue 显示用户信息 预计2019年12月10日前有反馈结果
// 4: 审核失败 error 显示用户信息 您提交的信息不准确,请重新提交或联系云鹊医官方客服
// 5: 审核通过 continue 不显示用户信息 不显示提示信息
status
:
4
,
status
:
5
,
statusStyle
:
"continue"
,
statusText
:
"学习中"
,
statusDescText
:
""
,
needShowTips
:
false
,
needShowUserInfo
:
true
,
needShowBtn
:
false
,
btnText
:
"
重新提交
"
btnText
:
"
去学习
"
};
},
created
()
{
...
...
@@ -115,17 +116,18 @@ export default {
this
.
statusDescText
=
''
;
this
.
statusText
=
"学习中"
;
this
.
statusStyle
=
'continue'
;
this
.
needShowBtn
=
false
;
this
.
needShowBtn
=
true
;
this
.
btnText
=
'去学习'
;
if
(
status
==
1
)
{
}
else
if
(
status
==
2
){
this
.
needShowBtn
=
true
;
this
.
statusText
=
"学习已经完成"
;
this
.
btnText
=
'申请学分'
;
this
.
statusStyle
=
'completed'
;
}
else
if
(
status
==
3
){
this
.
needShowUserInfo
=
true
;
this
.
needShowTips
=
true
;
this
.
needShowBtn
=
false
;
this
.
statusText
=
"审核中"
;
this
.
statusDescText
=
'预计2019年12月10日前有反馈结果'
;
}
else
if
(
status
==
4
){
...
...
@@ -133,10 +135,11 @@ export default {
this
.
needShowTips
=
true
;
this
.
statusText
=
"审核失败"
;
this
.
statusStyle
=
'error'
;
this
.
needShowBtn
=
true
;
this
.
btnText
=
'重新提交'
;
this
.
statusDescText
=
'您提交的信息不准确,请重新提交或联系云鹊医官方客服'
;
}
else
if
(
status
==
5
){
this
.
needShowUserInfo
=
true
;
this
.
needShowBtn
=
false
;
this
.
statusText
=
"审核通过"
;
}
},
...
...
src/views/credit-edit.vue
浏览文件 @
6877a4e5
...
...
@@ -12,9 +12,9 @@
:backMethod=
"from"
></CommonNavbar>
<van-cell-group
style=
"margin: 10px 15px;"
>
<van-field
label-width=
"150"
v-model=
"
userN
ame"
label=
"姓名"
placeholder=
"请填写您的姓名"
/>
<van-field
label-width=
"150"
v-model=
"
idCardId
"
label=
"身份证号"
placeholder=
"请填写您的真实身份证号"
/>
<van-field
label-width=
"150"
v-model=
"
icCardId
"
label=
"继续医学教育IC卡号"
placeholder=
"请填写您的IC卡号"
/>
<van-field
label-width=
"150"
v-model=
"
formData.n
ame"
label=
"姓名"
placeholder=
"请填写您的姓名"
/>
<van-field
label-width=
"150"
v-model=
"
formData.idCardNumber
"
label=
"身份证号"
placeholder=
"请填写您的真实身份证号"
/>
<van-field
label-width=
"150"
v-model=
"
formData.icCardNumber
"
label=
"继续医学教育IC卡号"
placeholder=
"请填写您的IC卡号"
/>
</van-cell-group>
<div
class=
"credit-edit-tips"
>
您的身份证号将用于生成项目学分证书对应的编号,请确保您所填写的身份证号的真实性
...
...
@@ -35,9 +35,13 @@ export default {
},
data
()
{
return
{
userName
:
""
,
idCardId
:
""
,
icCardId
:
""
,
formData
:
{
creditId
:
''
,
id
:
''
,
name
:
""
,
idCardNumber
:
""
,
icCardNumber
:
""
,
},
from
:
"outer"
,
isBlack
:
true
,
bgColor
:
"#fff"
,
...
...
@@ -50,10 +54,24 @@ export default {
isShowDialog
:
false
};
},
created
()
{
this
.
formData
.
id
=
this
.
$route
&&
this
.
$route
.
query
&&
this
.
$route
.
query
.
id
||
393
},
methods
:
{
handlerDialogAction
(
type
)
{
this
.
isShowDialog
=
false
;
}
},
applyCredit
()
{
let
_this
=
this
;
let
param
=
{
portalProjectId
:
projectId
,
token
:
_this
.
userInfo
.
userToken
,
setEntry
:
true
};
this
.
GET
(
"cme/credit/apply"
,
param
).
then
(
res
=>
{
})
}
},
};
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录