21 lines
543 B
Vue
21 lines
543 B
Vue
|
|
<!--搜索与重置-->
|
||
|
|
<template>
|
||
|
|
<span>
|
||
|
|
<el-button class="filter-item" size="mini" type="success" icon="el-icon-search" @click="crud.toQuery">搜索</el-button>
|
||
|
|
<el-button v-if="crud.optShow.reset" class="filter-item" size="mini" type="warning" icon="el-icon-refresh-left" @click="crud.resetQuery()">重置</el-button>
|
||
|
|
</span>
|
||
|
|
</template>
|
||
|
|
<script>
|
||
|
|
import { crud } from '@crud/crud'
|
||
|
|
export default {
|
||
|
|
mixins: [crud()],
|
||
|
|
props: {
|
||
|
|
itemClass: {
|
||
|
|
type: String,
|
||
|
|
required: false,
|
||
|
|
default: ''
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|