137 lines
3.2 KiB
Vue
137 lines
3.2 KiB
Vue
<!-- 搜索表单 -->
|
|
<template>
|
|
<a-space :size="10" style="flex-wrap: wrap">
|
|
<a-button type="primary" class="ele-btn-icon" @click="add">
|
|
<template #icon>
|
|
<PlusOutlined />
|
|
</template>
|
|
<span>添加</span>
|
|
</a-button>
|
|
<a-radio-group v-model:value="type" @change="handleSearch">
|
|
<a-radio-button value="已发布"
|
|
>已发布({{ articleCount?.totalNum }})</a-radio-button
|
|
>
|
|
<a-radio-button value="待审核"
|
|
>待审核({{ articleCount?.totalNum2 }})</a-radio-button
|
|
>
|
|
<a-radio-button value="已驳回"
|
|
>已驳回({{ articleCount?.totalNum3 }})</a-radio-button
|
|
>
|
|
</a-radio-group>
|
|
<a-tree-select
|
|
allow-clear
|
|
:tree-data="navigationList"
|
|
tree-default-expand-all
|
|
style="width: 230px"
|
|
placeholder="请选择栏目"
|
|
:value="where.categoryId || undefined"
|
|
:dropdown-style="{ maxHeight: '360px', overflow: 'auto' }"
|
|
@update:value="(value?: number) => (where.categoryId = value)"
|
|
@change="onCategoryId"
|
|
/>
|
|
<a-input-search
|
|
allow-clear
|
|
placeholder="请输入关键词"
|
|
v-model:value="where.keywords"
|
|
@pressEnter="reload"
|
|
@search="reload"
|
|
/>
|
|
<a-button @click="reset">重置</a-button>
|
|
</a-space>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { PlusOutlined } from '@ant-design/icons-vue';
|
|
import { ref, watch } from 'vue';
|
|
import { getCount } from '@/api/cms/article';
|
|
import type { ArticleCount, ArticleParam } from '@/api/cms/article/model';
|
|
import useSearch from '@/utils/use-search';
|
|
import { Navigation } from '@/api/cms/navigation/model';
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
// 选中的角色
|
|
selection?: [];
|
|
merchantId?: number;
|
|
navigationList?: Navigation[];
|
|
model?: string;
|
|
}>(),
|
|
{}
|
|
);
|
|
|
|
const type = ref<string>();
|
|
// 统计数据
|
|
const articleCount = ref<ArticleCount>();
|
|
|
|
// 表单数据
|
|
const { where, resetFields } = useSearch<ArticleParam>({
|
|
articleId: undefined,
|
|
navigationId: undefined,
|
|
categoryId: undefined,
|
|
merchantId: undefined,
|
|
status: undefined,
|
|
keywords: ''
|
|
});
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'search', where?: ArticleParam): void;
|
|
(e: 'add'): void;
|
|
(e: 'remove'): void;
|
|
(e: 'batchMove'): void;
|
|
}>();
|
|
|
|
// 新增
|
|
const add = () => {
|
|
emit('add');
|
|
};
|
|
|
|
const handleSearch = (e) => {
|
|
const text = e.target.value;
|
|
resetFields();
|
|
if (text === '已发布') {
|
|
where.status = 0;
|
|
}
|
|
if (text === '待审核') {
|
|
where.status = 1;
|
|
}
|
|
if (text === '已驳回') {
|
|
where.status = 2;
|
|
}
|
|
emit('search', where);
|
|
};
|
|
|
|
const reload = () => {
|
|
getCount(where).then((data: any) => {
|
|
articleCount.value = data;
|
|
});
|
|
emit('search', where);
|
|
};
|
|
|
|
// 按分类查询
|
|
const onCategoryId = (id: number) => {
|
|
where.categoryId = id;
|
|
emit('search', where);
|
|
};
|
|
|
|
/* 重置 */
|
|
const reset = () => {
|
|
resetFields();
|
|
type.value = '';
|
|
reload();
|
|
};
|
|
|
|
watch(
|
|
() => props.merchantId,
|
|
(id) => {
|
|
if (Number(id) > 0) {
|
|
where.merchantId = id;
|
|
reload();
|
|
} else {
|
|
where.merchantId = undefined;
|
|
reload();
|
|
}
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
</script>
|