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
2cbc593a
Commit
2cbc593a
authored
Sep 18, 2023
by
陈明豪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug67940
parent
cb67fec7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
59 additions
and
12 deletions
+59
-12
hospital-data-statistics.vue
...ics/hospital-data-statistics/hospital-data-statistics.vue
+16
-5
pet-data-statistics.vue
...ta-statistics/pet-data-statistics/pet-data-statistics.vue
+17
-2
service-statistics.vue
...data-statistics/service-statistics/service-statistics.vue
+26
-5
No files found.
src/views/data-statistics/hospital-data-statistics/hospital-data-statistics.vue
View file @
2cbc593a
...
...
@@ -45,7 +45,7 @@
<div
class=
"bottomText"
>
<img
src=
"../../../assets/data_statistics/ruzhuyiyuan_icon_shouquanyiyuan@2x.png"
height=
"24"
width=
"24"
>
<div
class=
"bottom_font"
>
当前长期授权医院数
当前长期授权医院数
量
</div>
</div>
</div>
...
...
@@ -262,7 +262,7 @@
<span>
{{
scope
.
$index
+
1
}}
</span>
</
template
>
</el-table-column>
<el-table-column
sortable
label=
"医院名称"
align=
"left"
prop=
"hospitalName"
min-width=
"1
2
0"
show-overflow-tooltip
/>
<el-table-column
sortable
label=
"医院名称"
align=
"left"
prop=
"hospitalName"
min-width=
"1
0
0"
show-overflow-tooltip
/>
<el-table-column
sortable
label=
"医院ID"
align=
"left"
prop=
"ownId"
min-width=
"120"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
ownId
||
'-'
}}
</span>
...
...
@@ -277,7 +277,7 @@
</
template
>
</el-table-column>
<el-table-column
sortable
label=
"联系人"
align=
"left"
min-width=
"60"
prop=
"contactPerson"
show-overflow-tooltip
/>
<el-table-column
sortable
label=
"联系人手机号"
align=
"left"
min-width=
"
8
0"
prop=
"phonenumber"
/>
<el-table-column
sortable
label=
"联系人手机号"
align=
"left"
min-width=
"
10
0"
prop=
"phonenumber"
/>
<el-table-column
sortable
label=
"医院地址"
align=
"left"
min-width=
"120"
prop=
"hospitalAllAddress"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
hospitalAllAddress
}}
</span>
...
...
@@ -288,7 +288,7 @@
<span>
{{
parseTime
(
scope
.
row
.
createTime
,
'{y
}
/{m
}
/{d
}
'
)
}}
<
/span
>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
sortable
label
=
"授权到期日期"
align
=
"left"
min
-
width
=
"
12
0"
prop
=
"authorizationExpirationDate"
>
<
el
-
table
-
column
sortable
label
=
"授权到期日期"
align
=
"left"
min
-
width
=
"
9
0"
prop
=
"authorizationExpirationDate"
>
<
template
slot
-
scope
=
"scope"
>
<
span
v
-
if
=
"getHospitalExpireDays(showDueDate(scope.row.authorizationExpirationDate)) >= 30"
>
{{
showDueDate
(
scope
.
row
.
authorizationExpirationDate
)
||
'-'
}}
<
/span
>
<
span
v
-
else
style
=
"color: #FF9D4E"
>
{{
showDueDate
(
scope
.
row
.
authorizationExpirationDate
)
||
'-'
}}
<
/span
>
...
...
@@ -614,13 +614,15 @@ export default {
padding
-
top
:
15
px
;
display
:
flex
;
.
bottom_font
{
//line-height: 24px;
font
-
size
:
12
px
;
font
-
family
:
Microsoft
YaHei
;
font
-
weight
:
400
;
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
@@ -655,6 +657,9 @@ export default {
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
@@ -689,6 +694,9 @@ export default {
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
@@ -723,6 +731,9 @@ export default {
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
src/views/data-statistics/pet-data-statistics/pet-data-statistics.vue
View file @
2cbc593a
...
...
@@ -254,7 +254,7 @@
<el-table-column
sortable
label=
"宠主ID"
min-width=
"140"
show-overflow-tooltip
prop=
"ruleId"
/>
<el-table-column
sortable
label=
"手机号"
min-width=
"80"
show-overflow-tooltip
prop=
"phone"
/>
<el-table-column
sortable
label=
"注册日期"
min-width=
"80"
show-overflow-tooltip
prop=
"registrationDate"
/>
<el-table-column
sortable
label=
"绑定医院数量"
min-width=
"8
0
"
show-overflow-tooltip
prop=
"hosNum"
>
<el-table-column
sortable
label=
"绑定医院数量"
min-width=
"8
5
"
show-overflow-tooltip
prop=
"hosNum"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
hosNum
+
' 家'
}}
</
template
>
...
...
@@ -264,7 +264,7 @@
{{
scope
.
row
.
cardNum
+
' 张'
}}
</
template
>
</el-table-column>
<el-table-column
sortable
label=
"绑定宠物数量"
min-width=
"8
0
"
show-overflow-tooltip
prop=
"petNum"
>
<el-table-column
sortable
label=
"绑定宠物数量"
min-width=
"8
5
"
show-overflow-tooltip
prop=
"petNum"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
petNum
+
' 只'
}}
</
template
>
...
...
@@ -937,6 +937,9 @@ export default {
line-height
:
24px
;
color
:
#333333
;
margin-left
:
5px
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
}
}
...
...
@@ -971,6 +974,9 @@ export default {
line-height
:
24px
;
color
:
#333333
;
margin-left
:
5px
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
}
}
...
...
@@ -1005,6 +1011,9 @@ export default {
line-height
:
24px
;
color
:
#333333
;
margin-left
:
5px
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
}
}
...
...
@@ -1039,6 +1048,9 @@ export default {
line-height
:
24px
;
color
:
#333333
;
margin-left
:
5px
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
}
}
...
...
@@ -1073,6 +1085,9 @@ export default {
line-height
:
24px
;
color
:
#333333
;
margin-left
:
5px
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;
}
}
}
...
...
src/views/data-statistics/service-statistics/service-statistics.vue
View file @
2cbc593a
...
...
@@ -238,7 +238,7 @@
</
template
>
</el-table-column>
<el-table-column
sortable
label=
"操作医院"
show-overflow-tooltip
prop=
"hospitalName"
/>
<el-table-column
sortable
label=
"提交时间"
show-overflow-tooltip
prop=
"appointTime"
>
<el-table-column
sortable
label=
"提交时间"
min-width=
"100"
show-overflow-tooltip
prop=
"appointTime"
>
<
template
slot-scope=
"scope"
>
{{
parseTime
(
scope
.
row
.
appointTime
,
'{y
}
/{m
}
/{d
}
{h
}
:{i
}
'
)
}}
<
/template
>
...
...
@@ -259,11 +259,11 @@
<
template
slot
-
scope
=
"scope"
>
<
span
v
-
if
=
"scope.row.checkSchedule >= 3"
style
=
"
font-size: 12px;font-family: Microsoft YaHei;ont-weight: 400;
color: #5FB54B;"
style
=
"color: #5FB54B;"
>
•
已完成
<
/span
>
<
span
v
-
else
style
=
"
font-size: 12px;font-family: Microsoft YaHei;font-weight: 400;
color: #FF9D4E;"
style
=
"color: #FF9D4E;"
>
•
待检查
<
/span
>
<!--
•
过期
-->
<
/template
>
...
...
@@ -637,7 +637,7 @@
<
/el-table-column
>
<
el
-
table
-
column
label
=
"检查项目"
min
-
width
=
"120px"
show
-
overflow
-
tooltip
prop
=
"itemName"
/>
<
el
-
table
-
column
label
=
"服务次数"
show
-
overflow
-
tooltip
prop
=
"number"
/>
<
el
-
table
-
column
label
=
"总服务金额(元)"
show
-
overflow
-
tooltip
prop
=
"money"
>
<
el
-
table
-
column
label
=
"总服务金额(元)"
min
-
width
=
"90px"
show
-
overflow
-
tooltip
prop
=
"money"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
scope
.
row
.
money
.
toFixed
(
2
)
}}
<
/span
>
<
/template
>
...
...
@@ -666,7 +666,7 @@
<
/el-table-column
>
<
el
-
table
-
column
label
=
"治疗项目"
min
-
width
=
"120px"
show
-
overflow
-
tooltip
prop
=
"itemName"
/>
<
el
-
table
-
column
label
=
"服务次数"
show
-
overflow
-
tooltip
prop
=
"number"
/>
<
el
-
table
-
column
label
=
"总销售金额(元)"
show
-
overflow
-
tooltip
prop
=
"money"
>
<
el
-
table
-
column
label
=
"总销售金额(元)"
min
-
width
=
"90px"
show
-
overflow
-
tooltip
prop
=
"money"
>
<
template
slot
-
scope
=
"scope"
>
<
span
>
{{
scope
.
row
.
money
.
toFixed
(
2
)
}}
<
/span
>
<
/template
>
...
...
@@ -1102,6 +1102,9 @@ export default {
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
@@ -1136,6 +1139,9 @@ export default {
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
@@ -1170,6 +1176,9 @@ export default {
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
@@ -1204,6 +1213,9 @@ export default {
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
@@ -1238,6 +1250,9 @@ export default {
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
@@ -1272,6 +1287,9 @@ export default {
line
-
height
:
30
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
@@ -1306,6 +1324,9 @@ export default {
line
-
height
:
24
px
;
color
:
#
333333
;
margin
-
left
:
5
px
;
overflow
:
hidden
;
text
-
overflow
:
ellipsis
;
white
-
space
:
nowrap
;
}
}
}
...
...
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