120 lines
3.5 KiB
Vue
120 lines
3.5 KiB
Vue
|
<template>
|
|||
|
<div id="siteMain">
|
|||
|
<div id="maxSite">
|
|||
|
<a-layout>
|
|||
|
<!-- 页头 -->
|
|||
|
<headerPage/>
|
|||
|
<!-- 主体部分 -->
|
|||
|
<a-layout-content>
|
|||
|
|
|||
|
<a-card style="min-height: calc(100vh - 68px * 2);">
|
|||
|
<div style="font-size: 24px;font-weight: bold;height: 70px;">听课笔记
|
|||
|
<span>({{getSysConfig().flag1}}, {{dateFormat(getSysConfig().bxqkssj, 'MM月dd日')}} 至 {{dateFormat(getSysConfig().bxqjssj, 'MM月dd日')}})</span>
|
|||
|
</div>
|
|||
|
<a-row :gutter="[16,16]">
|
|||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 4 }">
|
|||
|
<a-date-picker placeholder="请选择开始日期" format="YYYY-MM-DD" valueFormat="YYYY-MM-DD" v-model:value="queryParam.startTime" style="width: 100%" />
|
|||
|
</a-col>
|
|||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 4 }">
|
|||
|
<a-date-picker placeholder="请选择结束日期" format="YYYY-MM-DD" valueFormat="YYYY-MM-DD" v-model:value="queryParam.endTime" style="width: 100%" />
|
|||
|
</a-col>
|
|||
|
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 4 }">
|
|||
|
<a-button type="primary" @click="onSearch" >查询</a-button>
|
|||
|
</a-col>
|
|||
|
</a-row>
|
|||
|
<a-divider class="divider"/>
|
|||
|
<a-row>
|
|||
|
<a-col :span="24">
|
|||
|
<listPage ref="listRef" :queryParam="queryParam" flagPage @change-param="changeParam"/>
|
|||
|
</a-col>
|
|||
|
</a-row>
|
|||
|
</a-card>
|
|||
|
</a-layout-content>
|
|||
|
<!-- 页尾 -->
|
|||
|
<footerPage/>
|
|||
|
</a-layout>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
<script lang="ts" setup>
|
|||
|
import { ref, reactive, watch, onMounted } from 'vue';
|
|||
|
import headerPage from '/@/views/site/common/header.vue';
|
|||
|
import footerPage from '/@/views/site/common/footer.vue';
|
|||
|
import listPage from '/@/views/site/ktsb/ktsbMoreList.vue';
|
|||
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
|||
|
import { getSysConfig } from '/@/views/site/utils/index';
|
|||
|
import { dateFormat } from '/@/utils/common/compUtils';
|
|||
|
|
|||
|
const queryParam = ref<any>({ pj: '', pageSize: 10,pageNo:1 });
|
|||
|
|
|||
|
//进入就加载
|
|||
|
onMounted(() => {
|
|||
|
queryParam.value.xnxq = getSysConfig().flag1
|
|||
|
// const format = 'yyyy-MM-dd';
|
|||
|
// queryParam.value.endDate = dateFormat(new Date(), format)
|
|||
|
onSearch()
|
|||
|
});
|
|||
|
const listRef = ref();
|
|||
|
|
|||
|
function onSearch(){
|
|||
|
listRef.value.onSearch(queryParam.value);
|
|||
|
}
|
|||
|
function changeParam(pageNo){
|
|||
|
queryParam.value.pageNo = pageNo;
|
|||
|
onSearch();
|
|||
|
}
|
|||
|
|
|||
|
</script>
|
|||
|
<style lang="less" scoped>
|
|||
|
#siteMain {
|
|||
|
// font-size: ;
|
|||
|
// height: 100%;
|
|||
|
background: #f3f3f4;
|
|||
|
#maxSite {
|
|||
|
//最大宽度
|
|||
|
max-width: 1170px;
|
|||
|
//居中
|
|||
|
margin: 0 auto;
|
|||
|
.rowGutter{
|
|||
|
margin-top: 1rem;
|
|||
|
margin-bottom: 1rem;
|
|||
|
}
|
|||
|
|
|||
|
.ant-layout-header {
|
|||
|
color: #fff;
|
|||
|
background: #1ab394;
|
|||
|
}
|
|||
|
.ant-layout-footer {
|
|||
|
line-height: 1.5;
|
|||
|
background: #FFF;
|
|||
|
}
|
|||
|
.ant-layout-sider {
|
|||
|
color: #fff;
|
|||
|
line-height: 120px;
|
|||
|
background: #3ba0e9;
|
|||
|
}
|
|||
|
.ant-layout-content {
|
|||
|
min-height: 120px;
|
|||
|
color: #000;
|
|||
|
line-height: 120px;
|
|||
|
background: #f3f3f4;
|
|||
|
}
|
|||
|
.dictBox :deep(.ant-select) {
|
|||
|
width: 100%;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
/**暗黑模式特殊配色*/
|
|||
|
[data-theme='dark'] #siteMain #maxSite {
|
|||
|
.ant-layout-header, .ant-layout-footer {
|
|||
|
background: #6aa0c7;
|
|||
|
}
|
|||
|
.ant-layout-content {
|
|||
|
background: #107bcb;
|
|||
|
}
|
|||
|
.ant-layout-sider {
|
|||
|
background: #3499ec;
|
|||
|
}
|
|||
|
}
|
|||
|
</style>
|