|
|
@@ -119,6 +119,16 @@
|
|
|
>导出物防建设达标情况明细</el-button
|
|
|
>
|
|
|
</el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ icon="el-icon-upload2"
|
|
|
+ size="mini"
|
|
|
+ @click="handleExportSecurityWork"
|
|
|
+ v-hasPermi="['system:dept:exportSecurityWork']"
|
|
|
+ >导出安全保卫工作情况统计</el-button
|
|
|
+ >
|
|
|
+ </el-col>
|
|
|
<right-toolbar
|
|
|
:showSearch.sync="showSearch"
|
|
|
@queryTable="getList"
|
|
|
@@ -645,6 +655,15 @@ export default {
|
|
|
`机构信息管理-物防建设达标情况明细表_${new Date().getTime()}.xlsx`
|
|
|
);
|
|
|
},
|
|
|
+ handleExportSecurityWork() {
|
|
|
+ this.download(
|
|
|
+ "system/dept/exportSecurityWork",
|
|
|
+ {
|
|
|
+ ...this.queryParams,
|
|
|
+ },
|
|
|
+ `机构信息管理-安全保卫工作情况统计表_${new Date().getTime()}.xlsx`
|
|
|
+ );
|
|
|
+ },
|
|
|
/** 转换机构数据结构 */
|
|
|
// normalizer(node) {
|
|
|
// if (node.children && !node.children.length) {
|