...
|
...
|
@@ -5,8 +5,12 @@ |
|
|
<el-row style="margin-bottom: 5px;margin-top: 5px">
|
|
|
<el-col :span="24">
|
|
|
<div class="flex-div-start margin-top-bottom-10">
|
|
|
<el-input style="width:160px;margin-left: 10px;float: left;" class="margin-right-10" v-model="keyWords"
|
|
|
placeholder="输入关键字"/>
|
|
|
<el-tooltip placement="right-end">
|
|
|
<template #content>关键字检索包含<br />资源名称<br />IP地址</template>
|
|
|
<el-input style="width:160px;margin-left: 10px;float: left;" class="margin-right-10"
|
|
|
v-model="keyWords"
|
|
|
placeholder="输入关键字" @click.danger="deleteItem(scope.row,scope.$index)"/>
|
|
|
</el-tooltip>
|
|
|
<el-dropdown style="margin-top: -15px;margin-left: 10px;float: left;">
|
|
|
<el-icon class="el-icon--right">
|
|
|
<arrow-down/>
|
...
|
...
|
@@ -30,7 +34,7 @@ |
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row>
|
|
|
<div class="flex-div-start">
|
|
|
<div class="flex-div-start" style="margin: 4px;">
|
|
|
<el-button type="primary" @click="save()" style="margin-left: 10px">新增</el-button>
|
|
|
<el-button type="primary" @click="deleteOther()" style="margin-left: 10px">删除</el-button>
|
|
|
</div>
|
...
|
...
|
@@ -44,7 +48,7 @@ |
|
|
@loaddata="loadTableDataList"
|
|
|
@selectionChange="selectionChange"
|
|
|
:showIndex="true"
|
|
|
:showSelection="false"
|
|
|
:showSelection="true"
|
|
|
:showBorder="true"
|
|
|
:loading="loading"
|
|
|
:showPage="true"
|
...
|
...
|
|