|
@@ -7,6 +7,7 @@
|
|
|
<div class="search-header">
|
|
|
<floor-cascader @change="changeFloor"></floor-cascader>
|
|
|
<my-cascader ref="cascader" @change="changeDevice"></my-cascader>
|
|
|
+ <el-button size="small" @click="handleLinkAssets" class="iconfont icon-batchassociation">批量关联资产</el-button>
|
|
|
</div>
|
|
|
<hanson-table @close="close" :graphyId="graphyId" ref="tableMain"></hanson-table>
|
|
|
</div>
|
|
@@ -169,6 +170,10 @@ export default {
|
|
|
if (this.$refs.tableMain)
|
|
|
this.$refs.tableMain.getHeaderData(this.param);
|
|
|
}
|
|
|
+ },
|
|
|
+ // 批量关联资产
|
|
|
+ handleLinkAssets() {
|
|
|
+ this.$message('添加弹窗')
|
|
|
}
|
|
|
}
|
|
|
};
|
|
@@ -194,6 +199,13 @@ export default {
|
|
|
padding-bottom: 10px;
|
|
|
margin: 0 10px;
|
|
|
border-bottom: 1px solid #bcbcbc;
|
|
|
+ .icon-batchassociation{
|
|
|
+ float: right;
|
|
|
+ font-size: 12px;
|
|
|
+ /deep/ span{
|
|
|
+ margin-left: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|