Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
smart_gov_platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
smart_gov_platform
Commits
ccfaf7df
Commit
ccfaf7df
authored
Jun 30, 2025
by
姬鋆屾
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:调整自助存取件报表的展示字段及导出字段
parent
4a8b4680
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
1 deletion
+31
-1
portal-manager-ui/admin/src/views/dataAdmin/components/pickUp/depositAdminRecord.vue
.../views/dataAdmin/components/pickUp/depositAdminRecord.vue
+10
-0
portal-manager-ui/admin/src/views/dataAdmin/components/pickUp/depositRecord.vue
...n/src/views/dataAdmin/components/pickUp/depositRecord.vue
+10
-0
portal-manager-ui/admin/src/views/dataAdmin/components/pickUp/otherRecord.vue
...min/src/views/dataAdmin/components/pickUp/otherRecord.vue
+11
-1
No files found.
portal-manager-ui/admin/src/views/dataAdmin/components/pickUp/depositAdminRecord.vue
View file @
ccfaf7df
...
...
@@ -293,6 +293,11 @@ export default {
// 深度克隆避免影响页面表格展示
let
data
=
this
.
$_
.
cloneDeep
(
this
.
excelData
);
for
(
let
item
of
data
)
{
item
.
status
==
1
?
(
item
.
update_time
=
"
--
"
)
:
item
.
update_time
?
(
item
.
update_time
=
item
.
update_time
)
:
(
item
.
update_time
=
"
--
"
);
item
.
enter_id
==
0
?
(
item
.
enter_id
=
"
自由存取件
"
)
:
item
.
enter_id
!=
0
...
...
@@ -322,6 +327,11 @@ export default {
:
item
.
enter_id
!=
0
?
(
item
.
enter_id
=
"
业务存取件
"
)
:
(
item
.
enter_id
=
"
--
"
);
item
.
status
==
1
?
(
item
.
update_time
=
"
--
"
)
:
item
.
update_time
?
(
item
.
update_time
=
item
.
update_time
)
:
(
item
.
update_time
=
"
--
"
);
Object
.
keys
(
obj
).
forEach
((
key
)
=>
{
if
(
item
.
status
==
key
)
{
item
.
status
=
obj
[
key
];
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/pickUp/depositRecord.vue
View file @
ccfaf7df
...
...
@@ -292,6 +292,11 @@ export default {
// 深度克隆避免影响页面表格展示
let
data
=
this
.
$_
.
cloneDeep
(
this
.
excelData
);
for
(
let
item
of
data
)
{
item
.
status
==
1
?
(
item
.
update_time
=
"
--
"
)
:
item
.
update_time
?
(
item
.
update_time
=
item
.
update_time
)
:
(
item
.
update_time
=
"
--
"
);
item
.
enter_id
==
0
?
(
item
.
enter_id
=
"
自由存取件
"
)
:
item
.
enter_id
!=
0
...
...
@@ -321,6 +326,11 @@ export default {
:
item
.
enter_id
!=
0
?
(
item
.
enter_id
=
"
业务存取件
"
)
:
(
item
.
enter_id
=
"
--
"
);
item
.
status
==
1
?
(
item
.
update_time
=
"
--
"
)
:
item
.
update_time
?
(
item
.
update_time
=
item
.
update_time
)
:
(
item
.
update_time
=
"
--
"
);
Object
.
keys
(
obj
).
forEach
((
key
)
=>
{
if
(
item
.
status
==
key
)
{
item
.
status
=
obj
[
key
];
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/pickUp/otherRecord.vue
View file @
ccfaf7df
...
...
@@ -49,8 +49,8 @@ const filterVal = [
"
userType
"
,
"
operationType
"
,
"
boxNo
"
,
"
create_time
"
,
"
qjg_name
"
,
"
create_time
"
,
];
// 导出的表头字段名,需要导出表格字段名
export
default
{
components
:
{},
...
...
@@ -229,6 +229,11 @@ export default {
item
.
userType
=
obj
[
key
];
}
});
Object
.
keys
(
this
.
operationTypeList
).
forEach
((
key
)
=>
{
if
(
item
.
operationType
==
key
)
{
item
.
operationType
=
this
.
operationTypeList
[
key
];
}
});
}
export2Excel
(
this
.
tHeader
,
...
...
@@ -248,6 +253,11 @@ export default {
item
.
userType
=
obj
[
key
];
}
});
Object
.
keys
(
this
.
operationTypeList
).
forEach
((
key
)
=>
{
if
(
item
.
operationType
==
key
)
{
item
.
operationType
=
this
.
operationTypeList
[
key
];
}
});
}
export2Excel
(
this
.
tHeader
,
...
...
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