Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
admin-fe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pleroma
admin-fe
Commits
3488930e
Commit
3488930e
authored
7 years ago
by
spiritree
Committed by
花裤衩
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add new export-excel function
parent
4467420d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/router/index.js
+5
-2
5 additions, 2 deletions
src/router/index.js
src/views/excel/excel2.vue
+81
-0
81 additions, 0 deletions
src/views/excel/excel2.vue
with
86 additions
and
2 deletions
src/router/index.js
+
5
−
2
View file @
3488930e
...
...
@@ -46,6 +46,7 @@ const ErrorLog = _import('errlog/index');
/* excel */
const
ExcelDownload
=
_import
(
'
excel/index
'
);
const
SelectExcelDownload
=
_import
(
'
excel/excel2
'
);
/* theme */
const
Theme
=
_import
(
'
theme/index
'
);
...
...
@@ -174,8 +175,10 @@ export const asyncRouterMap = [
redirect
:
'
noredirect
'
,
name
:
'
excel
'
,
icon
:
'
EXCEL
'
,
noDropdown
:
true
,
children
:
[{
path
:
'
download
'
,
component
:
ExcelDownload
,
name
:
'
导出excel
'
}]
children
:
[
{
path
:
'
download
'
,
component
:
ExcelDownload
,
name
:
'
导出excel
'
},
{
path
:
'
download2
'
,
component
:
SelectExcelDownload
,
name
:
'
选择导出excel
'
}
]
},
{
path
:
'
/theme
'
,
...
...
This diff is collapsed.
Click to expand it.
src/views/excel/excel2.vue
0 → 100644
+
81
−
0
View file @
3488930e
<
template
>
<div
class=
"app-container"
>
<el-button
style=
'margin-bottom:20px;float:right'
type=
"primary"
icon=
"document"
@
click=
"handleDownload"
>
导出excel
</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=
"110"
>
<
template
scope=
"scope"
>
<span>
{{
scope
.
row
.
author
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"阅读数"
width=
"105"
align=
"center"
>
<
template
scope=
"scope"
>
{{
scope
.
row
.
pageviews
}}
</
template
>
</el-table-column>
<el-table-column
align=
"center"
prop=
"created_at"
label=
"发布时间"
width=
"200"
>
<
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
{
getList
}
from
'
api/article
'
;
export
default
{
data
()
{
return
{
list
:
null
,
listLoading
:
true
,
multipleSelection
:
[]
}
},
created
()
{
this
.
fetchData
();
},
methods
:
{
fetchData
()
{
this
.
listLoading
=
true
;
getList
(
this
.
listQuery
).
then
(
response
=>
{
this
.
list
=
response
.
data
;
this
.
listLoading
=
false
;
})
},
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
;
},
handleDownload
()
{
require
.
ensure
([],
()
=>
{
const
{
export_json_to_excel
}
=
require
(
'
vendor/Export2Excel
'
);
const
tHeader
=
[
'
序号
'
,
'
文章标题
'
,
'
作者
'
,
'
阅读数
'
,
'
发布时间
'
];
const
filterVal
=
[
'
id
'
,
'
title
'
,
'
author
'
,
'
pageviews
'
,
'
display_time
'
];
const
list
=
this
.
multipleSelection
;
const
data
=
this
.
formatJson
(
filterVal
,
list
);
export_json_to_excel
(
tHeader
,
data
,
'
列表excel
'
);
this
.
$refs
.
multipleTable
.
clearSelection
();
})
},
formatJson
(
filterVal
,
jsonData
)
{
return
jsonData
.
map
(
v
=>
filterVal
.
map
(
j
=>
v
[
j
]))
}
}
};
</
script
>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment