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
提交
4c9f336b
提交
4c9f336b
编写于
4月 01, 2024
作者:
zhaosheng.zhang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 问题修复
上级
41d0b257
变更
3
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
31 行增加
和
11 行删除
+31
-11
table-set-component.vue
src/components/list/table-set-component.vue
+20
-1
diagnosis-editor.vue
src/views/IM/diagnosis-admin/diagnosis-editor.vue
+5
-5
diagnosis-list-new.vue
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
+6
-5
未找到文件。
src/components/list/table-set-component.vue
浏览文件 @
4c9f336b
...
...
@@ -56,7 +56,7 @@
<p
v-if=
"isAssistantTime(scope)"
>
距自动取消还剩
</p>
<p>
{{
goTime
(
scope
.
row
.
assistantTime
)
}}
</p>
<p>
{{
updateCountdown
(
scope
.
row
.
assistantTime
)
}}
</p>
</div>
</div>
<div
v-else-if=
"scope.column.property == 'receptionTime'"
>
...
...
@@ -457,6 +457,25 @@
||
scope
.
row
.
status
===
23
||
scope
.
row
.
status
===
24
||
scope
.
row
.
status
===
25
||
scope
.
row
.
status
===
26
)
)
return
true
;
},
// 48小时倒计时
updateCountdown
(
endTime
)
{
if
(
!
endTime
)
return
''
;
const
currentTime
=
new
Date
().
getTime
();
const
newEndTime
=
new
Date
().
getTime
()
+
endTime
;
const
timeLeft
=
newEndTime
-
currentTime
;
if
(
timeLeft
>=
0
)
{
let
hours
=
Math
.
floor
((
timeLeft
/
(
1000
*
60
*
60
))
%
24
);
let
minutes
=
Math
.
floor
((
timeLeft
/
(
1000
*
60
))
%
60
);
let
seconds
=
Math
.
floor
((
timeLeft
/
1000
)
%
60
);
hours
=
hours
>
9
?
hours
:
'0'
+
hours
;
minutes
=
minutes
>
9
?
minutes
:
'0'
+
minutes
;
seconds
=
seconds
>
9
?
seconds
:
'0'
+
seconds
;
return
`
${
hours
}
:
${
minutes
}
:
${
seconds
}
`
;
}
else
{
return
''
;
}
}
},
};
...
...
src/views/IM/diagnosis-admin/diagnosis-editor.vue
浏览文件 @
4c9f336b
...
...
@@ -758,7 +758,7 @@
<
el
-
input
v
-
model
=
"formData.diagnoseAdvice"
type
=
"textarea"
placeholder
=
"请输入
更新
建议(更新后原建议将被删除)"
placeholder
=
"请输入
诊断
建议(更新后原建议将被删除)"
:
disabled
=
"editorType == 2"
maxlength
=
"1000"
show
-
word
-
limit
...
...
@@ -774,7 +774,7 @@
<
el
-
input
v
-
model
=
"formData.tcmAdvice"
type
=
"textarea"
placeholder
=
"请输入
更新
建议(更新后原建议将被删除)"
placeholder
=
"请输入
中药
建议(更新后原建议将被删除)"
:
disabled
=
"editorType == 2"
maxlength
=
"1000"
show
-
word
-
limit
...
...
@@ -790,7 +790,7 @@
<
el
-
input
v
-
model
=
"formData.westernAdvice"
type
=
"textarea"
placeholder
=
"请输入
更新
建议(更新后原建议将被删除)"
placeholder
=
"请输入
西药
建议(更新后原建议将被删除)"
:
disabled
=
"editorType == 2"
maxlength
=
"1000"
show
-
word
-
limit
...
...
@@ -806,7 +806,7 @@
<
el
-
input
v
-
model
=
"formData.inspectionAdvice"
type
=
"textarea"
placeholder
=
"请输入
更新
建议(更新后原建议将被删除)"
placeholder
=
"请输入
检查
建议(更新后原建议将被删除)"
:
disabled
=
"editorType == 2"
maxlength
=
"1000"
show
-
word
-
limit
...
...
@@ -822,7 +822,7 @@
<
el
-
input
v
-
model
=
"formData.lifeAdvice"
type
=
"textarea"
placeholder
=
"请输入
更新
建议(更新后原建议将被删除)"
placeholder
=
"请输入
生活
建议(更新后原建议将被删除)"
:
disabled
=
"editorType == 2"
maxlength
=
"1000"
show
-
word
-
limit
...
...
src/views/IM/diagnosis-admin/diagnosis-list-new.vue
浏览文件 @
4c9f336b
...
...
@@ -370,13 +370,14 @@
class=
"t-b"
>
<el-select
v-model=
"searchParam.diagnoseChannel"
v-model=
"searchParam.diagnoseChannel
List
"
placeholder=
"请选择问诊方式"
clearable
multiple
style=
"width: 220px"
>
<el-option
v-for=
"item of
d
iagnoseChannelList"
v-for=
"item of
newD
iagnoseChannelList"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
...
...
@@ -702,7 +703,7 @@ export default {
orderPlacer
:
''
,
matchingWay
:
null
,
consultRoadList
:
[],
diagnoseChannel
:
null
,
diagnoseChannel
List
:
[]
,
patientName
:
null
,
},
noteList
:
[],
...
...
@@ -726,7 +727,7 @@ export default {
value
:
2
,
},
],
d
iagnoseChannelList
:
DIAGNOSE_CHANNEL
,
newD
iagnoseChannelList
:
DIAGNOSE_CHANNEL
,
nextPersonList
:
[
{
label
:
'基层医生'
,
...
...
@@ -1200,7 +1201,7 @@ export default {
inNewTimeObj
:
{},
consultRoadList
:
[],
patientName
:
null
,
diagnoseChannel
:
null
diagnoseChannel
List
:
[]
});
this
.
getsearch
();
},
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录