Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yibao
Project
Project
Details
Activity
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
tanjuanjuan
yibao
Commits
460864b4
Commit
460864b4
authored
Mar 03, 2025
by
英思-陈欢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化无数据提示
parent
e1c9bf0e
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
result.vue
src/pages/bill/result.vue
+1
-1
result.vue
src/pages/chronicDiseaseIdentification/result.vue
+1
-1
result.vue
src/pages/drug/result.vue
+1
-1
result.vue
src/pages/employeePaymentProgress/result.vue
+1
-1
result.vue
src/pages/handlingAgency/result.vue
+1
-1
result.vue
src/pages/hospital/result.vue
+1
-1
result.vue
src/pages/outpatientCoordinationPharmacy/result.vue
+1
-1
result.vue
src/pages/pharmacy/result.vue
+1
-1
result.vue
src/pages/residentPaymentProgress/result.vue
+1
-1
No files found.
src/pages/bill/result.vue
View file @
460864b4
...
...
@@ -106,7 +106,7 @@
Api
.
foo
.
queryYearsBill
(
this
.
form
).
then
((
res
:
any
)
=>
{
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
res
.
list
.
length
==
0
)
{
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
src/pages/chronicDiseaseIdentification/result.vue
View file @
460864b4
...
...
@@ -70,7 +70,7 @@
Api
.
foo
.
chronicDiseaseIdentificationHospital
(
this
.
form
).
then
((
res
:
any
)
=>
{
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
res
.
list
.
length
==
0
)
{
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
src/pages/drug/result.vue
View file @
460864b4
...
...
@@ -116,7 +116,7 @@
// })
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
res
.
list
.
length
==
0
)
{
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
src/pages/employeePaymentProgress/result.vue
View file @
460864b4
...
...
@@ -149,7 +149,7 @@
Api
.
foo
.
paymentProgress
(
this
.
form
).
then
((
res
:
any
)
=>
{
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
res
.
list
.
length
==
0
)
{
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
src/pages/handlingAgency/result.vue
View file @
460864b4
...
...
@@ -43,7 +43,7 @@
Api
.
foo
.
handingAgencyQuery
(
this
.
form
).
then
((
res
:
any
)
=>
{
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
res
.
list
.
length
==
0
)
{
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
src/pages/hospital/result.vue
View file @
460864b4
...
...
@@ -107,7 +107,7 @@
})
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
res
.
list
.
length
==
0
)
{
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
src/pages/outpatientCoordinationPharmacy/result.vue
View file @
460864b4
...
...
@@ -66,7 +66,7 @@
Api
.
foo
.
overallPlanningPharmacyQuery
(
this
.
form
).
then
((
res
:
any
)
=>
{
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
res
.
list
.
length
==
0
)
{
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
src/pages/pharmacy/result.vue
View file @
460864b4
...
...
@@ -81,7 +81,7 @@
})
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
res
.
list
.
length
==
0
)
{
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
src/pages/residentPaymentProgress/result.vue
View file @
460864b4
...
...
@@ -69,7 +69,7 @@
})
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
res
.
list
.
length
==
0
)
{
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
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