'admin-22.12.12:发布v2.4.21版本,具体更新内容查看CHANGELOG.md' !42 修复 工作流无法添加新节点问题 Merge pull request !42 from beta/bugfix_workflow 修复 工作流无法添加新节点问题 1. 修复 工作流无法添加新节点问题 2. 修复 左侧导航无法隐藏问题 'admin-22.12.09:发布v2.4.2版本,具体更新内容查看CHANGELOG.md' !41 修复get请求传递嵌套对象或数组时无法正常编码问题 Merge pull request !41 from 随心/master !40 开启TagsView缓存后,刷新后所有的路由都变成组件缓存了 Merge pull request !40 from mrjimin/master 修复get请求传递嵌套对象或数组时无法正常编码问题 update src/layout/routerView/parent.vue. Signed-off-by: mrjimin <z8888788@163.com> update src/layout/routerView/parent.vue. 这里应该拿到的是已经设置开启组件缓存的路由,而不是全部,需要先判断item.meta.isKeepAlive Signed-off-by: mrjimin <z8888788@163.com> 'admin-22.11.30:发布v2.4.1版本,具体更新内容查看CHANGELOG.md' Merge branch 'master' of https://gitee.com/lyt-top/vue-next-admin 'admin-22.11.30:删除v2.4.0版本不需要的依赖' update src/views/error/404.vue. Signed-off-by: lyt-Top <1105290566@qq.com> update src/components/table/index.vue. Signed-off-by: lyt-Top <1105290566@qq.com> 'admin-22.11.30:修改v2.4.0文字说明' 'admin-22.11.30:修改v2.4.0文字说明' 'admin-22.11.29:发布v2.4.0版本,具体更新内容查看CHANGELOG.md' 'admin-22.11.19:修复v2.3.0版本动态路由事件调用关闭当前tagsview、普通路由刷新界面参数丢失问题' 'admin-22.11.18:优化v2.3.0版本tagsview风格5兼容火狐' 'admin-22.11.17:优化v2.3.0版本iframe右键菜单刷新问题' ...
111 lines
3.4 KiB
Vue
111 lines
3.4 KiB
Vue
<template>
|
|
<div class="table-search-container" v-if="props.search.length > 0">
|
|
<el-form ref="tableSearchRef" :model="state.form" size="default" label-width="100px" class="table-form">
|
|
<el-row>
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="4" class="mb20" v-for="(val, key) in search" :key="key" v-show="key === 0 || state.isToggle">
|
|
<template v-if="val.type !== ''">
|
|
<el-form-item
|
|
:label="val.label"
|
|
:prop="val.prop"
|
|
:rules="[{ required: val.required, message: `${val.label}不能为空`, trigger: val.type === 'input' ? 'blur' : 'change' }]"
|
|
>
|
|
<el-input v-model="state.form[val.prop]" :placeholder="val.placeholder" clearable v-if="val.type === 'input'" style="width: 100%" />
|
|
<el-date-picker
|
|
v-model="state.form[val.prop]"
|
|
type="date"
|
|
:placeholder="val.placeholder"
|
|
v-else-if="val.type === 'date'"
|
|
style="width: 100%"
|
|
/>
|
|
<el-select v-model="state.form[val.prop]" :placeholder="val.placeholder" v-else-if="val.type === 'select'" style="width: 100%">
|
|
<el-option v-for="item in val.options" :key="item.value" :label="item.label" :value="item.value"> </el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</template>
|
|
</el-col>
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="4" class="mb20">
|
|
<el-form-item class="table-form-btn" :label-width="search.length <= 1 ? '10px' : '100px'">
|
|
<template #label v-if="search.length > 1">
|
|
<div class="table-form-btn-toggle ml10" @click="state.isToggle = !state.isToggle">
|
|
<span>{{ state.isToggle ? '收筛选' : '展筛选' }}</span>
|
|
<SvgIcon :name="state.isToggle ? 'ele-ArrowUp' : 'ele-ArrowDown'" />
|
|
</div>
|
|
</template>
|
|
<div>
|
|
<el-button size="default" type="primary" @click="onSearch(tableSearchRef)">查询 </el-button>
|
|
<el-button size="default" type="info" class="ml10" @click="onReset(tableSearchRef)"> 重置 </el-button>
|
|
</div>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="makeTableDemoSearch">
|
|
import { reactive, ref, onMounted } from 'vue';
|
|
import type { FormInstance } from 'element-plus';
|
|
|
|
// 定义父组件传过来的值
|
|
const props = defineProps({
|
|
// 搜索表单
|
|
search: {
|
|
type: Array<TableSearchType>,
|
|
default: () => [],
|
|
},
|
|
});
|
|
|
|
// 定义子组件向父组件传值/事件
|
|
const emit = defineEmits(['search']);
|
|
|
|
// 定义变量内容
|
|
const tableSearchRef = ref<FormInstance>();
|
|
const state = reactive({
|
|
form: {},
|
|
isToggle: false,
|
|
});
|
|
|
|
// 查询
|
|
const onSearch = (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return;
|
|
formEl.validate((valid: boolean) => {
|
|
if (valid) {
|
|
emit('search', state.form);
|
|
} else {
|
|
return false;
|
|
}
|
|
});
|
|
};
|
|
// 重置
|
|
const onReset = (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return;
|
|
formEl.resetFields();
|
|
emit('search', state.form);
|
|
};
|
|
// 初始化 form 字段,取自父组件 search.prop
|
|
const initFormField = () => {
|
|
if (props.search.length <= 0) return false;
|
|
props.search.forEach((v) => (state.form[v.prop] = ''));
|
|
};
|
|
// 页面加载时
|
|
onMounted(() => {
|
|
initFormField();
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.table-search-container {
|
|
display: flex;
|
|
.table-form {
|
|
flex: 1;
|
|
.table-form-btn-toggle {
|
|
white-space: nowrap;
|
|
user-select: none;
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--el-color-primary);
|
|
}
|
|
}
|
|
}
|
|
</style>
|