|
@@ -10,10 +10,15 @@
|
|
|
<el-input
|
|
<el-input
|
|
|
class="filterTextInput"
|
|
class="filterTextInput"
|
|
|
v-model="queryForm.queryString"
|
|
v-model="queryForm.queryString"
|
|
|
- :suffix-icon="Search"
|
|
|
|
|
placeholder="请输入相机名称/设备ID/算法名称"
|
|
placeholder="请输入相机名称/设备ID/算法名称"
|
|
|
@keyup.enter.native="handleSearchCamera"
|
|
@keyup.enter.native="handleSearchCamera"
|
|
|
- />
|
|
|
|
|
|
|
+ clearable
|
|
|
|
|
+ @clear="handleSearchCamera"
|
|
|
|
|
+ >
|
|
|
|
|
+ <template #suffix>
|
|
|
|
|
+ <el-icon class="el-input__icon" @click="handleSearchCamera"><search /></el-icon>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-input>
|
|
|
<div style="display: flex; justify-content: space-around">
|
|
<div style="display: flex; justify-content: space-around">
|
|
|
<el-checkbox
|
|
<el-checkbox
|
|
|
v-model="queryForm.isEnableAlgo"
|
|
v-model="queryForm.isEnableAlgo"
|
|
@@ -290,4 +295,12 @@
|
|
|
.nodeSelect {
|
|
.nodeSelect {
|
|
|
color: #0052d9;
|
|
color: #0052d9;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ .el-input__icon {
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .el-input__icon:hover {
|
|
|
|
|
+ color: #0052d9;
|
|
|
|
|
+ }
|
|
|
</style>
|
|
</style>
|