diff --git a/src/views/mes/stockindetail/index.vue b/src/views/mes/stockindetail/index.vue index 7a983040..af405f26 100644 --- a/src/views/mes/stockindetail/index.vue +++ b/src/views/mes/stockindetail/index.vue @@ -46,7 +46,7 @@ /> - + + + + + {{ showAllFilters ? t('FactoryModeling.FactoryStructure.collapseText') : t('FactoryModeling.FactoryStructure.expandText') }} + + 搜索 重置 @@ -144,6 +150,12 @@ const queryParams = reactive({ }) const queryFormRef = ref() // 搜索的表单 const exportLoading = ref(false) // 导出的加载中 +const showAllFilters = ref(false) +const filterCount = 4 + +const toggleFilters = () => { + showAllFilters.value = !showAllFilters.value +} /** 查询列表 */ const getList = async () => {