Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-admin-consultation
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
jingqi.liu
pica-admin-consultation
提交
e348bfc2
提交
e348bfc2
编写于
4月 13, 2022
作者:
qian.jie
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加筛选
上级
f822cf75
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
59 行增加
和
2 行删除
+59
-2
diagnosis-doctor.vue
src/components/common/diagnosis-doctor.vue
+14
-1
diagnosis-time.vue
src/components/common/diagnosis-time.vue
+19
-1
diagnosis-list-new.vue
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
+26
-0
未找到文件。
src/components/common/diagnosis-doctor.vue
浏览文件 @
e348bfc2
...
@@ -162,6 +162,10 @@
...
@@ -162,6 +162,10 @@
type
:
Number
,
type
:
Number
,
default
:
0
,
default
:
0
,
},
},
consultRoad
:
{
type
:
String
,
default
:
''
,
},
doctorId
:
{
doctorId
:
{
type
:
[
Number
,
String
],
type
:
[
Number
,
String
],
default
:
0
,
default
:
0
,
...
@@ -272,11 +276,20 @@
...
@@ -272,11 +276,20 @@
this
.
getLeisureTime
(
this
.
chooseTime
);
this
.
getLeisureTime
(
this
.
chooseTime
);
},
},
getLeisureTime
(
chooseTime
)
{
getLeisureTime
(
chooseTime
)
{
console
.
log
(
this
.
doctorInfo
);
let
consultRoadType
=
''
;
if
(
this
.
consultRoad
==
'向上问诊'
)
{
consultRoadType
=
0
;
}
else
if
(
this
.
consultRoad
==
'中医实践'
)
{
consultRoadType
=
1
;
}
else
if
(
this
.
consultRoad
==
'报告解读'
)
{
consultRoadType
=
2
;
}
const
params
=
{
const
params
=
{
doctorId
:
this
.
formData
.
receptionId
,
doctorId
:
this
.
formData
.
receptionId
,
weekDay
:
chooseTime
,
weekDay
:
chooseTime
,
diagnoseLogId
:
this
.
diagnoseLogId
,
diagnoseLogId
:
this
.
diagnoseLogId
,
diagnoseType
:
this
.
diagnoseType
,
consultRoad
:
consultRoadType
,
};
};
getLeisureTime
(
params
).
then
((
res
)
=>
{
getLeisureTime
(
params
).
then
((
res
)
=>
{
if
(
res
.
code
==
'000000'
)
{
if
(
res
.
code
==
'000000'
)
{
...
...
src/components/common/diagnosis-time.vue
浏览文件 @
e348bfc2
...
@@ -139,6 +139,14 @@
...
@@ -139,6 +139,14 @@
type
:
String
,
type
:
String
,
default
:
''
,
default
:
''
,
},
},
diagnoseType
:
{
type
:
String
,
default
:
''
,
},
consultRoad
:
{
type
:
String
,
default
:
''
,
},
},
},
data
()
{
data
()
{
return
{
return
{
...
@@ -150,6 +158,7 @@
...
@@ -150,6 +158,7 @@
model
:
{
model
:
{
assistantRemark
:
''
,
assistantRemark
:
''
,
},
},
consultRoadType
:
''
,
rangeTime
:
''
,
rangeTime
:
''
,
startDate
:
''
,
startDate
:
''
,
endDate
:
''
,
endDate
:
''
,
...
@@ -178,11 +187,20 @@
...
@@ -178,11 +187,20 @@
},
},
methods
:
{
methods
:
{
getLeisureTime
(
time
)
{
getLeisureTime
(
time
)
{
console
.
log
(
this
.
doctorInfo
);
let
consultRoadType
=
''
;
if
(
this
.
consultRoad
==
'向上问诊'
)
{
consultRoadType
=
0
;
}
else
if
(
this
.
consultRoad
==
'中医实践'
)
{
consultRoadType
=
1
;
}
else
if
(
this
.
consultRoad
==
'报告解读'
)
{
consultRoadType
=
2
;
}
const
params
=
{
const
params
=
{
departmentId
:
this
.
departmentId
,
departmentId
:
this
.
departmentId
,
weekDay
:
time
?
time
:
this
.
chooseTime
,
weekDay
:
time
?
time
:
this
.
chooseTime
,
diagnoseLogId
:
this
.
diagnoseLogId
,
diagnoseLogId
:
this
.
diagnoseLogId
,
diagnoseType
:
this
.
diagnoseType
,
consultRoad
:
consultRoadType
,
};
};
getLeisureTime
(
params
).
then
((
res
)
=>
{
getLeisureTime
(
params
).
then
((
res
)
=>
{
if
(
res
.
code
==
'000000'
)
{
if
(
res
.
code
==
'000000'
)
{
...
...
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
浏览文件 @
e348bfc2
...
@@ -292,6 +292,20 @@
...
@@ -292,6 +292,20 @@
</el-select>
</el-select>
</el-form-item>
</el-form-item>
</div>
</div>
<div>
<el-form-item
label=
"患者姓名"
class=
"t-b"
>
<el-input
v-model
.
trim=
"searchParam.patientName"
clearable
placeholder=
"请输入患者姓名"
style=
"width: 220px"
@
change=
"patientNameChange"
/>
</el-form-item>
</div>
</div>
</div>
<div
class=
"form-li"
>
<div
class=
"form-li"
>
<div>
<div>
...
@@ -526,6 +540,7 @@
...
@@ -526,6 +540,7 @@
:diagnose-type=
"diagnoseType"
:diagnose-type=
"diagnoseType"
:doctor-id=
"doctorId"
:doctor-id=
"doctorId"
:range-time-data=
"rangeTimeData"
:range-time-data=
"rangeTimeData"
:consult-road=
"consultRoad"
:doctor-info=
"doctorInfo"
:doctor-info=
"doctorInfo"
@
search=
"search"
@
search=
"search"
@
changeStartTime=
"changeStartTime"
@
changeStartTime=
"changeStartTime"
...
@@ -545,6 +560,8 @@
...
@@ -545,6 +560,8 @@
:user-name-phone=
"userNamePhone"
:user-name-phone=
"userNamePhone"
:triage-department=
"triageDepartment"
:triage-department=
"triageDepartment"
:patient-name=
"patientName"
:patient-name=
"patientName"
:diagnose-type=
"diagnoseType"
:consult-road=
"consultRoad"
:patient-mobile-phone=
"patientMobilePhone"
:patient-mobile-phone=
"patientMobilePhone"
:department-id=
"departmentId"
:department-id=
"departmentId"
@
search=
"search"
@
search=
"search"
...
@@ -680,6 +697,7 @@
...
@@ -680,6 +697,7 @@
orderPlacer
:
''
,
orderPlacer
:
''
,
matchingWay
:
null
,
matchingWay
:
null
,
consultRoad
:
null
,
consultRoad
:
null
,
patientName
:
null
,
},
},
noteList
:
[],
noteList
:
[],
alltabslist
:
[],
alltabslist
:
[],
...
@@ -739,6 +757,7 @@
...
@@ -739,6 +757,7 @@
dialogFormVisible
:
false
,
dialogFormVisible
:
false
,
bizType
:
0
,
bizType
:
0
,
diagnoseType
:
0
,
diagnoseType
:
0
,
consultRoad
:
''
,
doctorId
:
0
,
doctorId
:
0
,
operateUserID
:
''
,
operateUserID
:
''
,
triageDepartmentId
:
0
,
triageDepartmentId
:
0
,
...
@@ -1175,6 +1194,7 @@
...
@@ -1175,6 +1194,7 @@
assistantEndTime
:
''
,
assistantEndTime
:
''
,
inNewTimeObj
:
{},
inNewTimeObj
:
{},
consultRoad
:
null
,
consultRoad
:
null
,
patientName
:
null
,
});
});
},
},
// 导出
// 导出
...
@@ -1241,6 +1261,8 @@
...
@@ -1241,6 +1261,8 @@
this
.
doctorData
=
row
;
this
.
doctorData
=
row
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
userName
=
row
.
userName
;
this
.
userName
=
row
.
userName
;
this
.
diagnoseType
=
row
.
diagnoseType
;
this
.
consultRoad
=
row
.
consultRoad
;
this
.
userNamePhone
=
row
.
userMobile
;
this
.
userNamePhone
=
row
.
userMobile
;
this
.
triageDepartment
=
row
.
triageDepartment
;
this
.
triageDepartment
=
row
.
triageDepartment
;
this
.
departmentId
=
row
.
triageDepartmentId
;
this
.
departmentId
=
row
.
triageDepartmentId
;
...
@@ -1331,6 +1353,7 @@
...
@@ -1331,6 +1353,7 @@
this
.
diagnosisDoctorVisible
=
true
;
this
.
diagnosisDoctorVisible
=
true
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
diagnoseType
=
row
.
diagnoseType
;
this
.
diagnoseType
=
row
.
diagnoseType
;
this
.
consultRoad
=
row
.
consultRoad
;
if
(
row
.
doctorId
==
0
)
{
if
(
row
.
doctorId
==
0
)
{
this
.
doctorId
=
''
;
this
.
doctorId
=
''
;
}
else
{
}
else
{
...
@@ -1442,6 +1465,9 @@
...
@@ -1442,6 +1465,9 @@
this
.
matchVisible
=
true
;
this
.
matchVisible
=
true
;
this
.
batchFlag
=
true
;
this
.
batchFlag
=
true
;
},
},
patientNameChange
(
value
)
{
this
.
searchParam
.
patientName
=
value
?
value
:
null
;
},
},
},
};
};
</
script
>
</
script
>
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录