Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pet-business-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘怀志
pet-business-web
Commits
09b03163
Commit
09b03163
authored
Jul 09, 2023
by
盖献康
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
检查管理-立即预约-内部外部
parent
3322d097
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
check-subscribe.vue
...-management/medical-record-management/check-subscribe.vue
+5
-5
medical-record-management.vue
...t/medical-record-management/medical-record-management.vue
+3
-3
No files found.
src/views/service-management/medical-record-management/check-subscribe.vue
View file @
09b03163
...
@@ -206,7 +206,7 @@
...
@@ -206,7 +206,7 @@
</el-col>
</el-col>
<el-col
v-show=
"subscribeMessage.checkType === '2'"
:span=
"8"
>
<el-col
v-show=
"subscribeMessage.checkType === '2'"
:span=
"8"
>
<el-form-item
label=
"支出账户余额"
label-width=
"96px"
>
<el-form-item
label=
"支出账户余额"
label-width=
"96px"
>
11800.00
¥
11800.00
</el-form-item>
</el-form-item>
</el-col>
</el-col>
</el-row>
</el-row>
...
@@ -303,7 +303,7 @@ export default {
...
@@ -303,7 +303,7 @@ export default {
getManage
(
id
).
then
(
response
=>
{
getManage
(
id
).
then
(
response
=>
{
this
.
subscribeMessage
=
response
.
data
this
.
subscribeMessage
=
response
.
data
console
.
log
(
'立即预约页面'
,
this
.
subscribeMessage
)
console
.
log
(
'立即预约页面'
,
this
.
subscribeMessage
)
this
.
subscribeMessage
.
payAmount
=
this
.
keepTwoDecimals
(
this
.
subscribeMessage
.
payAmount
)
//
this.subscribeMessage.payAmount = this.keepTwoDecimals(this.subscribeMessage.payAmount)
// 时间
// 时间
this
.
deviceQueryParams
.
reservationTime
=
parseTime
(
new
Date
(),
'{y
}
-{m
}
-{d
}
'
)
this
.
deviceQueryParams
.
reservationTime
=
parseTime
(
new
Date
(),
'{y
}
-{m
}
-{d
}
'
)
// 服务类型(医院自有、外部服务)
// 服务类型(医院自有、外部服务)
...
@@ -317,7 +317,7 @@ export default {
...
@@ -317,7 +317,7 @@ export default {
this
.
currentCheckId
=
this
.
subscribeMessage
.
id
this
.
currentCheckId
=
this
.
subscribeMessage
.
id
this
.
currentPayAmount
=
this
.
subscribeMessage
.
payAmount
this
.
currentPayAmount
=
this
.
subscribeMessage
.
payAmount
this
.
getDevice
()
this
.
getDevice
()
this
.
getAllDevice
(
this
.
subscribeMessage
.
checkItemsId
)
this
.
getAllDevice
(
this
.
subscribeMessage
.
checkItemsId
,
this
.
deviceQueryParams
.
isPrivate
)
}
)
}
)
}
,
}
,
methods
:
{
methods
:
{
...
@@ -387,10 +387,10 @@ export default {
...
@@ -387,10 +387,10 @@ export default {
}
)
}
)
}
,
}
,
// 获取所有设备
// 获取所有设备
getAllDevice
(
checkItemsId
)
{
getAllDevice
(
checkItemsId
,
isPrivate
)
{
const
list
=
[]
const
list
=
[]
list
.
push
(
checkItemsId
)
list
.
push
(
checkItemsId
)
deviceUseInSubscribeList
({
isPrivate
:
this
.
deviceQueryParams
.
isPrivate
,
checkTypeList
:
list
}
).
then
(
res
=>
{
deviceUseInSubscribeList
({
isPrivate
:
isPrivate
,
checkTypeList
:
list
}
).
then
(
res
=>
{
this
.
selectableDevice
=
res
.
data
this
.
selectableDevice
=
res
.
data
}
)
}
)
}
,
}
,
...
...
src/views/service-management/medical-record-management/medical-record-management.vue
View file @
09b03163
...
@@ -534,10 +534,10 @@ export default {
...
@@ -534,10 +534,10 @@ export default {
}
)
}
)
}
,
}
,
/** 获取所有设备用于设备下拉 */
/** 获取所有设备用于设备下拉 */
getAllDevice
(
checkItemsId
)
{
getAllDevice
(
checkItemsId
,
isPrivate
)
{
const
list
=
[]
const
list
=
[]
list
.
push
(
checkItemsId
)
list
.
push
(
checkItemsId
)
deviceUseInSubscribeList
({
isPrivate
:
'1'
,
checkTypeList
:
list
}
).
then
(
res
=>
{
deviceUseInSubscribeList
({
isPrivate
:
isPrivate
,
checkTypeList
:
list
}
).
then
(
res
=>
{
console
.
log
(
'设备下拉框'
,
res
)
console
.
log
(
'设备下拉框'
,
res
)
this
.
selectableDevice
=
res
.
data
this
.
selectableDevice
=
res
.
data
}
)
}
)
...
@@ -597,7 +597,7 @@ export default {
...
@@ -597,7 +597,7 @@ export default {
console
.
log
(
'点击立即预约后的状态'
,
this
.
deviceQueryParams
)
console
.
log
(
'点击立即预约后的状态'
,
this
.
deviceQueryParams
)
// 设置检查项目id
// 设置检查项目id
this
.
getDevice
()
this
.
getDevice
()
this
.
getAllDevice
(
row
.
checkItemsId
)
this
.
getAllDevice
(
row
.
checkItemsId
,
this
.
deviceQueryParams
.
isPrivate
)
}
,
}
,
// 获取当前时间
// 获取当前时间
getCurrentTime
()
{
getCurrentTime
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment