|
|
|
@ -1,9 +1,7 @@
|
|
|
|
|
<script setup lang="tsx">
|
|
|
|
|
import { reactive, ref, unref } from 'vue'
|
|
|
|
|
import {
|
|
|
|
|
getRepIndexSearchListApi,
|
|
|
|
|
queryRepIndexSetApi
|
|
|
|
|
} from '@/api/dataset/RepIndexSet'
|
|
|
|
|
getRepIndexSearchListApi} from '@/api/dataset/RepIndexSet'
|
|
|
|
|
import { TableData } from '@/api/reporting/RepDataProblem/RepDataProblem/types'
|
|
|
|
|
import { useTable } from '@/hooks/web/useTable'
|
|
|
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
|
|
@ -23,7 +21,9 @@ import { transfDictList } from '@/utils';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import {useRoute} from "vue-router"
|
|
|
|
|
import { getDateByPrevMonth } from '@/utils/dateUtil'
|
|
|
|
|
const route = useRoute();
|
|
|
|
|
const date = getDateByPrevMonth();
|
|
|
|
|
const pageQuery = ref(route || null);
|
|
|
|
|
const indexsetCode = pageQuery.value?.query?.indexsetCode;
|
|
|
|
|
const reportDate = pageQuery.value?.query?.reportDate;
|
|
|
|
@ -219,6 +219,7 @@ const searchSchema = reactive<FormSchema[]>([
|
|
|
|
|
formItemProps: {
|
|
|
|
|
rules: [required()],
|
|
|
|
|
},
|
|
|
|
|
value:date
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
field: 'itemAndTarget',
|
|
|
|
|