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
6ebb11de
Commit
6ebb11de
authored
Mar 18, 2025
by
英思-陈欢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
加载优化
parent
b2b00b43
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
20 additions
and
1 deletion
+20
-1
result.vue
src/pages/bill/result.vue
+1
-0
result.vue
src/pages/chronicDiseaseIdentification/result.vue
+1
-0
result.vue
src/pages/drug/result.vue
+1
-0
result.vue
src/pages/employeePaymentProgress/result.vue
+1
-0
result.vue
src/pages/handlingAgency/result.vue
+1
-0
result.vue
src/pages/hospital/result.vue
+1
-0
result.vue
src/pages/outpatientCoordinationPharmacy/result.vue
+1
-0
moneyResult.vue
src/pages/payFee/moneyResult.vue
+1
-0
payFeeResult.vue
src/pages/payFee/payFeeResult.vue
+1
-0
result.vue
src/pages/personalIncomeTax/result.vue
+1
-0
result.vue
src/pages/pharmacy/result.vue
+1
-0
result.vue
src/pages/relationshipTransfer/result.vue
+1
-0
result.vue
src/pages/residentPaymentProgress/result.vue
+1
-0
result.vue
src/pages/succour/result.vue
+1
-0
request.ts
src/services/request.ts
+6
-1
No files found.
src/pages/bill/result.vue
View file @
6ebb11de
...
...
@@ -118,6 +118,7 @@
}
})
}
}).
finally
(()
=>
{
xma
.
hideLoading
()
})
},
...
...
src/pages/chronicDiseaseIdentification/result.vue
View file @
6ebb11de
...
...
@@ -88,6 +88,7 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
}).
finally
(()
=>
{
xma
.
hideLoading
()
this
.
showLoading
=
false
})
...
...
src/pages/drug/result.vue
View file @
6ebb11de
...
...
@@ -134,6 +134,7 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
}).
finally
(()
=>
{
xma
.
hideLoading
()
this
.
showLoading
=
false
})
...
...
src/pages/employeePaymentProgress/result.vue
View file @
6ebb11de
...
...
@@ -166,6 +166,7 @@
})
this
.
list
=
res
;
}
}).
finally
(()
=>
{
xma
.
hideLoading
()
})
},
...
...
src/pages/handlingAgency/result.vue
View file @
6ebb11de
...
...
@@ -61,6 +61,7 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
}).
finally
(()
=>
{
xma
.
hideLoading
()
this
.
showLoading
=
false
})
...
...
src/pages/hospital/result.vue
View file @
6ebb11de
...
...
@@ -125,6 +125,7 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
}).
finally
(()
=>
{
xma
.
hideLoading
()
this
.
showLoading
=
false
})
...
...
src/pages/outpatientCoordinationPharmacy/result.vue
View file @
6ebb11de
...
...
@@ -84,6 +84,7 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
}).
finally
(()
=>
{
xma
.
hideLoading
()
this
.
showLoading
=
false
})
...
...
src/pages/payFee/moneyResult.vue
View file @
6ebb11de
...
...
@@ -78,6 +78,7 @@
}
})
}
}).
finally
(()
=>
{
xma
.
hideLoading
()
})
},
...
...
src/pages/payFee/payFeeResult.vue
View file @
6ebb11de
...
...
@@ -127,6 +127,7 @@
}
})
}
}).
finally
(()
=>
{
xma
.
hideLoading
()
})
},
...
...
src/pages/personalIncomeTax/result.vue
View file @
6ebb11de
...
...
@@ -122,6 +122,7 @@ export default Vue.extend({
}
})
}
}).
finally
(()
=>
{
xma
.
hideLoading
()
})
}
...
...
src/pages/pharmacy/result.vue
View file @
6ebb11de
...
...
@@ -103,6 +103,7 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
}).
finally
(()
=>
{
xma
.
hideLoading
()
this
.
showLoading
=
false
})
...
...
src/pages/relationshipTransfer/result.vue
View file @
6ebb11de
...
...
@@ -195,6 +195,7 @@
}
})
}
}).
finally
(()
=>
{
xma
.
hideLoading
()
})
}
...
...
src/pages/residentPaymentProgress/result.vue
View file @
6ebb11de
...
...
@@ -90,6 +90,7 @@
this
.
list
=
res
.
list
;
}
this
.
total
=
res
.
totalCount
;
}).
finally
(()
=>
{
xma
.
hideLoading
()
this
.
showLoading
=
false
})
...
...
src/pages/succour/result.vue
View file @
6ebb11de
...
...
@@ -153,6 +153,7 @@
}
})
}
}).
finally
(()
=>
{
xma
.
hideLoading
()
})
},
...
...
src/services/request.ts
View file @
6ebb11de
...
...
@@ -55,7 +55,12 @@ class Request {
title
:
'温馨提示'
,
content
:
result
.
data
?
(
result
.
data
.
msg
==
'失败'
?
'暂无数据'
:
result
.
data
.
msg
)
:
result
.
msg
?
(
result
.
msg
==
'失败'
?
'暂无数据'
:
result
.
msg
)
:
JSON
.
stringify
(
result
),
showCancel
:
false
,
confirmText
:
'关闭'
confirmText
:
'关闭'
,
success
:
()
=>
{
xma
.
navigateBack
({
delta
:
1
})
}
})
reject
(
responseOnRejected
?.(
result
.
data
.
msg
)
||
result
.
data
.
msgs
);
}
...
...
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