Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
member
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
member
member
Commits
8b5c841a
Commit
8b5c841a
authored
Aug 02, 2019
by
Kyle_Li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复批量积分导入详情分页
parent
320345da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
bulkLogsDetail.vue
src/components/wechatmembers/bulkLogsDetail.vue
+18
-2
No files found.
src/components/wechatmembers/bulkLogsDetail.vue
View file @
8b5c841a
...
...
@@ -134,11 +134,23 @@ export default {
exportExcel
()
{
window
.
location
.
href
=
`
${
url
.
downloadErrorData
}
?requestProject=member&batchType=
${
this
.
batchType
}
&batchId=
${
this
.
batchId
}
`
;
},
// 换页
handleCurrentChange
(
val
)
{
this
.
page
.
currentPage
=
val
;
this
.
getLogsDetail
();
},
// 修改每页显示数量
handleSizeChange
(
val
)
{
this
.
page
.
pageSize
=
val
;
this
.
getLogsDetail
();
},
// 获取数据
getLogsDetail
()
{
let
params
=
{
batchId
:
this
.
batchId
,
batchType
:
this
.
batchType
batchType
:
this
.
batchType
,
currentPage
:
this
.
page
.
currentPage
,
pageSize
:
this
.
page
.
pageSize
}
doFetchqs
(
url
.
queryBatchRetErrInfo
,
params
).
then
(
res
=>
{
if
(
res
.
data
.
errorCode
==
0
)
{
...
...
@@ -156,9 +168,13 @@ export default {
},
created
()
{
if
(
!
this
.
$route
.
query
.
data
)
{
checkFalse
(
'123'
)
// checkFalse('123')
this
.
$router
.
go
(
-
1
);
}
else
{
const
{
batchId
,
batchType
,
total
,
succeedNum
,
errorNum
}
=
this
.
$route
.
query
.
data
;
if
(
!
batchType
)
{
this
.
$router
.
go
(
-
1
);
}
this
.
batchId
=
batchId
;
this
.
batchType
=
batchType
;
console
.
log
(
this
.
batchType
)
...
...
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