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
2873f1ef
Commit
2873f1ef
authored
Mar 12, 2025
by
英思-陈欢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加loading
parent
611ffd12
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
81 additions
and
19 deletions
+81
-19
App.vue
src/App.vue
+6
-0
result.vue
src/pages/bill/result.vue
+4
-2
result.vue
src/pages/chronicDiseaseIdentification/result.vue
+7
-1
result.vue
src/pages/drug/result.vue
+7
-1
result.vue
src/pages/employeePaymentProgress/result.vue
+2
-0
result.vue
src/pages/handlingAgency/result.vue
+7
-1
result.vue
src/pages/hospital/result.vue
+7
-1
result.vue
src/pages/outpatientCoordinationPharmacy/result.vue
+7
-1
moneyResult.vue
src/pages/payFee/moneyResult.vue
+4
-2
payFeeResult.vue
src/pages/payFee/payFeeResult.vue
+4
-2
result.vue
src/pages/personalIncomeTax/result.vue
+4
-2
result.vue
src/pages/pharmacy/result.vue
+7
-1
result.vue
src/pages/relationshipTransfer/result.vue
+4
-2
result.vue
src/pages/residentPaymentProgress/result.vue
+7
-1
result.vue
src/pages/succour/result.vue
+4
-2
loading.gif
src/static/images/loading.gif
+0
-0
No files found.
src/App.vue
View file @
2873f1ef
...
...
@@ -103,4 +103,10 @@
padding
:
0
;
box-sizing
:
border-box
;
}
.loading-icon
{
display
:
block
;
margin
:
0
auto
;
width
:
26px
;
height
:
26px
;
}
</
style
>
src/pages/bill/result.vue
View file @
2873f1ef
<
template
>
<view
class=
"container"
>
<view
class=
"content"
>
<view
class=
"list"
>
<view
class=
"list"
v-if=
"detail"
>
<view
class=
"list-item u-flex u-flex-between u-flex-items-center"
>
<text>
个人账户支付
</text>
<view
class=
"u-flex u-flex-center u-flex-items-center"
>
...
...
@@ -93,10 +93,11 @@
data
()
{
return
{
form
:
{}
as
any
,
detail
:
{}
as
any
,
detail
:
null
as
any
,
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
();
},
...
...
@@ -117,6 +118,7 @@
}
})
}
xma
.
hideLoading
()
})
},
},
...
...
src/pages/chronicDiseaseIdentification/result.vue
View file @
2873f1ef
...
...
@@ -42,6 +42,7 @@
</view>
</view>
</view>
<image
src=
"@/static/images/loading.gif"
class=
"loading-icon"
v-if=
"showLoading"
></image>
</view>
</view>
</
template
>
...
...
@@ -58,10 +59,12 @@
getAreaName
,
form
:
null
as
any
,
list
:
[],
total
:
0
total
:
0
,
showLoading
:
false
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
();
},
...
...
@@ -85,11 +88,14 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
xma
.
hideLoading
()
this
.
showLoading
=
false
})
},
},
onReachBottom
()
{
if
(
this
.
total
>
this
.
list
.
length
)
{
this
.
showLoading
=
true
this
.
form
.
pageNum
+=
1
;
this
.
getList
(
'loadmore'
);
}
...
...
src/pages/drug/result.vue
View file @
2873f1ef
...
...
@@ -85,6 +85,7 @@
</view>
</view>
</view>
<image
src=
"@/static/images/loading.gif"
class=
"loading-icon"
v-if=
"showLoading"
></image>
</view>
</
template
>
...
...
@@ -99,11 +100,13 @@
getAreaName
,
form
:
{}
as
any
,
list
:
[],
total
:
0
total
:
0
,
showLoading
:
false
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
();
},
...
...
@@ -131,11 +134,14 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
xma
.
hideLoading
()
this
.
showLoading
=
false
})
},
},
onReachBottom
()
{
if
(
this
.
total
>
this
.
list
.
length
)
{
this
.
showLoading
=
true
this
.
form
.
pageNum
+=
1
;
this
.
getList
(
'loadmore'
);
}
...
...
src/pages/employeePaymentProgress/result.vue
View file @
2873f1ef
...
...
@@ -142,6 +142,7 @@
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
();
},
...
...
@@ -165,6 +166,7 @@
})
this
.
list
=
res
;
}
xma
.
hideLoading
()
})
},
},
...
...
src/pages/handlingAgency/result.vue
View file @
2873f1ef
...
...
@@ -18,6 +18,7 @@
</view>
</view>
</view>
<image
src=
"@/static/images/loading.gif"
class=
"loading-icon"
v-if=
"showLoading"
></image>
</view>
</view>
</
template
>
...
...
@@ -31,10 +32,12 @@
return
{
form
:
null
as
any
,
list
:
[],
total
:
0
total
:
0
,
showLoading
:
false
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
();
},
...
...
@@ -58,11 +61,14 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
xma
.
hideLoading
()
this
.
showLoading
=
false
})
},
},
onReachBottom
()
{
if
(
this
.
total
>
this
.
list
.
length
)
{
this
.
showLoading
=
true
this
.
form
.
pageNum
+=
1
;
this
.
getList
(
'loadmore'
);
}
...
...
src/pages/hospital/result.vue
View file @
2873f1ef
...
...
@@ -75,6 +75,7 @@
</view>
</view>
</view>
<image
src=
"@/static/images/loading.gif"
class=
"loading-icon"
v-if=
"showLoading"
></image>
</view>
</view>
</
template
>
...
...
@@ -91,10 +92,12 @@
getAreaName
,
form
:
null
as
any
,
list
:
[],
total
:
0
total
:
0
,
showLoading
:
false
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
();
},
...
...
@@ -122,11 +125,14 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
xma
.
hideLoading
()
this
.
showLoading
=
false
})
},
},
onReachBottom
()
{
if
(
this
.
total
>
this
.
list
.
length
)
{
this
.
showLoading
=
true
this
.
form
.
pageNum
+=
1
;
this
.
getList
(
'loadmore'
);
}
...
...
src/pages/outpatientCoordinationPharmacy/result.vue
View file @
2873f1ef
...
...
@@ -39,6 +39,7 @@
</view>
</view>
</view>
<image
src=
"@/static/images/loading.gif"
class=
"loading-icon"
v-if=
"showLoading"
></image>
</view>
</view>
</
template
>
...
...
@@ -54,10 +55,12 @@
getAreaName
,
form
:
{}
as
any
,
list
:
[],
total
:
0
total
:
0
,
showLoading
:
false
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
();
},
...
...
@@ -81,11 +84,14 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
xma
.
hideLoading
()
this
.
showLoading
=
false
})
},
},
onReachBottom
()
{
if
(
this
.
total
>
this
.
list
.
length
)
{
this
.
showLoading
=
true
this
.
form
.
pageNum
+=
1
;
this
.
getList
(
'loadmore'
);
}
...
...
src/pages/payFee/moneyResult.vue
View file @
2873f1ef
<
template
>
<view
class=
"container"
>
<view
class=
"content"
>
<view
class=
"list"
>
<view
class=
"list"
v-if=
"detail"
>
<view
class=
"list-item u-flex u-flex-between u-flex-items-center"
>
<text>
身份证件类型
</text>
<view
class=
"u-flex u-flex-center u-flex-items-center"
>
...
...
@@ -53,10 +53,11 @@
return
{
getKeyValue
,
form
:
{}
as
any
,
detail
:
{}
as
any
,
detail
:
null
as
any
,
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getDetail
();
},
...
...
@@ -77,6 +78,7 @@
}
})
}
xma
.
hideLoading
()
})
},
},
...
...
src/pages/payFee/payFeeResult.vue
View file @
2873f1ef
<
template
>
<view
class=
"container"
>
<view
class=
"container"
v-if=
"detail"
>
<view
class=
"header"
>
<view
class=
"info u-flex"
>
<image
src=
""
></image>
...
...
@@ -102,10 +102,11 @@
return
{
getKeyValue
,
form
:
{}
as
any
,
detail
:
{}
as
any
,
detail
:
null
as
any
,
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getDetail
();
},
...
...
@@ -126,6 +127,7 @@
}
})
}
xma
.
hideLoading
()
})
},
},
...
...
src/pages/personalIncomeTax/result.vue
View file @
2873f1ef
<
template
>
<view
class=
"container"
>
<view
class=
"content"
>
<view
class=
"list"
>
<view
class=
"list"
v-if=
"detail"
>
<!--
<view
class=
"name list-item u-flex u-flex-items-center"
>
<image
src=
"@/static/images/tax.png"
></image>
<text>
9009900000000
</text>
...
...
@@ -97,10 +97,11 @@ export default Vue.extend({
data
()
{
return
{
form
:
{}
as
any
,
detail
:
{}
as
any
,
detail
:
null
as
any
,
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
()
},
...
...
@@ -121,6 +122,7 @@ export default Vue.extend({
}
})
}
xma
.
hideLoading
()
})
}
},
...
...
src/pages/pharmacy/result.vue
View file @
2873f1ef
...
...
@@ -49,6 +49,7 @@
</view>
</view>
</view>
<image
src=
"@/static/images/loading.gif"
class=
"loading-icon"
v-if=
"showLoading"
></image>
</view>
</view>
</
template
>
...
...
@@ -65,10 +66,12 @@
getKeyValue
,
form
:
{}
as
any
,
list
:
[],
total
:
0
total
:
0
,
showLoading
:
false
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
();
},
...
...
@@ -100,11 +103,14 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
xma
.
hideLoading
()
this
.
showLoading
=
false
})
},
},
onReachBottom
()
{
if
(
this
.
total
>
this
.
list
.
length
)
{
this
.
showLoading
=
true
this
.
form
.
pageNum
+=
1
;
this
.
getList
(
'loadmore'
);
}
...
...
src/pages/relationshipTransfer/result.vue
View file @
2873f1ef
<
template
>
<view
class=
"container"
>
<view
class=
"content"
>
<view
class=
"content"
v-if=
"detail"
>
<view
class=
"list"
>
<view
class=
"name list-item u-flex u-flex-between u-flex-items-center"
>
<text>
基本信息
</text>
...
...
@@ -170,10 +170,11 @@
return
{
getKeyValue
,
form
:
{}
as
any
,
detail
:
{}
as
any
,
detail
:
null
as
any
,
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getDetail
();
},
...
...
@@ -194,6 +195,7 @@
}
})
}
xma
.
hideLoading
()
})
}
},
...
...
src/pages/residentPaymentProgress/result.vue
View file @
2873f1ef
...
...
@@ -39,6 +39,7 @@
</view>
</view>
</view>
<image
src=
"@/static/images/loading.gif"
class=
"loading-icon"
v-if=
"showLoading"
></image>
</view>
</view>
</
template
>
...
...
@@ -54,10 +55,12 @@
getKeyValue
,
form
:
null
as
any
,
list
:
[]
as
any
,
total
:
0
total
:
0
,
showLoading
:
false
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getList
();
},
...
...
@@ -87,11 +90,14 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
xma
.
hideLoading
()
this
.
showLoading
=
false
})
},
},
onReachBottom
()
{
if
(
this
.
total
>
this
.
list
.
length
)
{
this
.
showLoading
=
true
this
.
form
.
pageNum
+=
1
;
this
.
getList
(
'loadmore'
);
}
...
...
src/pages/succour/result.vue
View file @
2873f1ef
<
template
>
<view
class=
"container"
>
<view
class=
"content"
>
<view
class=
"content"
v-if=
"detail"
>
<view
class=
"list"
>
<view
class=
"name list-item u-flex u-flex-between u-flex-items-center"
>
<text>
基本信息
</text>
...
...
@@ -124,10 +124,11 @@
data
()
{
return
{
form
:
{}
as
any
,
detail
:
{}
as
any
,
detail
:
null
as
any
,
}
},
onLoad
(
options
:
any
)
{
xma
.
showLoading
({
title
:
'加载中'
})
this
.
form
=
JSON
.
parse
(
options
.
form
)
this
.
getDetail
();
},
...
...
@@ -148,6 +149,7 @@
}
})
}
xma
.
hideLoading
()
})
},
},
...
...
src/static/images/loading.gif
0 → 100755
View file @
2873f1ef
578 Bytes
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