|
@@ -104,9 +104,19 @@
|
|
|
type="primary"
|
|
type="primary"
|
|
|
icon="el-icon-upload2"
|
|
icon="el-icon-upload2"
|
|
|
size="mini"
|
|
size="mini"
|
|
|
- @click="handleExportSecurity"
|
|
|
|
|
|
|
+ @click="handleExportTotal"
|
|
|
v-hasPermi="['system:dept:exportConstruction']"
|
|
v-hasPermi="['system:dept:exportConstruction']"
|
|
|
- >导出全省农信系统物防建设达标情况</el-button
|
|
|
|
|
|
|
+ >导出物防建设达标情况汇总</el-button
|
|
|
|
|
+ >
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="1.5">
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ icon="el-icon-upload2"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ @click="handleExportDetails"
|
|
|
|
|
+ v-hasPermi="['system:dept:exportConstructionDetails']"
|
|
|
|
|
+ >导出物防建设达标情况明细</el-button
|
|
|
>
|
|
>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<right-toolbar
|
|
<right-toolbar
|
|
@@ -616,13 +626,22 @@ export default {
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
- handleExportSecurity() {
|
|
|
|
|
|
|
+ handleExportTotal() {
|
|
|
this.download(
|
|
this.download(
|
|
|
"system/dept/exportConstruction",
|
|
"system/dept/exportConstruction",
|
|
|
{
|
|
{
|
|
|
...this.queryParams,
|
|
...this.queryParams,
|
|
|
},
|
|
},
|
|
|
- `机构信息管理-物防建设达标情况统计_${new Date().getTime()}.xlsx`
|
|
|
|
|
|
|
+ `机构信息管理-物防建设达标情况汇总表_${new Date().getTime()}.xlsx`
|
|
|
|
|
+ );
|
|
|
|
|
+ },
|
|
|
|
|
+ handleExportDetails() {
|
|
|
|
|
+ this.download(
|
|
|
|
|
+ "system/dept/exportConstructionDetails",
|
|
|
|
|
+ {
|
|
|
|
|
+ ...this.queryParams,
|
|
|
|
|
+ },
|
|
|
|
|
+ `机构信息管理-物防建设达标情况明细表_${new Date().getTime()}.xlsx`
|
|
|
);
|
|
);
|
|
|
},
|
|
},
|
|
|
/** 转换机构数据结构 */
|
|
/** 转换机构数据结构 */
|