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
5513f630
Commit
5513f630
authored
Mar 04, 2025
by
英思-陈欢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 隐藏无枚举字段
parent
460864b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
17 deletions
+12
-17
result.vue
src/pages/employeePaymentProgress/result.vue
+12
-17
No files found.
src/pages/employeePaymentProgress/result.vue
View file @
5513f630
...
...
@@ -8,19 +8,19 @@
</view>
<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"
style=
"margin-right: 23rpx;"
>
<view
class=
"u-flex u-flex-center u-flex-items-center"
>
{{
item
.
empNo
}}
</view>
</view>
<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"
style=
"margin-right: 23rpx;"
>
<view
class=
"u-flex u-flex-center u-flex-items-center"
>
{{
item
.
psnNo
}}
</view>
</view>
<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"
style=
"margin-right: 23rpx;"
>
<view
class=
"u-flex u-flex-center u-flex-items-center"
>
{{
item
.
cashym
}}
</view>
</view>
...
...
@@ -42,7 +42,8 @@
{{
getKeyValue
(
'allInsuranceTypeOptions'
,
item
.
insutype
)
}}
</view>
</view>
<view
class=
"list-item u-flex u-flex-between u-flex-items-center"
>
<!-- 没有枚举值接口 暂时隐藏 -->
<!--
<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"
>
{{
item
.
psnType
}}
...
...
@@ -59,7 +60,7 @@
<view
class=
"u-flex u-flex-center u-flex-items-center"
>
{{
item
.
insuIdet
}}
</view>
</view>
</view>
-->
<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"
>
...
...
@@ -129,7 +130,7 @@
<
script
lang=
"ts"
>
import
Vue
from
'vue'
;
import
Api
from
'@/services/index'
;
import
{
getKeyValue
,
}
from
'@/common/util.js'
import
{
getKeyValue
,
formatTime
}
from
'@/common/util.js'
export
default
Vue
.
extend
({
data
()
{
...
...
@@ -147,9 +148,7 @@
methods
:
{
getList
(
type
=
''
)
{
Api
.
foo
.
paymentProgress
(
this
.
form
).
then
((
res
:
any
)
=>
{
if
(
type
==
'loadmore'
)
{
this
.
list
=
[...
this
.
list
,
...
res
.
list
]
as
any
;
}
else
if
(
!
res
||
res
.
list
.
length
==
0
)
{
if
(
!
res
||
res
.
length
==
0
)
{
xma
.
showModal
({
title
:
'暂无数据'
,
showCancel
:
false
,
...
...
@@ -161,18 +160,14 @@
}
})
}
else
{
this
.
list
=
res
.
list
;
res
.
forEach
((
item
:
any
)
=>
{
item
.
clctTime
=
item
.
clctTime
?
formatTime
(
item
.
clctTime
)
:
item
.
clctTime
;
})
this
.
list
=
res
;
}
this
.
total
=
res
.
totalCount
;
})
},
},
onReachBottom
()
{
if
(
this
.
total
>
this
.
list
.
length
)
{
this
.
form
.
pageNum
+=
1
;
this
.
getList
(
'loadmore'
);
}
}
});
</
script
>
...
...
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