Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica.cloud.web-education-admin
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
提交
打开侧边栏
com.pica.cloud.education.frontend
pica.cloud.web-education-admin
提交
042b209e
提交
042b209e
编写于
8月 28, 2019
作者:
chengxiang.li
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'dev-icd-20190806' into release
上级
c6172a63
3f846bf2
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
6 行增加
和
6 行删除
+6
-6
addDiagnose.vue
src/components/icd/addDiagnose.vue
+5
-5
edit-information.vue
...atients/mypatients-manage/components/edit-information.vue
+1
-1
未找到文件。
src/components/icd/addDiagnose.vue
浏览文件 @
042b209e
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<span
class=
"close-btn el-icon-close"
@
click=
"hideSelf"
></span>
<span
class=
"close-btn el-icon-close"
@
click=
"hideSelf"
></span>
<p
class=
"title-text"
>
添加诊断
</p>
<p
class=
"title-text"
>
添加诊断
</p>
<div
class=
"search-input"
>
<div
class=
"search-input"
>
<el-input
v-model=
"searchInput"
placeholder=
"搜索
疾病
"
class=
"search-disease"
@
input=
"handleInputSearch"
@
blur=
"handleSearchListBlur"
></el-input>
<el-input
v-model=
"searchInput"
placeholder=
"搜索
诊断
"
class=
"search-disease"
@
input=
"handleInputSearch"
@
blur=
"handleSearchListBlur"
></el-input>
</div>
</div>
<div
class=
"main-content"
>
<div
class=
"main-content"
>
<div
class=
"left-box left"
>
<div
class=
"left-box left"
>
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
infinite-scroll-immediate-check=
"false"
infinite-scroll-immediate-check=
"false"
>
>
<ul
class=
"search-list"
>
<ul
class=
"search-list"
>
<li
v-for=
"(searchLi, index) in searchList"
@
mousedown
.
prevent
=
"handleSearchLiClick(searchLi)"
>
<li
v-for=
"(searchLi, index) in searchList"
@
mousedown=
"handleSearchLiClick(searchLi)"
>
<div
class=
"left"
>
<div
class=
"left"
>
<p
class=
"disease-name"
v-html=
"searchLi.diseaseName"
></p>
<p
class=
"disease-name"
v-html=
"searchLi.diseaseName"
></p>
<div
class=
"one-line"
>
<div
class=
"one-line"
>
...
@@ -81,7 +81,7 @@
...
@@ -81,7 +81,7 @@
:visible
.
sync=
"limitTipsVisible"
:visible
.
sync=
"limitTipsVisible"
width=
"400px"
width=
"400px"
center
>
center
>
<span>
最多只能选择20种
疾病
</span>
<span>
最多只能选择20种
诊断
</span>
<span
slot=
"footer"
class=
"dialog-footer"
>
<span
slot=
"footer"
class=
"dialog-footer"
>
<!--
<el-button
type=
"primary"
>
我知道了
</el-button>
-->
<!--
<el-button
type=
"primary"
>
我知道了
</el-button>
-->
<div
class=
"know-confirm"
@
mousedown
.
prevent=
"hideNumLimitTips"
>
我知道了
</div>
<div
class=
"know-confirm"
@
mousedown
.
prevent=
"hideNumLimitTips"
>
我知道了
</div>
...
@@ -163,7 +163,7 @@
...
@@ -163,7 +163,7 @@
return
this
.
hasItem
(
this
.
choosedList
,
item
)
>
-
1
?
true
:
false
;
return
this
.
hasItem
(
this
.
choosedList
,
item
)
>
-
1
?
true
:
false
;
},
},
handleSearchLiClick
(
item
)
{
handleSearchLiClick
(
item
)
{
this
.
searchInput
=
''
;
let
hasIndex
=
this
.
hasItem
(
this
.
choosedList
,
item
);
let
hasIndex
=
this
.
hasItem
(
this
.
choosedList
,
item
);
if
(
hasIndex
>
-
1
){
if
(
hasIndex
>
-
1
){
this
.
choosedList
.
splice
(
hasIndex
,
1
);
this
.
choosedList
.
splice
(
hasIndex
,
1
);
...
@@ -304,7 +304,7 @@
...
@@ -304,7 +304,7 @@
let
list
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
choosedList
));
let
list
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
choosedList
));
this
.
$store
.
dispatch
(
'patientsDiagnose/changeDiagnoseList'
,
list
)
this
.
$store
.
dispatch
(
'patientsDiagnose/changeDiagnoseList'
,
list
)
this
.
showDiagnoseModal
=
false
;
this
.
showDiagnoseModal
=
false
;
this
.
searchInput
=
=
''
;
this
.
searchInput
=
''
;
this
.
searchList
=
[];
this
.
searchList
=
[];
},
},
handleClose
(
tag
)
{
handleClose
(
tag
)
{
...
...
src/views/patients/mypatients-manage/components/edit-information.vue
浏览文件 @
042b209e
...
@@ -49,7 +49,7 @@
...
@@ -49,7 +49,7 @@
:value=
"item.diseaseId"
>
:value=
"item.diseaseId"
>
</el-option>
</el-option>
</el-select>
-->
</el-select>
-->
<el-button
icon=
"el-icon-plus"
@
click=
"handleAddDiagnose"
>
添加诊断
</el-button>
<el-button
icon=
"el-icon-plus"
@
click=
"handleAddDiagnose"
>
{{
selectedDiagList
&&
selectedDiagList
.
length
>
0
?
'修改诊断'
:
'添加诊断'
}}
</el-button>
<ul
class=
"final-diagnose-list"
v-if=
"selectedDiagList && selectedDiagList.length > 0"
>
<ul
class=
"final-diagnose-list"
v-if=
"selectedDiagList && selectedDiagList.length > 0"
>
<li
v-for=
"diagnose in selectedDiagList"
v-html=
"diagnose.alias ? diagnose.alias+'; ' : diagnose.diseaseName+'; '"
></li>
<li
v-for=
"diagnose in selectedDiagList"
v-html=
"diagnose.alias ? diagnose.alias+'; ' : diagnose.diseaseName+'; '"
></li>
</ul>
</ul>
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录