Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
1f9c3977
提交
1f9c3977
编写于
3月 16, 2019
作者:
Yuanzhao.dai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
结束随访
上级
3d5a1eac
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
43 行增加
和
26 行删除
+43
-26
element-reset.css
src/style/followup/element-reset.css
+4
-0
finish-followup.vue
src/views/followup/plan-manage/dialog/finish-followup.vue
+39
-26
未找到文件。
src/style/followup/element-reset.css
浏览文件 @
1f9c3977
...
@@ -41,3 +41,7 @@
...
@@ -41,3 +41,7 @@
.el-checkbox__input.is-focus
,
.el-checkbox__inner
:hover
,
.el-checkbox__inner.is-focus
{
.el-checkbox__input.is-focus
,
.el-checkbox__inner
:hover
,
.el-checkbox__inner.is-focus
{
border-color
:
#449284
!important
;
border-color
:
#449284
!important
;
}
}
/*重置textarea聚焦样式*/
.el-textarea__inner
:focus
{
border-color
:
#449284
!important
;
}
src/views/followup/plan-manage/dialog/finish-followup.vue
浏览文件 @
1f9c3977
<
template
>
<
template
>
<div
class=
"finish-followup"
v-if=
"showThisPage"
>
<div
class=
"finish-followup"
v-if=
"showThisPage"
>
<el-dialog
<el-dialog
title=
"
变更计划
"
title=
"
结束随访
"
:visible
.
sync=
"showFinishFollowup"
:visible
.
sync=
"showFinishFollowup"
v-if=
"showThisPage"
v-if=
"showThisPage"
:before-close=
"clickClose"
:before-close=
"clickClose"
width=
"30%"
center
>
center
>
<div
class=
"finish-content"
>
<div
class=
"finish-content"
>
<div
class=
"content-div"
>
<el-form
<div
class=
"c-title"
>
居民:
</div>
:model=
"finishData"
<div
class=
"c-content"
>
戴佳康;戴佳康;戴佳康;戴佳康等20人
</div>
:rules=
"rules"
</div>
label-width=
"85px"
>
<div
class=
"content-div"
>
<el-form-item
label=
"居民:"
>
<div
class=
"c-title"
>
结束原因:
</div>
{{
finishData
.
patientName
}}
<div
class=
"c-content"
></div>
</el-form-item>
</div>
<el-form-item
label=
"结束原因:"
prop=
"finishReason"
>
<el-input
type=
"textarea"
v-model=
"finishData.finishReason"
placeholder=
"请输入原因"
maxlength=
"30"
rows=
"3"
resize=
"none"
></el-input>
</el-form-item>
</el-form>
</div>
</div>
<span
slot=
"footer"
class=
"dialog-footer"
>
<span
slot=
"footer"
class=
"dialog-footer"
>
<el-button
class=
"button-green"
@
click=
"clickClose"
type=
"primary"
>
取 消
</el-button>
<el-button
class=
"button-green"
@
click=
"clickClose"
type=
"primary"
>
取 消
</el-button>
...
@@ -25,8 +35,12 @@
...
@@ -25,8 +35,12 @@
</
template
>
</
template
>
<
script
>
<
script
>
import
customTextarea
from
"@/components/followup/customTextarea"
;
export
default
{
export
default
{
name
:
"finish-followup"
,
name
:
"finish-followup"
,
components
:
{
customTextarea
},
props
:
{
props
:
{
showThisPage
:
{
//是否显示model
showThisPage
:
{
//是否显示model
type
:
Boolean
,
type
:
Boolean
,
...
@@ -34,39 +48,38 @@
...
@@ -34,39 +48,38 @@
return
false
;
return
false
;
}
}
},
},
planChange
Data
:
{
finish
Data
:
{
type
:
Object
,
type
:
Object
,
default
:
function
()
{
default
:
function
()
{
return
{};
return
{};
}
}
},
}
groupOption
:
{
type
:
Array
,
default
:
function
()
{
return
[];
}
},
planOption
:
{
type
:
Array
,
default
:
function
()
{
return
[];
}
},
},
},
data
()
{
data
()
{
return
{
return
{
showFinishFollowup
:
true
showFinishFollowup
:
true
,
rules
:
{
finishReason
:
[
{
required
:
true
,
message
:
'请输入结束原因'
,
trigger
:
'blur'
},
{
min
:
1
,
max
:
30
,
message
:
'长度在30个字符内'
,
trigger
:
'blur'
}
],
}
}
}
},
},
methods
:
{
methods
:
{
clickClose
()
{
clickClose
()
{
this
.
$emit
(
'closeFinishFollowup'
,
false
)
this
.
$emit
(
'closeFinishFollowup'
,
false
)
}
}
,
}
}
}
}
</
script
>
</
script
>
<
style
scoped
>
.el-input__inner
:disabled
{
background-color
:
#ffffff
!important
;
}
</
style
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
@import
'../../../../style/followup/followup-common'
;
@import
'../../../../style/followup/followup-common'
;
@import
'../../../../style/followup/element-reset.css'
;
@import
'../../../../style/followup/element-reset.css'
;
</
style
>
</
style
>
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录