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
c10ae35b
Commit
c10ae35b
authored
Aug 01, 2023
by
“yiyousong”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pref:修改易政秀报表
parent
619b968b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
375 additions
and
301 deletions
+375
-301
portal-manager-ui/admin/src/views/dataAdmin/components/easyPoliticsShow/PoliticsShow.vue
...ws/dataAdmin/components/easyPoliticsShow/PoliticsShow.vue
+310
-277
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
...n/src/views/dataAdmin/components/queueCall/callRecord.vue
+65
-24
No files found.
portal-manager-ui/admin/src/views/dataAdmin/components/easyPoliticsShow/PoliticsShow.vue
View file @
c10ae35b
<
template
>
<div
class=
"PoliticsShow-Container"
>
<div
class=
"header_box"
>
<div>
<a-button
:loading=
"btnLoading"
type=
"primary"
class=
"addclass"
@
click=
"handleExportTable"
>
<span>
{{
tableSelectedRows
.
length
?
"
导出
"
:
"
导出全部
"
}}
</span>
</a-button>
<b>
用户总数:
<i>
{{
tableData
.
total
}}
人
</i></b>
<b>
试用客户:
<i>
{{
tableData
.
trial
}}
人
</i></b>
<b>
VIP:
<i>
{{
tableData
.
vip
}}
人
</i></b>
<b>
设计师:
<i>
{{
tableData
.
designer
}}
人
</i></b>
<b>
图片作品数:
<i>
{{
tableData
.
picturesCount
}}
个
</i></b>
<b>
视频作品数:
<i>
{{
tableData
.
videosCount
}}
个
</i></b>
</div>
<span
class=
"topBoxFlex"
>
<a-input
allowClear
v-model=
"searchForm.query"
placeholder=
"请输入用户姓名/手机号搜索"
>
<a-icon
slot=
"prefix"
type=
"search"
/>
</a-input>
<a-select
v-model=
"searchForm.memberLevel"
>
<a-select-option
value=
""
>
全部
</a-select-option>
<a-select-option
v-for=
"(item, index) of levelList"
:key=
"index"
:value=
"index"
>
{{
item
}}
</a-select-option>
</a-select>
<a-button
type=
"primary"
class=
"addclass"
@
click=
"getList"
>
搜索
</a-button>
</span>
</div>
<div
class=
"main"
>
<a-table
size=
"small"
bordered
:row-key=
"(record) => record.id"
:row-selection=
"
{
selectedRowKeys: tableSelectedKeys,
onChange: onSelectChange,
}" :scroll="{ y: 590 }" :pagination="tablePagination" @change="pagTableChange" :loading="tableLoading"
:columns="tableHeaders" :dataSource="tableList">
<template
slot=
"zhenshixingming"
slot-scope=
"text, record, index"
>
<a-button
type=
"link"
@
click=
"openUserDetails(record)"
>
{{
text
?
text
:
'
--
'
}}
</a-button>
</
template
>
<
template
slot=
"tupianzuopinshuliang"
slot-scope=
"text, record, index"
>
<a-button
type=
"link"
@
click=
"openPicWorks(record.id)"
>
{{
(
text
||
text
==
0
)?
text
:
'
--
'
}}
</a-button>
</
template
>
</a-table>
<PicWorks
ref=
"PicWorks"
/>
<UserDetails
ref=
"UserDetails"
@
openPicWorks=
"openPicWorks"
/>
</div>
</div>
<div
class=
"PoliticsShow-Container"
>
<div
class=
"header_box"
>
<div>
<a-button
:loading=
"btnLoading"
type=
"primary"
class=
"addclass"
@
click=
"handleExportTable"
>
<span>
{{
tableSelectedRows
.
length
?
"
导出
"
:
"
导出全部
"
}}
</span>
</a-button>
<b
>
用户总数:
<i>
{{
tableData
.
total
}}
人
</i></b
>
<b
>
试用客户:
<i>
{{
tableData
.
trial
}}
人
</i></b
>
<!--
<b>
VIP:
<i>
{{
tableData
.
vip
}}
人
</i></b>
-->
<b
>
设计师:
<i>
{{
tableData
.
designer
}}
人
</i></b
>
<b
>
图片作品数:
<i>
{{
tableData
.
picturesCount
}}
个
</i></b
>
<b
>
视频作品数:
<i>
{{
tableData
.
videosCount
}}
个
</i></b
>
</div>
<span
class=
"topBoxFlex"
>
<a-space>
<a-input
allowClear
v-model=
"searchForm.query"
placeholder=
"请输入用户姓名/手机号搜索"
>
<a-icon
slot=
"prefix"
type=
"search"
/>
</a-input>
<a-select
v-model=
"searchForm.memberLevel"
>
<a-select-option
value=
""
>
全部
</a-select-option>
<a-select-option
v-for=
"(item, index) of levelList"
:key=
"index"
:value=
"index"
>
{{
item
}}
</a-select-option>
</a-select>
<a-button
type=
"primary"
class=
"addclass"
@
click=
"getList"
>
搜索
</a-button
>
</a-space>
</span>
</div>
<div
class=
"main"
>
<a-table
size=
"small"
bordered
:row-key=
"(record) => record.id"
:row-selection=
"
{
selectedRowKeys: tableSelectedKeys,
onChange: onSelectChange,
}"
:scroll="{ y: 590 }"
:pagination="tablePagination"
@change="pagTableChange"
:loading="tableLoading"
:columns="tableHeaders"
:dataSource="tableList"
>
<template
slot=
"zhenshixingming"
slot-scope=
"text"
>
<a-button
type=
"link"
@
click=
"openUserDetails(record)"
>
{{
text
?
text
:
"
--
"
}}
</a-button>
</
template
>
<
template
slot=
"tupianzuopinshuliang"
slot-scope=
"text"
>
<a-button
type=
"link"
@
click=
"openPicWorks(record.id)"
>
{{
text
||
text
==
0
?
text
:
"
--
"
}}
</a-button>
</
template
>
</a-table>
<PicWorks
ref=
"PicWorks"
/>
<UserDetails
ref=
"UserDetails"
@
openPicWorks=
"openPicWorks"
/>
</div>
</div>
</template>
<
script
>
...
...
@@ -53,244 +90,240 @@ import table from "@/mixins/table";
import
UserDetails
from
"
./components/UserDetails.vue
"
;
import
PicWorks
from
"
./components/PicWorks.vue
"
;
import
{
export2Excel
}
from
"
@/utils/js/exportExcel
"
;
import
{
getCustomer
}
from
"
@/api/customer
"
;
import
{
getCustomer
}
from
"
@/api/customer
"
;
const
levelList
=
{
0
:
'
未开启
'
,
1
:
'
试用客户
'
,
2
:
'
VIP
'
,
3
:
'
设计师
'
}
0
:
"
未开启
"
,
1
:
"
试用客户
"
,
// 2: "VIP"
,
3
:
"
设计师
"
,
}
;
export
default
{
mixins
:
[
table
],
name
:
"
PortalAdminVuePoliticsShow
"
,
data
()
{
return
{
btnLoading
:
false
,
levelList
:
levelList
,
tableList
:
[],
tableData
:
{},
searchForm
:
{
query
:
""
,
//姓名手机号查询条件
memberLevel
:
""
,
//会员等级查询条件
customerSrc
:
""
,
//客户来源查询条件
},
tableHeaders
:
[{
title
:
"
序号
"
,
dataIndex
:
"
index
"
,
width
:
"
60p
x
"
,
key
:
"
inde
x
"
,
align
:
"
center
"
,
customRender
:
(
text
,
record
,
index
)
=>
`
${
index
+
1
}
`
,
},
{
title
:
"
真实姓名
"
,
align
:
"
center
"
,
dataIndex
:
"
custName
"
,
scopedSlots
:
{
customRender
:
"
zhenshixingming
"
,
}
,
}
,
{
title
:
"
联系电话
"
,
align
:
"
center
"
,
dataIndex
:
"
contactTelphone
"
,
customRender
:
(
text
)
=>
`
${
text
?
text
:
'
--
'
}
`
,
}
,
{
title
:
"
单位名称
"
,
align
:
"
center
"
,
dataIndex
:
"
organization
"
,
customRender
:
(
text
)
=>
`
${
text
?
text
:
'
--
'
}
`
,
}
,
{
title
:
"
图片作品数量
"
,
align
:
"
center
"
,
dataIndex
:
"
customerDesignPictures
"
,
scopedSlots
:
{
customRender
:
"
tupianzuopinshuliang
"
,
}
,
}
,
{
title
:
"
视频作品数量
"
,
align
:
"
center
"
,
dataIndex
:
"
customerDesignVideos
"
,
customRender
:
(
text
)
=>
`
${(
text
||
text
==
0
)?
text
:
'
--
'
}
`
,
}
,
{
title
:
"
会员等级
"
,
align
:
"
center
"
,
dataIndex
:
"
memberLevel
"
,
customRender
:
(
text
,
record
,
index
)
=>
levelList
[
text
],
}
,
{
title
:
"
最近登录时间
"
,
align
:
"
center
"
,
dataIndex
:
"
lastLoginTime
"
,
customRender
:
(
text
)
=>
`
${
text
?
text
:
'
--
'
}
`
,
}
,
{
title
:
"
使用状态
"
,
align
:
"
center
"
,
dataIndex
:
"
status
"
,
customRender
:
(
text
,
record
,
index
)
=>
text
==
1
?
'
正常
'
:
'
禁用
'
,
}
,
]
,
searchName
:
undefined
,
tablePagination
:{
current
:
1
,
pageSize
:
10
}
,
tableSelectedKeys
:[],
tableSelectedRows
:[]
,
tHeader
:
[
// 导出的表头名信息
"
真实姓名
"
,
"
联系电话
"
,
"
单位名称
"
,
"
图片作品数量
"
,
"
视频作品数量
"
,
"
会员等级
"
,
"
最近登录时间
"
,
"
使用状态
"
,
]
,
filterVal
:
[
// 导出的表头字段名,需要导出表格字段名
"
custName
"
,
"
contactTelphone
"
,
"
organization
"
,
"
customerDesignPictures
"
,
"
customerDesignVideos
"
,
"
memberLevel
"
,
"
lastLoginTime
"
,
"
status
"
]
,
};
}
,
components
:
{
UserDetails
,
PicWorks
,
},
mounted
()
{
this
.
setMoment
();
}
,
created
()
{
this
.
getList
();
},
methods
:
{
// 获取列表数据
async
getList
(
search
=
{})
{
let
res
=
await
getCustomer
({
page
:
this
.
tablePagination
.
current
,
size
:
this
.
tablePagination
.
pageSize
,
...
this
.
searchForm
,
...
search
,
});
if
(
res
.
code
==
1
)
{
let
{
data
,
total
,
pageInfo
}
=
res
.
data
;
mixins
:
[
table
],
name
:
"
PortalAdminVuePoliticsShow
"
,
data
()
{
return
{
btnLoading
:
false
,
levelList
:
levelList
,
tableList
:
[],
tableData
:
{},
searchForm
:
{
query
:
""
,
//姓名手机号查询条件
memberLevel
:
""
,
//会员等级查询条件
customerSrc
:
""
,
//客户来源查询条件
},
tableHeaders
:
[
{
title
:
"
序号
"
,
dataIndex
:
"
inde
x
"
,
width
:
"
60p
x
"
,
key
:
"
index
"
,
align
:
"
center
"
,
customRender
:
(
text
,
record
,
index
)
=>
(
this
.
tablePagination
.
current
-
1
)
*
this
.
tablePagination
.
pageSize
+
index
+
1
,
}
,
{
title
:
"
真实姓名
"
,
align
:
"
center
"
,
dataIndex
:
"
custName
"
,
scopedSlots
:
{
customRender
:
"
zhenshixingming
"
,
}
,
}
,
{
title
:
"
联系电话
"
,
align
:
"
center
"
,
dataIndex
:
"
contactTelphone
"
,
customRender
:
(
text
)
=>
`
${
text
?
text
:
"
--
"
}
`
,
}
,
{
title
:
"
单位名称
"
,
align
:
"
center
"
,
dataIndex
:
"
organization
"
,
customRender
:
(
text
)
=>
`
${
text
?
text
:
"
--
"
}
`
,
}
,
{
title
:
"
图片作品数量
"
,
align
:
"
center
"
,
dataIndex
:
"
customerDesignPictures
"
,
scopedSlots
:
{
customRender
:
"
tupianzuopinshuliang
"
,
}
,
}
,
{
title
:
"
视频作品数量
"
,
align
:
"
center
"
,
dataIndex
:
"
customerDesignVideos
"
,
customRender
:
(
text
)
=>
`
${
text
||
text
==
0
?
text
:
"
--
"
}
`
,
}
,
{
title
:
"
会员等级
"
,
align
:
"
center
"
,
dataIndex
:
"
memberLevel
"
,
customRender
:
(
text
,
record
,
index
)
=>
levelList
[
text
]
,
}
,
{
title
:
"
最近登录时间
"
,
align
:
"
center
"
,
dataIndex
:
"
lastLoginTime
"
,
customRender
:
(
text
)
=>
`
${
text
?
text
:
"
--
"
}
`
,
}
,
{
title
:
"
使用状态
"
,
align
:
"
center
"
,
dataIndex
:
"
status
"
,
customRender
:
(
text
,
record
,
index
)
=>
(
text
==
1
?
"
正常
"
:
"
禁用
"
),
}
,
],
searchName
:
undefined
,
tablePagination
:
{
current
:
1
,
pageSize
:
10
,
},
tableSelectedKeys
:
[]
,
tableSelectedRows
:
[]
,
tHeader
:
[
// 导出的表头名信息
"
真实姓名
"
,
"
联系电话
"
,
"
单位名称
"
,
"
图片作品数量
"
,
"
视频作品数量
"
,
"
会员等级
"
,
"
最近登录时间
"
,
"
使用状态
"
,
]
,
filterVal
:
[
// 导出的表头字段名,需要导出表格字段名
"
custName
"
,
"
contactTelphone
"
,
"
organization
"
,
"
customerDesignPictures
"
,
"
customerDesignVideos
"
,
"
memberLevel
"
,
"
lastLoginTime
"
,
"
status
"
,
]
,
};
},
components
:
{
UserDetails
,
PicWorks
,
},
mounted
()
{
this
.
setMoment
();
},
created
()
{
this
.
getList
();
},
methods
:
{
// 获取列表数据
async
getList
(
search
=
{})
{
let
res
=
await
getCustomer
({
page
:
this
.
tablePagination
.
current
,
size
:
this
.
tablePagination
.
pageSize
,
...
this
.
searchForm
,
...
search
,
});
if
(
res
.
code
==
1
)
{
let
{
data
,
total
,
pageInfo
}
=
res
.
data
;
this
.
tableList
=
data
;
this
.
tableData
=
res
.
data
this
.
tablePagination
.
total
=
total
;
return
data
}
},
//分页
pagTableChange
(
page
)
{
this
.
tablePagination
.
current
=
page
.
current
this
.
tablePagination
.
pageSize
=
page
.
pageSize
this
.
getList
();
},
// 选中
onSelectChange
(
keys
,
rows
)
{
this
.
tableSelectedKeys
=
keys
;
const
res
=
new
Map
();
this
.
tableSelectedRows
=
[...
this
.
tableSelectedRows
,
...
rows
]
.
filter
((
v
)
=>
{
return
!
res
.
has
(
v
.
id
)
&&
res
.
set
(
v
.
id
,
1
);
})
.
filter
((
v
)
=>
{
return
this
.
tableSelectedKeys
.
some
((
val
)
=>
v
.
id
==
val
);
});
},
// 导出
async
handleExportTable
()
{
this
.
btnLoading
=
true
;
let
obj
=
{
1
:
"
正常
"
,
2
:
"
禁用
"
,
};
let
data
=
[]
if
(
this
.
tableSelectedKeys
.
length
&&
this
.
tableSelectedRows
.
length
)
{
// 深度克隆避免影响页面表格展示
data
=
this
.
$_
.
cloneDeep
(
this
.
tableSelectedRows
);
data
.
forEach
((
item
)
=>
{
Object
.
keys
(
obj
).
forEach
((
keys
)
=>
{
if
(
item
.
status
==
keys
)
{
item
.
status
=
obj
[
keys
];
}
});
});
export2Excel
(
this
.
tHeader
,
this
.
filterVal
,
data
,
"
易政秀报表
"
+
this
.
$moment
().
format
(
"
YYYYMMDDHHmmss
"
)
);
}
else
{
data
=
this
.
$_
.
cloneDeep
(
await
this
.
getList
({
page
:
1
,
size
:
-
1
})
);
if
(
!
data
.
length
)
return
;
for
(
let
item
of
data
)
{
Object
.
keys
(
obj
).
forEach
((
key
)
=>
{
if
(
item
.
status
==
key
)
{
item
.
status
=
obj
[
key
];
}
});
}
export2Excel
(
this
.
tHeader
,
this
.
filterVal
,
data
,
"
易政秀报表
"
+
this
.
$moment
().
format
(
"
YYYYMMDDHHmmss
"
)
);
}
this
.
btnLoading
=
false
;
},
QueueState
(
type
)
{
switch
(
type
)
{
case
0
:
return
"
type1
"
;
case
1
:
return
"
type2
"
;
this
.
tableList
=
data
;
this
.
tableData
=
res
.
data
;
this
.
tablePagination
.
total
=
total
;
return
data
;
}
},
//分页
pagTableChange
(
page
)
{
this
.
tablePagination
.
current
=
page
.
current
;
this
.
tablePagination
.
pageSize
=
page
.
pageSize
;
this
.
getList
();
},
// 选中
onSelectChange
(
keys
,
rows
)
{
this
.
tableSelectedKeys
=
keys
;
const
res
=
new
Map
();
this
.
tableSelectedRows
=
[...
this
.
tableSelectedRows
,
...
rows
]
.
filter
((
v
)
=>
{
return
!
res
.
has
(
v
.
id
)
&&
res
.
set
(
v
.
id
,
1
);
})
.
filter
((
v
)
=>
{
return
this
.
tableSelectedKeys
.
some
((
val
)
=>
v
.
id
==
val
);
});
},
// 导出
async
handleExportTable
()
{
this
.
btnLoading
=
true
;
let
obj
=
{
1
:
"
正常
"
,
2
:
"
禁用
"
,
};
let
data
=
[];
if
(
this
.
tableSelectedKeys
.
length
&&
this
.
tableSelectedRows
.
length
)
{
// 深度克隆避免影响页面表格展示
data
=
this
.
$_
.
cloneDeep
(
this
.
tableSelectedRows
);
data
.
forEach
((
item
)
=>
{
Object
.
keys
(
obj
).
forEach
((
keys
)
=>
{
if
(
item
.
status
==
keys
)
{
item
.
status
=
obj
[
keys
];
}
});
});
export2Excel
(
this
.
tHeader
,
this
.
filterVal
,
data
,
"
易政秀报表
"
+
this
.
$moment
().
format
(
"
YYYYMMDDHHmmss
"
)
);
}
else
{
data
=
this
.
$_
.
cloneDeep
(
await
this
.
getList
({
page
:
1
,
size
:
-
1
}));
if
(
!
data
.
length
)
return
;
for
(
let
item
of
data
)
{
Object
.
keys
(
obj
).
forEach
((
key
)
=>
{
if
(
item
.
status
==
key
)
{
item
.
status
=
obj
[
key
];
}
});
}
export2Excel
(
this
.
tHeader
,
this
.
filterVal
,
data
,
"
易政秀报表
"
+
this
.
$moment
().
format
(
"
YYYYMMDDHHmmss
"
)
);
}
this
.
btnLoading
=
false
;
},
QueueState
(
type
)
{
switch
(
type
)
{
case
0
:
return
"
type1
"
;
case
1
:
return
"
type2
"
;
default
:
return
"
type0
"
;
}
},
openPicWorks
(
id
)
{
this
.
$refs
.
PicWorks
.
modalInfo
.
title
=
"
作品数量
"
;
this
.
$refs
.
PicWorks
.
modalInfo
.
visible
=
true
;
this
.
$refs
.
PicWorks
.
modalInfo
.
width
=
"
32%
"
;
this
.
$refs
.
PicWorks
.
modalInfo
.
id
=
id
},
openUserDetails
(
record
)
{
this
.
$refs
.
UserDetails
.
modalInfo
.
title
=
"
客户详情
"
;
this
.
$refs
.
UserDetails
.
modalInfo
.
visible
=
true
;
this
.
$refs
.
UserDetails
.
modalInfo
.
record
=
record
;
},
},
default
:
return
"
type0
"
;
}
},
openPicWorks
(
id
)
{
this
.
$refs
.
PicWorks
.
modalInfo
.
title
=
"
作品数量
"
;
this
.
$refs
.
PicWorks
.
modalInfo
.
visible
=
true
;
this
.
$refs
.
PicWorks
.
modalInfo
.
width
=
"
32%
"
;
this
.
$refs
.
PicWorks
.
modalInfo
.
id
=
id
;
},
openUserDetails
(
record
)
{
this
.
$refs
.
UserDetails
.
modalInfo
.
title
=
"
客户详情
"
;
this
.
$refs
.
UserDetails
.
modalInfo
.
visible
=
true
;
this
.
$refs
.
UserDetails
.
modalInfo
.
record
=
record
;
},
},
};
</
script
>
<
style
lang=
"less"
scoped
>
/deep/.ant-spin-container {
display: block;
display: block;
}
</
style
>
\ No newline at end of file
portal-manager-ui/admin/src/views/dataAdmin/components/queueCall/callRecord.vue
View file @
c10ae35b
...
...
@@ -2,29 +2,48 @@
<div
class=
"callRecord-Container"
>
<div
class=
"header_box"
>
<div>
<a-button
type=
"primary"
class=
"addclass"
@
click=
"handleExportTable"
:loading=
"btnLoading"
>
<a-button
type=
"primary"
class=
"addclass"
@
click=
"handleExportTable"
:loading=
"btnLoading"
>
<span>
{{
tableSelectedRows
.
length
?
"
导出
"
:
"
导出全部
"
}}
</span>
</a-button>
<b>
叫号次数:
<i>
{{
tablePagination
.
total
}}
</i>
次
</b>
<b
>
叫号次数:
<i>
{{
tablePagination
.
total
}}
</i>
次
</b
>
<sub>
统计时间段:
{{
searchForm
.
time
[
0
]
}}
~
{{
searchForm
.
time
[
1
]
}}
</sub>
</div>
<span>
<a-space>
<a-select
v-model=
"searchForm.hallid"
>
<a-select-option
value=
""
>
全部大厅
</a-select-option>
<a-select-option
v-for=
"item in datingList"
:key=
"item.id"
:value=
"item.id"
>
<a-select-option
v-for=
"item in datingList"
:key=
"item.id"
:value=
"item.id"
>
{{
item
.
hallName
}}
</a-select-option>
</a-select>
<a-select
v-model=
"searchForm.sectionid"
>
<a-select-option
value=
""
>
全部部门
</a-select-option>
<a-select-option
v-for=
"item in bumenList"
:key=
"item.id"
:value=
"item.id"
>
<a-select-option
v-for=
"item in bumenList"
:key=
"item.id"
:value=
"item.id"
>
{{
item
.
name
}}
</a-select-option>
</a-select>
<a-select
v-model=
"searchForm.id"
>
<a-select-option
value=
""
>
全部设备
</a-select-option>
<a-select-option
v-for=
"item in deviceData"
:key=
"item.id"
:value=
"item.id"
>
<a-select-option
v-for=
"item in deviceData"
:key=
"item.id"
:value=
"item.id"
>
{{
item
.
name
}}
</a-select-option>
</a-select>
...
...
@@ -36,20 +55,36 @@
</a-select>
<a-range-picker
valueFormat=
"YYYY-MM-DD"
v-model=
"searchForm.time"
>
</a-range-picker>
<a-input
v-model=
"searchForm.flownum"
placeholder=
"请输入排队编号搜索"
@
pressEnter=
"handleSearch"
>
<a-input
v-model=
"searchForm.flownum"
placeholder=
"请输入排队编号搜索"
@
pressEnter=
"handleSearch"
>
<a-icon
slot=
"prefix"
type=
"search"
/>
</a-input>
<a-button
type=
"primary"
class=
"addclass"
@
click=
"handleSearch"
>
搜索
</a-button>
<a-button
type=
"primary"
class=
"addclass"
@
click=
"handleSearch"
>
搜索
</a-button
>
<a-button
@
click=
"resetBtn"
>
重置
</a-button>
</a-space>
</span>
</div>
<div
class=
"main"
>
<a-table
size=
"small"
bordered
:row-key=
"(record) => record.id"
:row-selection=
"
{
selectedRowKeys: tableSelectedKeys,
onChange: onSelectChange,
}" :scroll="{ y: 590 }" :pagination="tablePagination" @change="changeTablePage" :loading="tableLoading"
:columns="tableHeaders" :dataSource="tableList">
<a-table
size=
"small"
bordered
:row-key=
"(record) => record.id"
:row-selection=
"
{
selectedRowKeys: tableSelectedKeys,
onChange: onSelectChange,
}"
:scroll="{ y: 590 }"
:pagination="tablePagination"
@change="changeTablePage"
:loading="tableLoading"
:columns="tableHeaders"
:dataSource="tableList"
>
<!-- 序号 -->
<span
slot=
"num"
slot-scope=
"text, record, index"
>
{{
(
tablePagination
.
current
-
1
)
*
tablePagination
.
pageSize
+
index
+
1
...
...
@@ -71,7 +106,11 @@
</
template
>
<!-- 办理业务 -->
<
template
slot=
"business"
slot-scope=
"text"
>
<a
v-if=
"text.business"
@
click=
"openBusiness(text.business, text.businessid)"
>
{{
text
.
business
}}
</a>
<a
v-if=
"text.business"
@
click=
"openBusiness(text.business, text.businessid)"
>
{{
text
.
business
}}
</a
>
<span
v-else
>
--
</span>
</
template
>
<!-- 办理开始时间 -->
...
...
@@ -91,8 +130,8 @@
<
template
slot=
"window_name"
slot-scope=
"text"
>
{{
text
.
window_name
?
text
.
window_name
+
"
-
"
+
text
.
window_fromnum
:
"
--
"
?
text
.
window_name
+
"
-
"
+
text
.
window_fromnum
:
"
--
"
}}
</
template
>
<!-- 工作人员 -->
...
...
@@ -112,11 +151,13 @@
</
template
>
<!-- 状态 -->
<
template
slot=
"style"
slot-scope=
"text"
>
<span
:class=
"
{
'stand-line': text.style === 0,
'on-transact': text.style === 1,
'on-end': text.style === 4,
}">
<span
:class=
"
{
'stand-line': text.style === 0,
'on-transact': text.style === 1,
'on-end': text.style === 4,
}"
>
{{
$codeMap
.
queueState
[
text
.
style
]
}}
</span>
</
template
>
...
...
@@ -280,7 +321,7 @@ export default {
time
:
[
moment
().
format
(
"
YYYY-MM-DD
"
),
moment
().
format
(
"
YYYY-MM-DD
"
)],
// 时间区间
flownum
:
""
,
// 排号编码
hallid
:
""
,
sectionid
:
""
sectionid
:
""
,
},
// 大厅列表
datingList
:
[],
...
...
@@ -354,7 +395,7 @@ export default {
this
.
getCalllistArr
();
this
.
getCallQueListArr
();
},
mounted
()
{
},
mounted
()
{},
methods
:
{
// 获取大厅列表
async
getDatingListArr
()
{
...
...
@@ -379,7 +420,7 @@ export default {
time
:
[
moment
().
format
(
"
YYYY-MM-DD
"
),
moment
().
format
(
"
YYYY-MM-DD
"
)],
// 时间区间
flownum
:
""
,
// 排号编码
hallid
:
""
,
sectionid
:
""
sectionid
:
""
,
};
this
.
getCallQueListArr
();
},
...
...
@@ -408,7 +449,7 @@ export default {
let
{
data
,
total
}
=
res
.
data
;
this
.
tableList
=
data
;
this
.
tablePagination
.
total
=
total
;
console
.
log
(
this
.
tableList
)
console
.
log
(
this
.
tableList
)
;
return
data
;
}
},
...
...
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