RR.operation.vue 714 Bytes
<!--搜索与重置-->
<template>
  <span>
    <el-button class="filter-item" :disabled="operation.add" 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>
    <slot name="sright" />
  </span>
</template>
<script>
import { crud } from '@crud/crud'
export default {
  mixins: [crud()],
  props: {
    itemClass: {
      type: String,
      required: false,
      default: ''
    },
    operation: {
      type: Object,
      default() {
        return {
          add: false
        }
      }
    }
  }
}
</script>