|
@@ -114,6 +114,14 @@
|
|
|
class="flex"
|
|
|
style="align-items: center; justify-content: space-between"
|
|
|
>
|
|
|
+ <div>
|
|
|
+ <div>
|
|
|
+ <el-radio v-model="searchType" label="1">节点</el-radio>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ <el-radio v-model="searchType" label="2">表名</el-radio>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<el-input
|
|
|
placeholder="输入关键字进行过滤"
|
|
|
v-model="filterText"
|
|
@@ -121,17 +129,14 @@
|
|
|
style="width: 65%; margin-right: 15px"
|
|
|
@clear="clearSearch"
|
|
|
></el-input>
|
|
|
- <el-switch
|
|
|
- v-model="searchType"
|
|
|
- active-value="1"
|
|
|
- inactive-value="2"
|
|
|
- inline-prompt
|
|
|
- active-text="按节点"
|
|
|
- inactive-text="按表名"
|
|
|
- />
|
|
|
+
|
|
|
<el-button type="primary" @click="searchTreeClick"
|
|
|
>搜索</el-button
|
|
|
>
|
|
|
+
|
|
|
+ <el-tooltip content="查询工序节点无内业资料类型" placement="top">
|
|
|
+ <el-button type="success" @click="filterSearchClick" >过滤</el-button>
|
|
|
+ </el-tooltip>
|
|
|
</div>
|
|
|
<div class="flex1 ov-hidden">
|
|
|
<el-scrollbar class="h-100p" v-if="isShowTree">
|
|
@@ -2905,6 +2910,9 @@ export default {
|
|
|
}
|
|
|
|
|
|
this.searchtreeLoad = false;
|
|
|
+ },
|
|
|
+ filterSearchClick(){
|
|
|
+
|
|
|
},
|
|
|
clearSearch() {
|
|
|
this.isSearch = false;
|