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
9e02f302
Commit
9e02f302
authored
Jul 21, 2023
by
高滢
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
e026f96f
ddf2b4ed
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
5 deletions
+14
-5
inHospital.js
src/api/business/inHospital.js
+8
-0
medical-edit.vue
src/views/medical-record-management/medical-edit.vue
+4
-3
choose-pet.vue
...e-management/registration-queue/components/choose-pet.vue
+1
-1
prescribing-modle.vue
...ement/registration-queue/components/prescribing-modle.vue
+1
-1
No files found.
src/api/business/inHospital.js
View file @
9e02f302
...
@@ -35,6 +35,14 @@ export function updateHospital(data) {
...
@@ -35,6 +35,14 @@ export function updateHospital(data) {
})
})
}
}
export
function
updateHospitalRecord
(
data
)
{
return
request
({
url
:
'/business/hospital'
,
method
:
'put'
,
data
:
data
})
}
// 删除业务管理-住院管理
// 删除业务管理-住院管理
export
function
delHospital
(
id
)
{
export
function
delHospital
(
id
)
{
return
request
({
return
request
({
...
...
src/views/medical-record-management/medical-edit.vue
View file @
9e02f302
...
@@ -1158,7 +1158,7 @@ import {
...
@@ -1158,7 +1158,7 @@ import {
updateCheck
,
editRecord
,
getRecordPayment
updateCheck
,
editRecord
,
getRecordPayment
}
from
'@/api/business/mdeicalRecord'
}
from
'@/api/business/mdeicalRecord'
import
{
mapGetters
}
from
'vuex'
import
{
mapGetters
}
from
'vuex'
import
{
addHospital
,
delHospital
,
listHospital
,
updateHospital
}
from
'@/api/business/inHospital'
import
{
addHospital
,
delHospital
,
listHospital
,
updateHospital
Record
}
from
'@/api/business/inHospital'
export
default
{
export
default
{
name
:
'MedicalEdit'
,
name
:
'MedicalEdit'
,
...
@@ -1842,9 +1842,10 @@ export default {
...
@@ -1842,9 +1842,10 @@ export default {
console
.
log
(
'修改保存'
,
row
)
console
.
log
(
'修改保存'
,
row
)
const
updateForm
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
recordDetail
))
const
updateForm
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
recordDetail
))
updateForm
.
inHospitalBo
=
row
updateForm
.
inHospitalBo
=
row
updateForm
.
inHospitalBo
.
createTime
=
null
updateForm
.
createTime
=
null
if
(
updateForm
.
inHospitalBo
.
id
)
{
if
(
updateForm
.
inHospitalBo
.
id
)
{
updateHospital
(
updateForm
).
then
(
res
=>
{
updateHospital
Record
(
updateForm
).
then
(
res
=>
{
this
.
petInHospitalUpdateShow
=
false
this
.
petInHospitalUpdateShow
=
false
this
.
getInHospitalList
(
this
.
$route
.
params
.
id
)
this
.
getInHospitalList
(
this
.
$route
.
params
.
id
)
})
})
...
...
src/views/service-management/registration-queue/components/choose-pet.vue
View file @
9e02f302
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
</el-table-column>
</el-table-column>
<el-table-column
label=
"会员等级"
min-width=
"80"
prop=
"membershipLevel"
show-overflow-tooltip
>
<el-table-column
label=
"会员等级"
min-width=
"80"
prop=
"membershipLevel"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
membershipLevel
||
'-'
}}
</span>
<span>
{{
scope
.
row
.
petOwnerBo
.
membershipLevel
||
'-'
}}
</span>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"会员卡余额"
min-width=
"80"
prop=
"balance"
show-overflow-tooltip
>
<el-table-column
label=
"会员卡余额"
min-width=
"80"
prop=
"balance"
show-overflow-tooltip
>
...
...
src/views/service-management/registration-queue/components/prescribing-modle.vue
View file @
9e02f302
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
</div>
</div>
<div>
<div>
<el-form-item
label=
"诊断时间"
prop=
"visitDate"
>
<el-form-item
label=
"诊断时间"
prop=
"visitDate"
>
<el-input
v-model=
"registerForm.
report
Time"
placeholder=
"暂无数据"
:disabled=
"true"
maxlength=
"20"
/>
<el-input
v-model=
"registerForm.
diagnosis
Time"
placeholder=
"暂无数据"
:disabled=
"true"
maxlength=
"20"
/>
</el-form-item>
</el-form-item>
</div>
</div>
<div>
<div>
...
...
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