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
f9b967a9
Commit
f9b967a9
authored
1 year ago
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
perf:优化样表、排号、呼叫报表
parent
959b329c
master
first
reg
test
xuanhan
yanshi
1 merge request
!1
Master
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
14 deletions
+33
-14
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
...n/src/views/dataAdmin/components/queueCall/callRecord.vue
+6
-3
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/components/HandlingDetails.vue
...Admin/components/queueCall/components/HandlingDetails.vue
+18
-5
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
.../src/views/dataAdmin/components/queueCall/queueRecord.vue
+6
-3
portal-manager-ui/admin/src/views/dataAdmin/components/sampleRecordReport/sampleForm.vue
...ws/dataAdmin/components/sampleRecordReport/sampleForm.vue
+3
-3
No files found.
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
View file @
f9b967a9
...
...
@@ -71,7 +71,7 @@
<a-tag
class=
"cursor-pointer"
color=
"blue"
@
click=
"checkInfo(record.id)"
@
click=
"checkInfo(record.id
, record
)"
>
详细信息
</a-tag>
...
...
@@ -421,14 +421,17 @@ export default {
},
// 查看详细信息
async
checkInfo
(
id
)
{
async
checkInfo
(
id
,
row
)
{
this
.
loading
=
true
;
let
res
=
await
getQueueInfo
({
id
,
});
if
(
res
.
code
==
1
)
{
let
{
data
}
=
res
;
this
.
detailsInfo
=
data
;
this
.
detailsInfo
=
{
...
data
,
business
:
row
.
business
,
};
this
.
detailsVisible
=
true
;
}
this
.
loading
=
false
;
...
...
This diff is collapsed.
Click to expand it.
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/components/HandlingDetails.vue
View file @
f9b967a9
...
...
@@ -98,14 +98,27 @@
</a-col>
</a-row>
<a-row
:gutter=
"[0, 8]"
>
<a-col
:span=
"12"
>
<span>
注册方式:
</span>
身份证注册
</a-col>
<a-col
:span=
"12"
>
<span>
注册方式:
</span
>
{{
detailsInfo
.
register_type
==
"
Applets
"
?
"
小程序
"
:
detailsInfo
.
register_type
==
"
wechat
"
?
"
公众号
"
:
detailsInfo
.
register_type
==
"
app
"
?
"
自助服务终端
"
:
"
--
"
}}
</a-col>
<a-col
:span=
"12"
>
<span>
取号设备:
</span>
{{
detailsInfo
.
take_name
}}
</a-col>
</a-row>
<!--
<a-row
:gutter=
"[0, 8]"
>
<a-col
:span=
"12"
>
<span>
健康状态:
</span>
绿码
</a-col>
</a-row>
-->
<a-row
:gutter=
"[0, 8]"
>
<a-col
:span=
"24"
>
<span>
办理业务:
</span>
{{
detailsInfo
.
business
||
"
--
"
}}
</a-col>
</a-row>
<!-- 当前办理步骤标识 -->
<div
class=
"transact-tips2"
v-if=
"detailsInfo.style === 0"
>
<span
class=
"tips-text"
>
排队中
</span>
...
...
@@ -140,7 +153,7 @@
</a-row>
<a-row
:gutter=
"[0, 8]"
>
<a-col
:span=
"12"
>
<span>
叫号设备:
</span>
{{
detailsInfo
.
call_name
}}
<span>
叫号设备:
</span>
{{
detailsInfo
.
call_name
||
"
--
"
}}
</a-col>
</a-row>
</div>
...
...
This diff is collapsed.
Click to expand it.
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/queueRecord.vue
View file @
f9b967a9
...
...
@@ -71,7 +71,7 @@
<a-tag
class=
"cursor-pointer"
color=
"blue"
@
click=
"checkInfo(record.id)"
@
click=
"checkInfo(record.id
, record
)"
>
详细信息
</a-tag>
...
...
@@ -414,14 +414,17 @@ export default {
},
// 查看详细信息
async
checkInfo
(
id
)
{
async
checkInfo
(
id
,
row
)
{
this
.
loading
=
true
;
let
res
=
await
getQueueInfo
({
id
,
});
if
(
res
.
code
==
1
)
{
let
{
data
}
=
res
;
this
.
detailsInfo
=
data
;
this
.
detailsInfo
=
{
...
data
,
business
:
row
.
business
,
};
this
.
detailsVisible
=
true
;
}
this
.
loading
=
false
;
...
...
This diff is collapsed.
Click to expand it.
portal-manager-ui/admin/src/views/dataAdmin/components/sampleRecordReport/sampleForm.vue
View file @
f9b967a9
...
...
@@ -78,8 +78,8 @@ const filterVal = [
"
materialName
"
,
"
materialFullName
"
,
"
deviceName
"
,
"
createTime
"
,
"
operTime
"
,
"
createTime
"
,
];
// 导出的表头字段名,需要导出表格字段名
export
default
{
data
()
{
...
...
@@ -117,11 +117,11 @@ export default {
},
{
title
:
"
操作时间
"
,
dataIndex
:
"
create
Time
"
,
dataIndex
:
"
oper
Time
"
,
},
{
title
:
"
查看时间
"
,
dataIndex
:
"
oper
Time
"
,
dataIndex
:
"
create
Time
"
,
customRender
:
(
text
)
=>
{
return
text
?
text
:
"
--
"
;
},
...
...
This diff is collapsed.
Click to expand it.
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