Commit 65c27898 authored by 高滢's avatar 高滢

feat(招标管理招标计划): 详情页删除逻辑

parent bee044ca
......@@ -71,7 +71,11 @@ import {onMounted, ref, unref} from 'vue';
});
getStatisticList();
});
const params = ref({ filingCycle: '2024', planType: '计划投资项目', company: '' });
const params = ref({
filingCycle: new Date().getFullYear(),
planType: '计划投资项目',
company: '',
});
const loadingRef = ref(false);
const columns = ref([]);
......
......@@ -102,7 +102,7 @@
const [register, { openModal: openModal }] = useModal();
const dataSource = ref([]);
const loadingRef = ref(false);
const params = ref({ filingCycle: '2024', planType: '自投', company: '' });
const params = ref({ filingCycle: new Date().getFullYear(), planType: '自投', company: '' });
onMounted(async () => {
const data = await getDepartmentList();
searchForm1.value[2].componentProps.options = data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment