Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VueElementTemplate
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
黄瑜
VueElementTemplate
Commits
329f3b37
Commit
329f3b37
authored
Sep 27, 2017
by
Pan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refine:rm export selected to zip example
parent
065eaa93
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
92 deletions
+3
-92
index.js
src/router/index.js
+3
-4
select.vue
src/views/zip/select.vue
+0
-88
No files found.
src/router/index.js
View file @
329f3b37
...
@@ -149,8 +149,8 @@ export const asyncRouterMap = [
...
@@ -149,8 +149,8 @@ export const asyncRouterMap = [
name
:
'excel'
,
name
:
'excel'
,
icon
:
'excel'
,
icon
:
'excel'
,
children
:
[
children
:
[
{
path
:
'download'
,
component
:
_import
(
'excel/index'
),
name
:
'
导出
excel'
},
{
path
:
'download'
,
component
:
_import
(
'excel/index'
),
name
:
'
export
excel'
},
{
path
:
'download2'
,
component
:
_import
(
'excel/selectExcel'
),
name
:
'
导出已选择项
'
},
{
path
:
'download2'
,
component
:
_import
(
'excel/selectExcel'
),
name
:
'
export selected
'
},
{
path
:
'upload'
,
component
:
_import
(
'excel/uploadExcel'
),
name
:
'upload excel'
}
{
path
:
'upload'
,
component
:
_import
(
'excel/uploadExcel'
),
name
:
'upload excel'
}
]
]
},
},
...
@@ -161,8 +161,7 @@ export const asyncRouterMap = [
...
@@ -161,8 +161,7 @@ export const asyncRouterMap = [
name
:
'zip'
,
name
:
'zip'
,
icon
:
'zip'
,
icon
:
'zip'
,
children
:
[
children
:
[
{
path
:
'download'
,
component
:
_import
(
'zip/index'
),
name
:
'导出zip'
},
{
path
:
'download'
,
component
:
_import
(
'zip/index'
),
name
:
'export zip'
}
{
path
:
'download2'
,
component
:
_import
(
'zip/select'
),
name
:
'导出已选择项'
}
]
]
},
},
{
{
...
...
src/views/zip/select.vue
deleted
100644 → 0
View file @
065eaa93
<
template
>
<div
class=
"app-container"
>
<el-button
style=
'margin-bottom:20px'
type=
"primary"
icon=
"document"
@
click=
"handleDownload"
:loading=
"downloadLoading"
>
导出已选择项
</el-button>
<el-table
:data=
"list"
v-loading
.
body=
"listLoading"
element-loading-text=
"拼命加载中"
border
fit
highlight-current-row
@
selection-change=
"handleSelectionChange"
ref=
"multipleTable"
>
<el-table-column
type=
"selection"
align=
"center"
></el-table-column>
<el-table-column
align=
"center"
label=
'ID'
width=
"95"
>
<template
scope=
"scope"
>
{{
scope
.
$index
}}
</
template
>
</el-table-column>
<el-table-column
label=
"文章标题"
>
<
template
scope=
"scope"
>
{{
scope
.
row
.
title
}}
</
template
>
</el-table-column>
<el-table-column
label=
"作者"
width=
"95"
align=
"center"
>
<
template
scope=
"scope"
>
<el-tag>
{{
scope
.
row
.
author
}}
</el-tag>
</
template
>
</el-table-column>
<el-table-column
label=
"阅读数"
width=
"115"
align=
"center"
>
<
template
scope=
"scope"
>
{{
scope
.
row
.
pageviews
}}
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"created_at"
label=
"发布时间"
width=
"220"
>
<
template
scope=
"scope"
>
<i
class=
"el-icon-time"
></i>
<span>
{{
scope
.
row
.
display_time
}}
</span>
</
template
>
</el-table-column>
</el-table>
</div>
</template>
<
script
>
import
{
fetchList
}
from
'@/api/article'
export
default
{
data
()
{
return
{
list
:
null
,
listLoading
:
true
,
multipleSelection
:
[],
downloadLoading
:
false
}
},
created
()
{
this
.
fetchData
()
},
methods
:
{
fetchData
()
{
this
.
listLoading
=
true
fetchList
(
this
.
listQuery
).
then
(
response
=>
{
this
.
list
=
response
.
data
.
items
this
.
listLoading
=
false
})
},
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
},
handleDownload
()
{
if
(
this
.
multipleSelection
.
length
)
{
this
.
downloadLoading
=
true
require
.
ensure
([],
()
=>
{
const
{
export_txt_to_zip
}
=
require
(
'vendor/Export2Zip'
)
const
tHeader
=
[
'序号'
,
'文章标题'
,
'作者'
,
'阅读数'
,
'发布时间'
]
const
filterVal
=
[
'id'
,
'title'
,
'author'
,
'pageviews'
,
'display_time'
]
const
list
=
this
.
multipleSelection
const
data
=
this
.
formatJson
(
filterVal
,
list
)
export_txt_to_zip
(
tHeader
,
data
,
'列表文本'
,
'压缩文本'
)
this
.
$refs
.
multipleTable
.
clearSelection
()
this
.
downloadLoading
=
false
})
}
else
{
this
.
$message
({
message
:
'请至少选择一条记录'
,
type
:
'warning'
})
}
},
formatJson
(
filterVal
,
jsonData
)
{
return
jsonData
.
map
(
v
=>
filterVal
.
map
(
j
=>
v
[
j
]))
}
}
}
</
script
>
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