index.vue
3.91 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<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" @change="handleCheckedChange">
<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-button type="primary" size="mini" class="fr">提交</el-button>
</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" @change="handleCheckedChange">
<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-button type="primary" size="mini" @click="onSubmit" class="fr">提交</el-button>
</el-popover>
</el-tooltip>
</el-row>
</div>
</template>
<script>
export default {
name: "RightToolbar",
data() {
return {
show: this.noSearch,
col_data: this.colData,
selectData: [],
currName:''
};
},
props: {
showSearch: {
type: Boolean,
default: true,
},
noSearch: {
type: Boolean,
default: true,
},
colData: {
type: Array,
default: () => []
},
pageName: {
type: String,
default: 'first'
}
},
watch: {
selectData(newVal, oldVal) {
this.$emit("selectData", newVal);
},
pageName(newVal, oldVal) {
console.log(newVal)
this.currName = newVal
}
},
created() {
// const selectData = ["用户名称", "用户昵称", "部门", "手机号码", "状态"]
// this.$emit("selectData", selectData);
console.log(this.$store.getters.menuTitle)
console.log(this.$store.getters.menuTitle+this.currName)
},
methods: {
//搜索
toggleSearch() {
this.$emit("update:showSearch", !this.showSearch);
},
//刷新
refresh() {
this.$emit("queryTable");
},
//checkbox-group 绑定值变化事件
handleCheckedChange(value) {
console.log(value)
// this.selectData= value;
// console.log(this.selectData)
// console.log(value)
},
onSubmit() {
}
},
};
</script>