|
@@ -2,9 +2,6 @@
|
|
|
<div class="app-container">
|
|
|
<!-- 筛选条件 -->
|
|
|
<div class="screen-container">
|
|
|
- <div class="top clearfix">
|
|
|
- <div class="title fl">条件筛选</div>
|
|
|
- </div>
|
|
|
<el-form ref="screenForm" :model="screenForm" label-width="70px" size="small" label-position="left">
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :xs="24" :sm="12" :lg="6">
|
|
@@ -52,7 +49,7 @@
|
|
|
<el-button size="small" type="primary" @click="toCreate()">开通账号</el-button>
|
|
|
</div>
|
|
|
<div class="fr">
|
|
|
- <el-button size="small" type="primary" icon="el-icon-download" @click="handleExport">导出数据</el-button>
|
|
|
+ <ExportButton :exUrl="'admin/user/mch/export'" :exParams="exParams" />
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="table">
|
|
@@ -284,6 +281,15 @@ export default {
|
|
|
openSidebar: this.sidebar.opened
|
|
|
}
|
|
|
},
|
|
|
+ exParams() {
|
|
|
+ return {
|
|
|
+ userName: this.screenForm.account,
|
|
|
+ nickName: this.screenForm.nickName,
|
|
|
+ linkPhone: this.screenForm.phone,
|
|
|
+ email: this.screenForm.email,
|
|
|
+ status: this.screenForm.status,
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
goBack() {
|