|
@@ -49,6 +49,16 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="warning"
|
|
|
+ plain
|
|
|
+ icon="el-icon-download"
|
|
|
+ size="mini"
|
|
|
+ @click="handleExport2"
|
|
|
+ >台卡导出
|
|
|
+ </el-button>
|
|
|
+ </el-col>
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
<el-table v-loading="loading" :data="gljtSqList">
|
|
@@ -282,7 +292,13 @@
|
|
|
this.download('gljt/gljtSq/export', {
|
|
|
...this.queryParams
|
|
|
}, `gljtSq_${new Date().getTime()}.xlsx`)
|
|
|
- }
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport2() {
|
|
|
+ this.download('gljt/gljtLr/exportGljtLrExcel2', {
|
|
|
+ ...this.queryParams
|
|
|
+ }, `享受高龄津贴老人台卡.xlsx`)
|
|
|
+ },
|
|
|
}
|
|
|
};
|
|
|
</script>
|