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
提交
3f39ca17
提交
3f39ca17
编写于
7月 22, 2021
作者:
lyf
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改备注状态
上级
5c18dbf2
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
41 行增加
和
10 行删除
+41
-10
rematching-doctor.vue
src/components/common/rematching-doctor.vue
+30
-10
diagnosis-list-new.vue
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
+11
-0
未找到文件。
src/components/common/rematching-doctor.vue
浏览文件 @
3f39ca17
...
@@ -17,20 +17,29 @@
...
@@ -17,20 +17,29 @@
style=
"width: 100%"
style=
"width: 100%"
>
>
<el-form-item
<el-form-item
label=
"备注"
label=
"
状态
备注"
class=
"required-label"
class=
"required-label"
prop=
"
repattern
Remark"
prop=
"
status
Remark"
>
>
<el-col
:span=
"15"
>
<el-col
:span=
"15"
>
<el-input
<
!--
<
el-input
type=
"textarea"
type=
"textarea"
v-model=
"model.
repattern
Remark"
v-model=
"model.
status
Remark"
style=
"width: 135%"
style=
"width: 135%"
size=
"small"
size=
"small"
minlength=
"2"
minlength=
"2"
maxlength=
"500"
maxlength=
"500"
placeholder=
"请输入备注信息"
placeholder=
"请输入备注信息"
></el-input>
></el-input>
-->
<el-select
style=
"width: 135%"
size=
"small"
v-model=
"model.statusRemark"
placeholder=
"请选择备注信息"
>
<el-option
v-for=
"item in rematchingOptions"
:key=
"item"
:label=
"item"
:value=
"item"
>
</el-option>
</el-select>
</el-col>
</el-col>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
...
@@ -52,6 +61,10 @@ export default {
...
@@ -52,6 +61,10 @@ export default {
type
:
Boolean
,
type
:
Boolean
,
default
:
false
,
default
:
false
,
},
},
rematchingOptions
:{
type
:
Array
,
default
:
null
,
},
bizType
:
{
bizType
:
{
type
:
Number
,
type
:
Number
,
default
:
10
,
default
:
10
,
...
@@ -73,16 +86,23 @@ export default {
...
@@ -73,16 +86,23 @@ export default {
cancleTxt
:
""
,
cancleTxt
:
""
,
_promise
:
null
,
_promise
:
null
,
model
:
{
model
:
{
repattern
Remark
:
""
,
status
Remark
:
""
,
},
},
addRules
:
{
addRules
:
{
repattern
Remark
:
[
status
Remark
:
[
{
required
:
true
,
message
:
"请
输入
备注信息"
,
trigger
:
"blur"
},
{
required
:
true
,
message
:
"请
选择
备注信息"
,
trigger
:
"blur"
},
],
],
},
},
};
};
},
},
watch
:{
rematchingOptions
(
val
,
oldval
){
console
.
log
(
val
)
this
.
model
.
statusRemark
=
val
[
0
]?
val
[
0
]:
""
}
},
created
()
{
created
()
{
vm
=
this
;
vm
=
this
;
},
},
methods
:
{
methods
:
{
...
@@ -92,7 +112,7 @@ export default {
...
@@ -92,7 +112,7 @@ export default {
let
req
=
{
let
req
=
{
id
:
this
.
diagnoseLogId
,
id
:
this
.
diagnoseLogId
,
bizType
:
this
.
bizType
,
bizType
:
this
.
bizType
,
repatternRemark
:
this
.
model
.
repattern
Remark
,
statusRemark
:
this
.
model
.
status
Remark
,
};
};
updateDiagnosis
(
req
)
updateDiagnosis
(
req
)
.
then
(
function
(
res
)
{
.
then
(
function
(
res
)
{
...
@@ -110,7 +130,7 @@ export default {
...
@@ -110,7 +130,7 @@ export default {
});
});
},
},
cancel
()
{
cancel
()
{
this
.
model
.
repattern
Remark
=
""
;
this
.
model
.
status
Remark
=
""
;
this
.
$emit
(
"update:rematchingVisible"
,
false
);
this
.
$emit
(
"update:rematchingVisible"
,
false
);
},
},
},
},
...
...
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
浏览文件 @
3f39ca17
...
@@ -305,6 +305,7 @@
...
@@ -305,6 +305,7 @@
></diagnosis-time>
></diagnosis-time>
<rematching-doctor
<rematching-doctor
@
search=
"search"
@
search=
"search"
:rematchingOptions=
"rematchingOptions"
:rematchingVisible
.
sync=
"rematchingVisible"
:rematchingVisible
.
sync=
"rematchingVisible"
:diagnoseLogId=
"diagnoseLogId"
:diagnoseLogId=
"diagnoseLogId"
:bizType=
"bizType"
:bizType=
"bizType"
...
@@ -396,6 +397,7 @@ export default {
...
@@ -396,6 +397,7 @@ export default {
fllowList
:
IS_FLLOW
,
fllowList
:
IS_FLLOW
,
sourceList
:
SOURCE_LIST
,
sourceList
:
SOURCE_LIST
,
tabpaneList
:
[],
tabpaneList
:
[],
rematchingOptions
:[],
// 备注信息
Raw_tabpaneList
:
[],
Raw_tabpaneList
:
[],
tableData
:
[],
tableData
:
[],
totalRows
:
0
,
totalRows
:
0
,
...
@@ -879,6 +881,15 @@ export default {
...
@@ -879,6 +881,15 @@ export default {
//重新匹配医生
//重新匹配医生
reMatchDot
(
row
,
type
)
{
reMatchDot
(
row
,
type
)
{
console
.
log
(
row
,
type
);
console
.
log
(
row
,
type
);
// console.log("type",type)
if
(
type
==
10
){
this
.
rematchingOptions
=
[
"接诊医生爽约"
]
}
else
{
this
.
rematchingOptions
=
[
"助诊医生爽约"
]
}
// this.rematchingOptions=
// this.options=
this
.
rematchingVisible
=
true
;
this
.
rematchingVisible
=
true
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
diagnoseLogId
=
row
.
diagnoseLogId
;
this
.
bizType
=
type
;
this
.
bizType
=
type
;
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录