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
fbec0324
Commit
fbec0324
authored
Aug 24, 2023
by
小费同学阿
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
65286 已建宠物老客户-宠主信息部分缺少状态字段
parent
4c438cf9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
16 deletions
+41
-16
registration.js
src/api/business/registration.js
+1
-1
choose-pet.vue
...e-management/registration-queue/components/choose-pet.vue
+8
-5
prescribing-modle.vue
...ement/registration-queue/components/prescribing-modle.vue
+1
-1
registration-add.vue
...ervice-management/registration-queue/registration-add.vue
+31
-9
No files found.
src/api/business/registration.js
View file @
fbec0324
...
...
@@ -40,7 +40,7 @@ export function submitPrescribing(data) {
data
})
}
//
录入
诊断提交
// 诊断提交
export
function
insertDiagnosis
(
data
)
{
return
request
({
url
:
'/business/record/insertDiagnosis'
,
...
...
src/views/service-management/registration-queue/components/choose-pet.vue
View file @
fbec0324
...
...
@@ -57,8 +57,8 @@
row-key="id"
@selection-change="handleSelectionChange"
>
<el-table-column
align=
"center"
min-width=
"30"
reserve-selection
type=
"selection"
/>
<el-table-column
label=
"序号"
min-width=
"80"
show-overflow-tooltip
type=
"index"
/>
<el-table-column
align=
"center"
min-width=
"30"
reserve-selection
type=
"selection"
/>
<el-table-column
label=
"序号"
min-width=
"80"
show-overflow-tooltip
type=
"index"
/>
<el-table-column
label=
"宠主姓名"
min-width=
"80"
prop=
"ownerName"
show-overflow-tooltip
>
<template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
ownerName
||
'-'
}}
</span>
...
...
@@ -102,7 +102,9 @@
</el-table-column>
<el-table-column
label=
"宠物性别"
min-width=
"60"
prop=
"petSex"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.pet_sex"
:value=
"scope.row.petSex"
/>
<i
v-if=
"scope.row.petSex === '1'"
class=
"el-icon-male"
/>
<i
v-else-if=
"scope.row.petSex === '2'"
class=
"el-icon-female"
/>
<div
v-else
>
待定
</div>
</
template
>
</el-table-column>
</el-table>
...
...
@@ -336,9 +338,10 @@ export default {
}
}
}
::v-deep
th
{
::v-deep
th
{
.cell
{
.el-checkbox
{
.el-checkbox
{
display
:
none
;
}
}
...
...
src/views/service-management/registration-queue/components/prescribing-modle.vue
View file @
fbec0324
...
...
@@ -55,7 +55,7 @@
<el-form-item
label=
"体重"
prop=
"petWeight"
>
<div
style=
"display: flex;align-items: center;"
>
<el-input
v-model=
"registerForm.petWeight"
placeholder=
"-"
:disabled=
"true"
maxlength=
"20"
/>
<
span
class=
"unit-text"
>
kg
</span
>
<
div
style=
"margin-left:5px;display: inline-flex"
><span>
k
</span><span>
g
</span></div
>
</div>
</el-form-item>
</el-col>
...
...
src/views/service-management/registration-queue/registration-add.vue
View file @
fbec0324
...
...
@@ -267,11 +267,26 @@
</el-col>
<el-col
v-if=
"form.customers !=='0'"
:span=
"8"
>
<el-form-item
label=
"会员卡余额"
>
<div
style=
"display: flex; align-items: center;"
>
<el-input
v-model
.
trim=
"form.cardBalance"
placeholder=
"-"
disabled
/>
<span
class=
"unit-text"
>
元
</span>
</div>
</el-form-item>
</el-col>
<el-col
:span=
"8"
v-if=
"form.customers !=='0'"
class=
"form__left"
>
<el-form-item
label=
"状态"
>
<el-select
v-model=
"form.status"
class=
"vaccine-situation"
placeholder=
"-"
disabled
>
<el-option
v-for=
"(
{value, label}) in statusList"
:key="label"
:label="label"
:value="value"
/>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
...
...
@@ -287,13 +302,13 @@
</el-form>
<!--进度信息-->
<schedule-info
:schedule-key=
"scheduleKey"
/>
<schedule-info
:schedule-key=
"scheduleKey"
/>
<!-- 医生卡片-->
<doctor-card
@
doctorDetail=
"handleDoctor"
@
registration=
"handleRegister"
/>
<doctor-card
@
doctorDetail=
"handleDoctor"
@
registration=
"handleRegister"
/>
<!-- 宠物选择弹框-->
<choose-pet
:is-show=
"showPetModle"
@
petChoose=
"petChoose"
@
petModleClose=
"closePetModle"
/>
<choose-pet
:is-show=
"showPetModle"
@
petChoose=
"petChoose"
@
petModleClose=
"closePetModle"
/>
<!-- 医生详情弹出框 -->
<doctor-detail
:doctor-id=
"doctorId"
:is-show=
"showDoctorModle"
@
doctorModleClose=
"closeDoctorModle"
/>
<doctor-detail
:doctor-id=
"doctorId"
:is-show=
"showDoctorModle"
@
doctorModleClose=
"closeDoctorModle"
/>
<!-- 挂号/加号弹出框-->
<register-modle
v-if=
"showRegistrationModle"
...
...
@@ -403,7 +418,7 @@ export default {
personName
:
''
,
phone
:
''
,
location
:
''
,
status
:
'
0
'
,
status
:
''
,
positionDescription
:
''
},
showPetModle
:
false
,
// 选择宠物弹出框
...
...
@@ -721,7 +736,8 @@ export default {
.registration-add-module
{
background-color
:
#FFFFFF
;
padding
:
40px
;
.registration-title
{
.registration-title
{
font-size
:
24px
;
font-weight
:
bold
;
color
:
#333333
;
...
...
@@ -729,6 +745,7 @@ export default {
text-align
:
center
;
margin-bottom
:
33px
;
}
.basicInformation
{
display
:
flex
;
flex-direction
:
row
;
...
...
@@ -741,9 +758,11 @@ export default {
display
:
flex
;
}
}
.pet-weight-single
{
margin-left
:
10px
;
}
::v-deep
.el-form-item--small.el-form-item
{
margin-right
:
0
!
important
;
}
...
...
@@ -784,13 +803,16 @@ export default {
</
style
>
<
style
lang=
"scss"
>
.registration-add-module
{
.pet-sex
,
.sterilization-status
,
.vaccine-situation
,
.pet-insure
{
.pet-sex
,
.sterilization-status
,
.vaccine-situation
,
.pet-insure
{
width
:
100%
;
}
.pet-breed-col
{
display
:
flex
;
flex-basis
:
0
;
.pet-breed-col
{
display
:
flex
;
flex-basis
:
0
;
flex-grow
:
0
;
}
.el-form-item.petBreed
{
.el-form-item.el-form-item--small
{
margin-right
:
0
!
important
;
...
...
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