优化检索条件

This commit is contained in:
yangjun 2024-09-29 17:20:50 +08:00
parent 5d336c4fb4
commit a9a659c977
1 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@
<a-row :gutter="24">
<a-col :lg="8">
<a-form-item label="学期">
<j-dict-select-tag ref="xqDictTag" placeholder="请选择学年学期" v-model:value="queryParam.col01" dictCode="kc_xqxn_history,title,title,true order by start_time desc"/>
<JSelectMultiple v-model:value="queryParam.col01" placeholder="请选择学年学期" dictCode="kc_xqxn_history,title,title,true order by start_time desc"></JSelectMultiple>
</a-form-item>
</a-col>
<a-col :lg="8">
@ -155,6 +155,7 @@
import KcEvaluationsStatModal from './components/KcEvaluationsStatModal.vue'
import { JDictSelectTag, JInput } from '/@/components/Form';
import { getUserSf,getSysConfig } from '/@/views/site/utils/index';
import JSelectMultiple from '/@/components/Form/src/jeecg/components/JSelectMultiple.vue';
const queryParam = ref<any>({col01:getSysConfig().flag1});
const toggleSearchStatus = ref<boolean>(false);