You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1014 B
32 lines
1014 B
<template>
|
|
<div
|
|
v-if="crud.props.searchToggle"
|
|
>
|
|
<el-input v-model="query.name" clearable size="small" placeholder="输入岗位名称搜索" style="width: 200px;" class="filter-item" @keyup.enter.native="crud.toQuery" />
|
|
<date-range-picker v-model="query.createTime" class="date-item" />
|
|
<el-select v-model="query.enabled" clearable size="small" placeholder="状态" class="filter-item" style="width: 90px" @change="crud.toQuery">
|
|
<el-option v-for="item in dict.dict.job_status" :key="item.value" :label="item.label" :value="item.value" />
|
|
</el-select>
|
|
<rrOperation />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { header } from '@crud/crud'
|
|
import rrOperation from '@crud/RR.operation'
|
|
import DateRangePicker from '@/components/DateRangePicker'
|
|
export default {
|
|
components: { rrOperation, DateRangePicker },
|
|
mixins: [header()],
|
|
props: {
|
|
dict: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
permission: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
}
|
|
}
|
|
</script>
|