|
|
@@ -2,7 +2,7 @@
|
|
|
import type { SelectProps } from "ant-design-vue";
|
|
|
import { ref, type PropType } from "vue";
|
|
|
|
|
|
-export type FieldType = 'title' | 'companyName';
|
|
|
+export type FieldType = 'title' | 'companyName' | 'keyword' | 'reportName';
|
|
|
|
|
|
const props = defineProps({
|
|
|
field: {
|
|
|
@@ -18,6 +18,8 @@ const props = defineProps({
|
|
|
const fieldOptions = ref<SelectProps['options']>([
|
|
|
{ value: 'title', label: '按报告类型' },
|
|
|
{ value: 'companyName', label: '按企业名称' },
|
|
|
+ { value: 'reportName', label: '按报告名称' },
|
|
|
+ { value: 'keyword', label: '按关键词' },
|
|
|
]);
|
|
|
|
|
|
const emits = defineEmits<{
|