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
5bcb01b2
Commit
5bcb01b2
authored
Jun 27, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
5d666c63
7c02d3b7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
73 additions
and
1 deletion
+73
-1
base-manager-ui/admin/src/pages/basicset/workman/personnel.vue
...manager-ui/admin/src/pages/basicset/workman/personnel.vue
+1
-1
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
...n/src/views/dataAdmin/components/queueCall/callRecord.vue
+36
-0
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
.../src/views/dataAdmin/components/queueCall/queueRecord.vue
+36
-0
No files found.
base-manager-ui/admin/src/pages/basicset/workman/personnel.vue
View file @
5bcb01b2
...
...
@@ -566,7 +566,7 @@ export default {
const
blob
=
new
Blob
([
res
.
data
],
{
type
:
"
application/octet-stream
"
,
});
let
fileName
=
"
批量导入工作人员模
块
"
;
let
fileName
=
"
批量导入工作人员模
板
"
;
const
link
=
document
.
createElement
(
"
a
"
);
link
.
href
=
URL
.
createObjectURL
(
blob
);
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
View file @
5bcb01b2
...
...
@@ -66,6 +66,15 @@
<
template
slot=
"calltime"
slot-scope=
"text"
>
{{
text
.
calltime
?
text
.
calltime
:
"
--
"
}}
</
template
>
<
template
slot=
"all_time"
slot-scope=
"text"
>
{{
text
.
all_time
?
text
.
all_time
:
"
--
"
}}
</
template
>
<
template
slot=
"run_time"
slot-scope=
"text"
>
{{
text
.
run_time
?
text
.
run_time
:
"
--
"
}}
</
template
>
<
template
slot=
"wait_time"
slot-scope=
"text"
>
{{
text
.
wait_time
?
text
.
wait_time
:
"
--
"
}}
</
template
>
<!-- 办理窗口 -->
<
template
slot=
"window_name"
slot-scope=
"text"
>
{{
...
...
@@ -207,6 +216,30 @@ export default {
customRender
:
"
endtime
"
,
},
},
{
title
:
"
当前排号总时长
"
,
width
:
"
8%
"
,
align
:
"
center
"
,
scopedSlots
:
{
customRender
:
"
all_time
"
,
},
},
{
title
:
"
业务平均办理时长
"
,
width
:
"
8%
"
,
align
:
"
center
"
,
scopedSlots
:
{
customRender
:
"
run_time
"
,
},
},
{
title
:
"
业务平均等待时长
"
,
width
:
"
8%
"
,
align
:
"
center
"
,
scopedSlots
:
{
customRender
:
"
wait_time
"
,
},
},
{
title
:
"
状态
"
,
...
...
@@ -276,6 +309,9 @@ export default {
"
window_name
"
,
"
workman_name
"
,
"
endtime
"
,
"
all_time
"
,
"
run_time
"
,
"
wait_time
"
,
"
style
"
,
],
btnLoading
:
false
,
...
...
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
View file @
5bcb01b2
...
...
@@ -97,6 +97,15 @@
<
template
slot=
"endtime"
slot-scope=
"text"
>
{{
text
.
endtime
?
text
.
endtime
:
"
--
"
}}
</
template
>
<
template
slot=
"all_time"
slot-scope=
"text"
>
{{
text
.
all_time
?
text
.
all_time
:
"
--
"
}}
</
template
>
<
template
slot=
"run_time"
slot-scope=
"text"
>
{{
text
.
run_time
?
text
.
run_time
:
"
--
"
}}
</
template
>
<
template
slot=
"wait_time"
slot-scope=
"text"
>
{{
text
.
wait_time
?
text
.
wait_time
:
"
--
"
}}
</
template
>
<!-- 操作 -->
<
template
slot=
"action"
slot-scope=
"text"
>
<a
@
click=
"openHandlingDetails(text.id)"
>
详细信息
</a>
...
...
@@ -224,6 +233,30 @@ export default {
customRender
:
"
endtime
"
,
},
},
{
title
:
"
当前排号总时长
"
,
width
:
"
8%
"
,
align
:
"
center
"
,
scopedSlots
:
{
customRender
:
"
all_time
"
,
},
},
{
title
:
"
业务平均办理时长
"
,
width
:
"
8%
"
,
align
:
"
center
"
,
scopedSlots
:
{
customRender
:
"
run_time
"
,
},
},
{
title
:
"
业务平均等待时长
"
,
width
:
"
8%
"
,
align
:
"
center
"
,
scopedSlots
:
{
customRender
:
"
wait_time
"
,
},
},
{
title
:
"
状态
"
,
...
...
@@ -268,6 +301,9 @@ export default {
"
window_name
"
,
"
workman_name
"
,
"
endtime
"
,
"
all_time
"
,
"
run_time
"
,
"
wait_time
"
,
"
style
"
,
],
//设备数据
...
...
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