Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-admin-consultation
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.education.frontend
pica-admin-consultation
提交
6188428e
提交
6188428e
编写于
7月 07, 2021
作者:
vino
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
问诊优化
上级
8301f27d
变更
4
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
28 行增加
和
7 行删除
+28
-7
coordinating-doctor.vue
src/components/common/coordinating-doctor.vue
+1
-1
match.vue
src/components/common/match.vue
+13
-0
matching-doctor.vue
src/components/common/matching-doctor.vue
+7
-3
diagnosis-list-new.vue
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
+7
-3
未找到文件。
src/components/common/coordinating-doctor.vue
浏览文件 @
6188428e
...
...
@@ -15,7 +15,7 @@
<el-form-item
label=
"备注"
>
<el-col
:span=
"15"
>
<el-input
type=
"textarea"
v-model=
"model.coordinatedRemark"
style=
"width:
9
0%;"
size=
"small"
minlength=
"2"
maxlength=
"500"
placeholder=
"(选填)请输入备注信息"
></el-input>
<el-input
type=
"textarea"
v-model=
"model.coordinatedRemark"
style=
"width:
13
0%;"
size=
"small"
minlength=
"2"
maxlength=
"500"
placeholder=
"(选填)请输入备注信息"
></el-input>
</el-col>
</el-form-item>
...
...
src/components/common/match.vue
浏览文件 @
6188428e
...
...
@@ -65,6 +65,10 @@ export default {
type
:
Boolean
,
default
:
false
},
operateUserID
:
{
type
:
String
,
default
:
""
},
},
data
()
{
return
{
...
...
@@ -92,6 +96,15 @@ export default {
this
.
title
=
"批量设置运营"
;
}
},
watch
:{
operateUserID
:
function
(){
if
(
!
this
.
batchFlag
){
this
.
model
.
operatorId
=
this
.
operateUserID
;
this
.
changeOperator
(
this
.
operateUserID
);
}
}
},
methods
:
{
confirm
()
{
this
.
$refs
.
setForm
.
validate
((
valid
)
=>
{
...
...
src/components/common/matching-doctor.vue
浏览文件 @
6188428e
...
...
@@ -13,7 +13,7 @@
size=
"mini"
style=
"width: 100%;"
>
<el-form-item
label=
"分诊科室"
>
<el-form-item
label=
"分诊科室"
class=
"required-label"
prop=
"triageDepartmentId"
>
<el-select
v-model=
"model.triageDepartmentId"
placeholder=
"请选择分诊科室"
...
...
@@ -31,7 +31,7 @@
</el-select>
</el-form-item>
<el-form-item
label=
"备注"
class=
"required-label"
>
<el-form-item
label=
"备注"
>
<el-col
:span=
"15"
>
<el-input
type=
"textarea"
v-model=
"model.triageRemark"
style=
"width: 90%;"
size=
"small"
minlength=
"2"
maxlength=
"500"
placeholder=
"请输入备注"
></el-input>
...
...
@@ -75,7 +75,11 @@ export default {
triageDepartmentId
:
""
,
triageDepartment
:
""
},
addRules
:
{}
addRules
:
{
triageDepartmentId
:
[
{
required
:
true
,
message
:
"请选择分诊科室"
,
trigger
:
'change'
}
],
}
}
},
created
()
{
...
...
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
浏览文件 @
6188428e
...
...
@@ -221,7 +221,7 @@
></table-component>
</el-tab-pane>
</el-tabs>
<match-component
@
search=
"search"
:matchVisible
.
sync=
"matchVisible"
:diagnoseLogId=
"diagnoseLogId"
:batchFlag=
"batchFlag"
:multipleSelection=
"multipleSelection"
></match-component>
<match-component
@
search=
"search"
:matchVisible
.
sync=
"matchVisible"
:diagnoseLogId=
"diagnoseLogId"
:batchFlag=
"batchFlag"
:multipleSelection=
"multipleSelection"
:operateUserID=
"operateUserID"
></match-component>
<refund-component
@
search=
"search"
:refundVisible
.
sync=
"refundVisible"
:diagnoseLogId=
"diagnoseLogId"
></refund-component>
<followup-component
@
search=
"search"
:followupVisible
.
sync=
"followupVisible"
:diagnoseLogId=
"diagnoseLogId"
></followup-component>
<matching-doctor
@
search=
"search"
:doctorVisible
.
sync=
"doctorVisible"
:diagnoseLogId=
"diagnoseLogId"
></matching-doctor>
...
...
@@ -330,6 +330,7 @@ export default {
bizType
:
0
,
diagnoseType
:
0
,
doctorId
:
""
,
operateUserID
:
""
,
pickerOptions1
:
{
disabledDate
:
(
time
)
=>
{
return
time
.
getTime
()
>
new
Date
().
getTime
();
//减去一天的时间代表可以选择同一天;
...
...
@@ -526,6 +527,7 @@ export default {
this
.
matchVisible
=
true
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
batchFlag
=
false
;
this
.
operateUserID
=
row
.
operateUserID
;
},
//查看详情/编辑详情
goDetail
(
row
,
flag
)
{
...
...
@@ -674,8 +676,10 @@ export default {
})
},
// 设置科室
setOffice
(
value
)
{
setOffice
(
row
)
{
this
.
doctorVisible
=
true
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
bizType
=
15
;
},
handleSizeChange
(
value
)
{
this
.
searchParam
.
pageSize
=
value
;
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录