2023年6月18日 修复搜索条件

This commit is contained in:
bai 2023-06-18 22:42:58 +08:00
parent cc6d76de1f
commit 9a66c57210
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,8 @@
<a-row :gutter="24"> <a-row :gutter="24">
<a-col :lg="8"> <a-col :lg="8">
<a-form-item label="学年学期"> <a-form-item label="学年学期">
<JInput placeholder="请输入学年学期" v-model:value="queryParam.xnxq"></JInput> <!-- <JInput placeholder="请输入学年学期" v-model:value="queryParam.xnxq"></JInput> -->
<j-dict-select-tag ref="xqDictTag" placeholder="请选择学期" v-model:value="queryParam.xnxq" dictCode="kc_tkcstj,xnxq,xnxq,true GROUP BY xnxq order by xnxq desc" />
</a-form-item> </a-form-item>
</a-col> </a-col>
<a-col :lg="8"> <a-col :lg="8">
@ -109,6 +110,7 @@
import KcTkcstjModal from './components/KcTkcstjModal.vue' import KcTkcstjModal from './components/KcTkcstjModal.vue'
import keTangModal from './components/keTangModal.vue' import keTangModal from './components/keTangModal.vue'
import JInput from '/@/components/Form/src/jeecg/components/JInput.vue'; import JInput from '/@/components/Form/src/jeecg/components/JInput.vue';
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
const queryParam = ref<any>({}); const queryParam = ref<any>({});
const toggleSearchStatus = ref<boolean>(false); const toggleSearchStatus = ref<boolean>(false);