2023-12-04 19:10:26 +08:00
|
|
|
<template>
|
|
|
|
|
<el-card shadow="always" class="search_header_top_row1">
|
|
|
|
|
|
|
|
|
|
<el-form :inline="true" :model="filterForm" class="demo-form-inline">
|
|
|
|
|
<el-form-item label="关键字">
|
2023-12-09 21:38:25 +08:00
|
|
|
<el-input v-model.trim="filterForm.keyword" placeholder="请输入关键字" clearable />
|
2023-12-04 19:10:26 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="时间范围">
|
2023-12-09 21:38:25 +08:00
|
|
|
<el-date-picker v-model.trim="filterForm.dataRange" type="daterange" range-separator="To" start-placeholder="Start date"
|
2023-12-04 19:10:26 +08:00
|
|
|
end-placeholder="End date" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" @click="serachFn">查询</el-button>
|
|
|
|
|
<el-button type="plain" @click="resetFn">重置</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div>
|
|
|
|
|
<el-button type="primary" @click="sortFn">编辑排序</el-button>
|
|
|
|
|
<el-button type="primary" @click="addFn">新增</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-card>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
const emits = defineEmits(['search','reset','sort','add'])
|
|
|
|
|
|
|
|
|
|
const filterForm = reactive({
|
|
|
|
|
keyword: '',
|
|
|
|
|
dataRange:''
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const serachFn = () => {
|
|
|
|
|
emits('search',filterForm)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const resetFn=()=>{
|
|
|
|
|
emits('reset')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const sortFn =()=>{
|
|
|
|
|
emits('sort')
|
|
|
|
|
}
|
|
|
|
|
const addFn =()=>{
|
|
|
|
|
emits('add')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"></style>
|