2023年6月14日 修复统计的搜索条件

This commit is contained in:
bai 2023-06-14 09:27:13 +08:00
parent b23de45f16
commit 5567f0d480
1 changed files with 44 additions and 6 deletions

View File

@ -1,24 +1,24 @@
<template>
<div style="width:100%;height: 100%;">
<div class="jeecg-basic-table-form-container" hidden>
<div class="jeecg-basic-table-form-container">
<a-form @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
<a-row :gutter="24">
<a-col :lg="8">
<a-form-item label="学期">
<j-dict-select-tag placeholder="请选择学期" v-model:value="queryParam.xqxn" dictCode="kc_tksfrzb,ZWMC,ZWMC"/>
<j-dict-select-tag placeholder="请选择学期" v-model:value="queryParam.xqxn" dictCode="kc_xqxn_history,title,title"/>
</a-form-item>
</a-col>
<!--<template v-if="toggleSearchStatus">-->
<a-col :lg="8">
<a-form-item label="学院">
<j-dict-select-tag placeholder="请选择学院" v-model:value="queryParam.dwmc" dictCode="kc_tksfrzb,ZWMC,ZWMC,true group by ZWMC"/>
<j-dict-select-tag placeholder="请选择学院" v-model:value="queryParam.dwmc" dictCode="xxhbuser,DWMC,DWH,true group by DWH"/>
</a-form-item>
</a-col>
<a-col :lg="8">
<a-form-item label="数据来源">
<j-dict-select-tag
placeholder="请选择数据来源" v-model:value="queryParam.source"
:options="[{ value: 0, text: '课程中心'}, { value: 1, text: '老系统'},{ value: 2, text: '政务大厅'},{ value: 3, text: '纸质评价'}]"
:options="[{ value: 0, label: '课程中心'}, { value: 1, label: '老系统'},{ value: 2, label: '政务大厅'},{ value: 3, label: '纸质评价'}]"
/>
</a-form-item>
</a-col>
@ -68,6 +68,7 @@ import { ref, onMounted, Ref, watch, reactive } from 'vue';
import { nextTick } from 'vue';
import { useMessage } from '/@/hooks/web/useMessage';
import { execAvyApi, getAvyCtrlLiveOpenOrCloseUrl } from "/@/views/site/utils/index";
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
//const showAllLiveRef = ref();
@ -105,7 +106,7 @@ const labelCol = reactive({
const ipagination = ref(
{
current: 1,
pageSize: 15,
pageSize: 10,
pageSizeOptions: ['10', '20', '30'],
showTotal: (total, range) => {
return range[0] + '-' + range[1] + ' 共' + total + '条';
@ -173,4 +174,41 @@ video::-webkit-media-controls-timeline {
.red {
color: red;
}
</style>
.jeecg-basic-table-form-container {
.ant-form {
padding: 12px 10px 6px 10px;
margin-bottom: 8px;
background-color: #fff;
border-radius: 2px;
}
.table-page-search-submitButtons {
display: block;
margin-bottom: 24px;
white-space: nowrap;
}
.query-group-cust{
width: calc(50% - 15px);
min-width: 100px !important;
}
.query-group-split-cust{
width: 30px;
display: inline-block;
text-align: center
}
}
.jeecg-basic-table-form-containera{
line-height: 24px;
background: #fff;
padding: 20px 0 0 10px;
margin-bottom: -20px;
}
.jeecg-basic-table .ant-table-wrapper .ant-table-title {
min-height: 0px !important;
padding: 0 0 8px 0 !important;
}
</style>