index.vue
2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<template>
<div class="top-right-btn">
<el-row v-if="noSearch">
<el-tooltip
class="item"
effect="dark"
:content="showSearch ? '隐藏搜索' : '显示搜索'"
>
<el-button
size="mini"
circle
icon="el-icon-search"
@click="toggleSearch()"
/>
</el-tooltip>
<el-tooltip class="item" effect="dark" content="刷新" placement="top">
<el-button
size="mini"
circle
icon="el-icon-refresh"
@click="refresh()"
/>
</el-tooltip>
<el-tooltip class="item" effect="dark" content="筛选" placement="top">
<el-popover
placement="bottom"
width="100"
trigger="click"
style="margin-left: 10px"
>
<el-button
slot="reference"
size="mini"
circle
icon="el-icon-s-tools"
></el-button>
<el-checkbox-group v-model="selectData">
<el-checkbox
v-for="item in col_data"
:key="item.title"
:label="item.title"
:checked="item.istrue"
style="padding: 4px"
:disabled="item.disabled"
/>
</el-checkbox-group>
</el-popover>
</el-tooltip>
</el-row>
<el-row v-else>
<el-tooltip class="item" effect="dark" content="刷新" placement="top">
<el-button
size="mini"
circle
icon="el-icon-refresh"
@click="refresh()"
/>
</el-tooltip>
<el-tooltip class="item" effect="dark" content="筛选" placement="top">
<el-popover
placement="bottom"
width="100"
trigger="click"
style="margin-left: 10px"
>
<el-button
slot="reference"
size="mini"
circle
icon="el-icon-s-tools"
></el-button>
<el-checkbox-group v-model="selectData">
<el-checkbox
v-for="item in col_data"
:key="item.title"
:label="item.title"
:checked="item.istrue"
style="padding: 4px"
:disabled="item.disabled"
/>
</el-checkbox-group>
</el-popover>
</el-tooltip>
</el-row>
</div>
</template>
<script>
export default {
name: "RightToolbar",
data() {
return {
show: this.noSearch,
col_data: this.colData,
selectData: [],
};
},
props: {
showSearch: {
type: Boolean,
default: true,
},
noSearch: {
type: Boolean,
default: true,
},
colData: Array,
},
watch: {
selectData(newVal, oldVal) {
this.$emit("selectData", newVal);
},
},
methods: {
//搜索
toggleSearch() {
this.$emit("update:showSearch", !this.showSearch);
},
//刷新
refresh() {
this.$emit("queryTable");
},
},
};
</script>