Merge branch 'master' of https://gitee.com/mini-org-project/course_information_center_vue
This commit is contained in:
commit
296c7c9574
|
@ -159,6 +159,36 @@
|
|||
<template #title>
|
||||
<span style="font-size: 24px;font-weight: bold;">今日课程列表</span>
|
||||
</template>
|
||||
<a-tabs v-model:activeKey="activeKey" type="card">
|
||||
<a-tab-pane key="1" tab="正在上课">Content of Tab Pane 1</a-tab-pane>
|
||||
<a-tab-pane key="2" tab="下一节课">Content of Tab Pane 2</a-tab-pane>
|
||||
<a-tab-pane key="3" tab="日课表">
|
||||
<div>以下是 <span>2023-04-02</span>全天 的课表</div>
|
||||
<a-row>
|
||||
<a-col :span="6">
|
||||
<a-form-item label="" style="padding: 10px;">
|
||||
<JDictSelectTag placeholder="听课身份" v-model:value="rkbqueryParam.tksf" dictCode="kc_tksf"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="6">
|
||||
<a-form-item label="" style="padding: 10px;">
|
||||
<JDictSelectTag placeholder="听课人所在单位" v-model:value="rkbqueryParam.szdw" :dictCode="`tkrszdw_view,college,college`"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="6">
|
||||
<a-form-item label="" style="padding: 10px;">
|
||||
<JDictSelectTag placeholder="课程性质" v-model:value="rkbqueryParam.kcxz" dictCode="kc_kcxz"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="6">
|
||||
<a-form-item label="" style="padding: 10px;">
|
||||
<JDictSelectTag placeholder="开课单位" v-model:value="rkbqueryParam.kkdw" :dictCode="`kc_kkdw_view,kkdw,kkdw`" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :span="6">
|
||||
<a-button type="primary" @click="rkbLoadData">查询</a-button>>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row class="rowGutter" :gutter="[16,16]">
|
||||
<a-col :xs="{ span: 24 }" :sm="{ span: 8 }" :lg="{ span: 6 }" v-for="(item,index) in [{},{},{},{},{},{}]" :key="index" style="margin-bottom: 40px;">
|
||||
<div style="border: 2px #eef1f2 solid;">
|
||||
|
@ -203,6 +233,9 @@
|
|||
</div>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-tab-pane>
|
||||
</a-tabs>
|
||||
|
||||
</a-card>
|
||||
</a-layout-content>
|
||||
<a-layout-footer>
|
||||
|
@ -219,11 +252,14 @@
|
|||
|
||||
import { DownOutlined, PlusOutlined } from '@ant-design/icons-vue';
|
||||
import { BackTop, Statistic } from 'ant-design-vue';
|
||||
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
||||
|
||||
import { useUserStore } from '/@/store/modules/user';
|
||||
|
||||
//用户相关
|
||||
const userStore = useUserStore();
|
||||
const activeKey = ref('1');
|
||||
const rkbqueryParam = ref<any>({});
|
||||
|
||||
console.log(`🚀 -----------------------------------------------🚀`);
|
||||
console.log(`🚀 ~ file: index.vue:66 ~ userStore:`, userStore);
|
||||
|
@ -250,6 +286,13 @@
|
|||
i.value++;
|
||||
// list.list.push({ key: i.value });
|
||||
}
|
||||
|
||||
//-----------------------------yangjun-----------------------
|
||||
function rkbLoadData(){
|
||||
|
||||
}
|
||||
//-----------------------------yangjun-----------------------
|
||||
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
#siteMain {
|
||||
|
|
Loading…
Reference in New Issue