53 lines
847 B
Vue
53 lines
847 B
Vue
<template>
|
|
|
|
<el-button
|
|
v-if="element.options!== null && element.options.attrs!==null"
|
|
:type="element.options.attrs.type"
|
|
:round="element.options.attrs.round"
|
|
:plain="element.options.attrs.plain"
|
|
:size="size"
|
|
class="de-search-button"
|
|
@click="triggerSearch"
|
|
>
|
|
{{ element.options.value }}
|
|
</el-button>
|
|
</template>
|
|
|
|
<script>
|
|
import bus from '@/utils/bus'
|
|
export default {
|
|
|
|
props: {
|
|
element: {
|
|
type: Object,
|
|
default: null
|
|
},
|
|
inDraw: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
size: String
|
|
},
|
|
data() {
|
|
return {
|
|
operator: 'eq',
|
|
values: null
|
|
}
|
|
},
|
|
created() {
|
|
},
|
|
methods: {
|
|
triggerSearch() {
|
|
bus.$emit('trigger-search-button')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.de-search-button {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|