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
7969b6d3
Commit
7969b6d3
authored
Jul 25, 2017
by
Pan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refine code
parent
3488930e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
8 deletions
+11
-8
index.js
src/router/index.js
+2
-2
selectExcel.vue
src/views/excel/selectExcel.vue
+9
-6
No files found.
src/router/index.js
View file @
7969b6d3
...
...
@@ -46,12 +46,12 @@ const ErrorLog = _import('errlog/index');
/* excel */
const
ExcelDownload
=
_import
(
'excel/index'
);
const
SelectExcelDownload
=
_import
(
'excel/
excel2
'
);
const
SelectExcelDownload
=
_import
(
'excel/
selectExcel
'
);
/* theme */
const
Theme
=
_import
(
'theme/index'
);
/* example*/
/* example
*/
const
TableLayout
=
_import
(
'example/table/index'
);
const
DynamicTable
=
_import
(
'example/table/dynamictable'
);
const
Table
=
_import
(
'example/table/table'
);
...
...
src/views/excel/
excel2
.vue
→
src/views/excel/
selectExcel
.vue
View file @
7969b6d3
<
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
: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
}}
...
...
@@ -20,11 +22,13 @@
<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>
...
...
@@ -35,6 +39,7 @@
</div>
</template>
<
script
>
import
{
getList
}
from
'api/article'
;
...
...
@@ -62,9 +67,7 @@
},
handleDownload
()
{
require
.
ensure
([],
()
=>
{
const
{
export_json_to_excel
}
=
require
(
'vendor/Export2Excel'
);
const
{
export_json_to_excel
}
=
require
(
'vendor/Export2Excel'
);
const
tHeader
=
[
'序号'
,
'文章标题'
,
'作者'
,
'阅读数'
,
'发布时间'
];
const
filterVal
=
[
'id'
,
'title'
,
'author'
,
'pageviews'
,
'display_time'
];
const
list
=
this
.
multipleSelection
;
...
...
@@ -78,4 +81,4 @@
}
}
};
</
script
>
\ No newline at end of file
</
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