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
ae855c32
Commit
ae855c32
authored
Apr 20, 2023
by
ww-xxy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改预约报表
parent
41324165
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
5 deletions
+22
-5
portal-manager-ui/admin/src/views/dataAdmin/components/makeRecordReport/makeRecordReport.vue
...ataAdmin/components/makeRecordReport/makeRecordReport.vue
+12
-3
portal-manager-ui/admin/src/views/dataAdmin/components/makeRecordReport/recordReportdetails.vue
...Admin/components/makeRecordReport/recordReportdetails.vue
+10
-2
No files found.
portal-manager-ui/admin/src/views/dataAdmin/components/makeRecordReport/makeRecordReport.vue
View file @
ae855c32
...
...
@@ -144,6 +144,13 @@ let statusItem = {
2
:
"
超时未取号
"
,
3
:
"
预约取消
"
,
};
const
style
=
{
0
:
"
排队中
"
,
1
:
"
办理中
"
,
2
:
"
办理中
"
,
3
:
"
办理中
"
,
4
:
"
办理完成
"
,
}
export
default
{
name
:
"
PortalAdminVueMakeRecordReport
"
,
data
()
{
...
...
@@ -231,6 +238,7 @@ export default {
filterVal
,
tableHeaders
,
statusItem
,
style
,
btnLoading
:
false
,
searchForm
:
{
status
:
""
,
...
...
@@ -268,10 +276,11 @@ export default {
this
.
getOrderList
();
}
this
.
tableSourceData
=
data
.
map
((
v
)
=>
{
delete
v
.
people
.
id
;
v
.
people
&&
delete
v
.
people
.
id
;
return
{
...
v
,
...
v
.
people
};
});
this
.
total
=
total
;
return
this
.
tableSourceData
;
}
},
...
...
@@ -339,7 +348,7 @@ export default {
for
(
let
item
of
data
)
{
Object
.
keys
(
this
.
statusItem
).
forEach
((
key
)
=>
{
if
(
item
.
status
==
key
)
{
item
.
status
=
this
.
statusItem
[
key
];
item
.
status
=
item
.
status
==
1
?
this
.
style
[
item
.
style
]:
this
.
statusItem
[
key
];
}
});
}
...
...
@@ -351,7 +360,7 @@ export default {
for
(
let
item
of
data
)
{
Object
.
keys
(
this
.
statusItem
).
forEach
((
key
)
=>
{
if
(
item
.
status
==
key
)
{
item
.
status
=
this
.
statusItem
[
key
];
item
.
status
=
item
.
status
==
1
?
this
.
style
[
item
.
style
]:
this
.
statusItem
[
key
];
}
});
}
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/makeRecordReport/recordReportdetails.vue
View file @
ae855c32
...
...
@@ -48,8 +48,8 @@
<!--
<p
v-for=
"item of 3"
>
事项1:生育证津贴办理
</p>
-->
</div>
<div
class=
"right_"
>
<span
class=
"status
1"
v-if=
"orderInfo.status != 1"
>
未签到
</span>
<span
class=
"status
2"
v-else
>
排队中
</span>
<span
class=
"status
2"
v-if=
"orderInfo.status == 1"
>
{{
style
[
orderInfo
.
style
]
}}
</span>
<span
class=
"status
1"
v-else
>
{{
statusItem
[
orderInfo
.
status
]
}}
</span>
</div>
</div>
<div
class=
"box2"
>
...
...
@@ -130,12 +130,20 @@ let statusItem = {
2
:
"
超时未取号
"
,
3
:
"
预约取消
"
,
};
const
style
=
{
0
:
"
排队中
"
,
1
:
"
办理中
"
,
2
:
"
办理中
"
,
3
:
"
办理中
"
,
4
:
"
办理完成
"
,
}
export
default
{
name
:
"
PortalAdminVueRecordReportdetails
"
,
data
()
{
return
{
orderStatus
,
statusItem
,
style
,
orderInfo
:
{},
// 预约信息
};
},
...
...
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