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
提交
fa295b2e
提交
fa295b2e
编写于
4月 28, 2024
作者:
zhongyao.qiao
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'feature/diagnose-0425' into 'release'
Feature/diagnose 0425 See merge request
!303
上级
7490ce40
60041955
变更
5
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
12650 行增加
和
13100 行删除
+12650
-13100
.env.development.local
.env.development.local
+1
-1
constants.js
src/utils/constants.js
+5
-1
diagnosis-editor.vue
src/views/IM/diagnosis-admin/diagnosis-editor.vue
+67
-20
vue.config.js
vue.config.js
+2
-2
yarn.lock
yarn.lock
+12575
-13076
未找到文件。
.env.development.local
浏览文件 @
fa295b2e
...
@@ -17,4 +17,4 @@ VUE_APP_IS_LOCAL=true
...
@@ -17,4 +17,4 @@ VUE_APP_IS_LOCAL=true
VUE_APP_APPID=wxf4e66242d31c81c2
VUE_APP_APPID=wxf4e66242d31c81c2
#本地token
#本地token
VUE_APP_TOKEN=
E214A2D6B40345F98DE538DA793CF91
8
VUE_APP_TOKEN=
609ED00303E54EEF9AEE2F8BB9A34CD
8
src/utils/constants.js
浏览文件 @
fa295b2e
...
@@ -91,6 +91,10 @@ export const MATCHING_LIST = [
...
@@ -91,6 +91,10 @@ export const MATCHING_LIST = [
label
:
'人工匹配'
,
label
:
'人工匹配'
,
value
:
2
,
value
:
2
,
},
},
{
label
:
'自营转诊'
,
value
:
3
,
},
];
];
// 订单状态
// 订单状态
export
const
STATUS_LIST
=
[
export
const
STATUS_LIST
=
[
...
@@ -763,4 +767,4 @@ export const CHECK_FOLLOW_RESULT = [
...
@@ -763,4 +767,4 @@ export const CHECK_FOLLOW_RESULT = [
label
:
'线下自己做'
,
label
:
'线下自己做'
,
value
:
3
,
value
:
3
,
},
},
];
];
\ No newline at end of file
src/views/IM/diagnosis-admin/diagnosis-editor.vue
浏览文件 @
fa295b2e
...
@@ -602,8 +602,29 @@
...
@@ -602,8 +602,29 @@
/>
/>
</el-form-item>
</el-form-item>
<!-- -->
<!-- -->
<br>
<br>
<template
v-if=
"referralDetail.newDoctorName && referralDetail.referralDate"
>
<h1>
转诊信息
</h1>
<el-form-item
label=
"接诊医生"
>
<span>
{{
referralDetail
.
originalDoctorName
}}
</span>
</el-form-item>
<el-form-item
label=
"转诊医生"
>
<span>
{{
referralDetail
.
newDoctorName
}}
</span>
</el-form-item>
<el-form-item
label=
"转诊科室"
>
{{
referralDetail
.
newDoctorDepartment
}}
</el-form-item>
<el-form-item
label=
"转诊建议"
>
<span>
{{
referralDetail
.
referralAdvice
}}
</span>
</el-form-item>
<el-form-item
label=
"转诊时间"
>
<span>
{{
referralDetail
.
referralDate
}}
</span>
</el-form-item>
</
template
>
<h1>
结算信息
</h1>
<h1>
结算信息
</h1>
<el-form-item
<el-form-item
label=
"接诊服务费"
label=
"接诊服务费"
...
@@ -1073,7 +1094,7 @@
...
@@ -1073,7 +1094,7 @@
v-model=
"formData.drugFollowResultContent"
v-model=
"formData.drugFollowResultContent"
placeholder=
""
placeholder=
""
class=
"set-width flex-1"
class=
"set-width flex-1"
style
=
"margin-left:30px"
style=
"margin-left:
30px"
:disabled=
"editorType == 2"
:disabled=
"editorType == 2"
maxlength=
"1000"
maxlength=
"1000"
show-word-limit
show-word-limit
...
@@ -1120,9 +1141,9 @@
...
@@ -1120,9 +1141,9 @@
:value=
"item.value"
:value=
"item.value"
/>
/>
</el-select>
</el-select>
<
span
<span
class=
"flex flex-1"
class=
"flex flex-1"
style
=
"margin-left:30px"
style=
"margin-left:
30px"
>
>
检查结果
检查结果
<el-input
<el-input
...
@@ -1131,7 +1152,7 @@
...
@@ -1131,7 +1152,7 @@
show-word-limit
show-word-limit
maxlength=
"1000"
maxlength=
"1000"
class=
"set-width flex-1"
class=
"set-width flex-1"
style
=
"margin-left:12px"
style=
"margin-left:
12px"
:disabled=
"editorType == 2"
:disabled=
"editorType == 2"
/>
/>
</span>
</span>
...
@@ -1263,7 +1284,7 @@ import {
...
@@ -1263,7 +1284,7 @@ import {
MEDICINE_FOLLOW_STATUS_LIST
,
MEDICINE_FOLLOW_STATUS_LIST
,
HEALING_EFFECT_FOLLOW_STATUS
,
HEALING_EFFECT_FOLLOW_STATUS
,
HEALING_EFFECT_FOLLOW_RESULT
,
HEALING_EFFECT_FOLLOW_RESULT
,
CHECK_FOLLOW_RESULT
CHECK_FOLLOW_RESULT
,
}
from
'@/utils/constants'
;
}
from
'@/utils/constants'
;
import
{
getBirth
}
from
'@/utils/index'
;
import
{
getBirth
}
from
'@/utils/index'
;
...
@@ -1275,10 +1296,17 @@ export default {
...
@@ -1275,10 +1296,17 @@ export default {
components
:
{
components
:
{
uploadImg
,
uploadImg
,
uploadMusic
,
uploadMusic
,
uploadVideo
uploadVideo
,
},
},
data
()
{
data
()
{
return
{
return
{
referralDetail
:
{
originalDoctorName
:
''
,
newDoctorName
:
''
,
newDoctorDepartment
:
''
,
referralAdvice
:
''
,
referralDate
:
''
,
},
asd
:
123
,
asd
:
123
,
diagnoseLogId
:
''
,
diagnoseLogId
:
''
,
birthDisable
:
false
,
birthDisable
:
false
,
...
@@ -1344,7 +1372,7 @@ export default {
...
@@ -1344,7 +1372,7 @@ export default {
diagnoseStage
:
''
,
diagnoseStage
:
''
,
determineFlag
:
''
,
determineFlag
:
''
,
diagnoseDisease
:
''
,
diagnoseDisease
:
''
,
diseaseName
:
''
,
diseaseName
:
''
,
illnessDetail
:
''
,
illnessDetail
:
''
,
illnessImageUrls
:
[],
illnessImageUrls
:
[],
diagnoseAdvice
:
''
,
diagnoseAdvice
:
''
,
...
@@ -1354,14 +1382,14 @@ export default {
...
@@ -1354,14 +1382,14 @@ export default {
checkFollowStatus
:
''
,
checkFollowStatus
:
''
,
otherFollowStatus
:
''
,
otherFollowStatus
:
''
,
otherFollow
:
''
,
otherFollow
:
''
,
followStatus
:
''
,
// 跟进状态
followStatus
:
''
,
// 跟进状态
followDate
:
''
,
// 计划跟进时间
followDate
:
''
,
// 计划跟进时间
drugFollow
:
''
,
// 药品跟进点
drugFollow
:
''
,
// 药品跟进点
drugFollowResult
:
''
,
// 药品跟进结果
drugFollowResult
:
''
,
// 药品跟进结果
drugFollowResultContent
:
''
,
// 药品跟进结果描述
drugFollowResultContent
:
''
,
// 药品跟进结果描述
treatmentFollow
:
''
,
// 治疗效果跟进点
treatmentFollow
:
''
,
// 治疗效果跟进点
treatmentFollowStatus
:
''
,
// 治疗效果跟进状态
treatmentFollowStatus
:
''
,
// 治疗效果跟进状态
treatmentFollowResult
:
''
,
// 治疗效果跟进结果
treatmentFollowResult
:
''
,
// 治疗效果跟进结果
checkFollow
:
''
,
// 检查跟进点
checkFollow
:
''
,
// 检查跟进点
checkFollowResult
:
''
,
// 检查跟进结果
checkFollowResult
:
''
,
// 检查跟进结果
checkResult
:
''
,
// 检测结果
checkResult
:
''
,
// 检测结果
...
@@ -1386,11 +1414,11 @@ export default {
...
@@ -1386,11 +1414,11 @@ export default {
vodList
:
{
vodList
:
{
name
:
''
,
name
:
''
,
url
:
''
,
url
:
''
,
text
:
''
text
:
''
,
},
},
additionPrice
:
null
,
// 诊疗费
additionPrice
:
null
,
// 诊疗费
orderTotalPrice
:
null
,
orderTotalPrice
:
null
,
diagnoseChannel
:
null
diagnoseChannel
:
null
,
},
},
tyleList
:
TYPE_LIST
,
tyleList
:
TYPE_LIST
,
payList
:
PAY_LIST
,
payList
:
PAY_LIST
,
...
@@ -1561,10 +1589,22 @@ export default {
...
@@ -1561,10 +1589,22 @@ export default {
.
then
((
res
)
=>
{
.
then
((
res
)
=>
{
this
.
loading
=
false
;
this
.
loading
=
false
;
if
(
res
.
code
==
'000000'
)
{
if
(
res
.
code
==
'000000'
)
{
this
.
referralDetail
.
originalDoctorName
=
res
.
data
.
originalDoctorName
;
this
.
referralDetail
.
newDoctorName
=
res
.
data
.
newDoctorName
;
this
.
referralDetail
.
newDoctorDepartment
=
res
.
data
.
newDoctorDepartment
;
this
.
referralDetail
.
referralAdvice
=
res
.
data
.
referralAdvice
;
this
.
referralDetail
.
referralDate
=
res
.
data
.
referralDate
;
console
.
log
(
'referralDetail'
,
this
.
referralDetail
);
this
.
formData
=
res
.
data
;
this
.
formData
=
res
.
data
;
this
.
formData
.
price
=
this
.
priceFilter
(
this
.
formData
.
price
);
this
.
formData
.
price
=
this
.
priceFilter
(
this
.
formData
.
price
);
this
.
formData
.
additionPrice
=
this
.
priceFilter
(
this
.
formData
.
additionPrice
);
this
.
formData
.
additionPrice
=
this
.
priceFilter
(
this
.
formData
.
orderTotalPrice
=
this
.
formData
.
price
+
this
.
formData
.
additionPrice
;
this
.
formData
.
additionPrice
);
this
.
formData
.
orderTotalPrice
=
this
.
formData
.
price
+
this
.
formData
.
additionPrice
;
this
.
formData
.
serviceFee
=
this
.
priceFilter
(
this
.
formData
.
serviceFee
=
this
.
priceFilter
(
this
.
formData
.
serviceFee
this
.
formData
.
serviceFee
);
);
...
@@ -1790,6 +1830,13 @@ export default {
...
@@ -1790,6 +1830,13 @@ export default {
};
};
</
script
>
</
script
>
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.referral-container
{
color
:
#8d9196
;
line-height
:
30px
;
font-size
:
20px
;
width
:
45%
;
margin-left
:
28px
;
}
.diagnosis-list-content
{
.diagnosis-list-content
{
.component-content
{
.component-content
{
padding
:
10px
;
padding
:
10px
;
...
...
vue.config.js
浏览文件 @
fa295b2e
...
@@ -67,10 +67,10 @@ module.exports = {
...
@@ -67,10 +67,10 @@ module.exports = {
config
.
plugins
.
delete
(
'preload'
);
config
.
plugins
.
delete
(
'preload'
);
},
},
devServer
:
{
devServer
:
{
port
:
808
0
,
port
:
808
2
,
proxy
:
{
proxy
:
{
'/proxy'
:
{
'/proxy'
:
{
target
:
'https://
uat-sc
.yunqueyi.com/'
,
target
:
'https://
dev-sso
.yunqueyi.com/'
,
ws
:
false
,
ws
:
false
,
changeOrigin
:
true
,
changeOrigin
:
true
,
secure
:
true
,
secure
:
true
,
...
...
yarn.lock
浏览文件 @
fa295b2e
此差异已折叠。
点击以展开。
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录