首页组委会学生增加重新加载 组委会报告增加重新加载

main
JayChou 3 months ago
parent e23be1f3da
commit 406b364ec6
  1. 15
      jeecgboot-vue3-master/src/api/common/api.ts
  2. 24
      jeecgboot-vue3-master/src/views/comprehensiveEvaluation/organizingCommittee.vue
  3. 17
      jeecgboot-vue3-master/src/views/depart/workbench/components/organizingCommittee/organizingCommittee.vue
  4. 17
      jeecgboot-vue3-master/src/views/depart/workbench/components/student/student.vue

@ -170,23 +170,26 @@ export const uploadMyFile = (url, data) => {
return defHttp.uploadMyFile(url, data);
};
// 组委会首页
export const getOrganizingCommittee = () => {
export const getOrganizingCommittee = (params={recreateFlag:false}) => {
return defHttp.get({
url:'/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/zwhsybsjs'
url:'/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/zwhsybsjs',
params
})
}
// 学生首页
export const getStudent = () => {
export const getStudent = (params={recreateFlag:false}) => {
return defHttp.get({
url:'/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/xssybsjs'
url:'/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/xssybsjs',
params
})
}
// 组委会报告
// /annualcompetitionprojectregistration/annualCompetitionProjectRegistration/zwhfxbg
export const getOrganizingCommitteeReport = () => {
export const getOrganizingCommitteeReport = (params={recreateFlag:false}) => {
return defHttp.get({
url:'/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/zwhfxbg'
url:'/annualcompetitionprojectregistration/annualCompetitionProjectRegistration/zwhfxbg',
params
})
}
// /user/login/homepage/report4School

@ -1,6 +1,7 @@
<template>
<div class="container" v-if="loading">
<div class="title">河南机电学院比赛 {{data.annualCompName}} 组委会报告</div>
<div class="rebuild" ><div @click="Rebuild">重新生成报告</div></div>
<p class="description"
>我是比赛综述:全面落实立德树人根本任务依据CDI0工程教育理念培养德劳全面发展掌握软件工程专业所需的数学与自然科学基础知识专业基础理论知识;在企业级软件开发和工业智能软件开发方向能承担软件分析设计开发项目管理等任务具备解决复杂工程问题的能力;具有终身学习和创新创业意识国际交流能力团队合作精神等良好案养能适应产业与社会变革的国际化应用型人才<br />本专业毕业生经过五年左右的实际工作能够达到以下目标:</p
>
@ -78,6 +79,15 @@
}
getOrganizingCommitteeReportEvent()
const Rebuild = async() => {
loading.value = false
const res = await getOrganizingCommitteeReport({recreateFlag:true
})
console.log(res);
data.value = res
loading.value = true
}
const formatTitle = (index: number) => {
const arr: any = ['当前届数', '参赛人数', '参赛队伍数', '比赛项目数'];
return arr[index];
@ -147,6 +157,13 @@
</script>
<style lang="less" scoped>
.loading{
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
width: 1200px;
margin: 0 auto;
@ -240,4 +257,11 @@
font-size: 14px;
padding: 0 20px;
}
.rebuild{
display: flex;
justify-content: center;
div{
cursor: pointer;
}
}
</style>

@ -1,11 +1,12 @@
<template>
<div class="container-box">
<div class="container-box" v-show="loading">
<a-row :gutter="[24, 32]" style="margin-top: 30px">
<a-col :lg="12" :xxl="6">
<div class="item">
<div class="card1">
<div class="title">
<div class="left">比赛届数</div>
<div style="color: #fff;cursor: pointer;" @click="reset">重新生成报告</div>
<div class="right"><SvgIcon size="20" name="shizhong" /></div>
</div>
<div class="name">{{ data.annualCompName }}</div>
@ -103,7 +104,10 @@
></a-col>
</a-row>
</div>
<div class="loading" v-if="!loading">
<a-spin />
</div>
</template>
<script lang="ts" setup>
@ -143,9 +147,11 @@
})
const loading = ref(false)
const getOrganizingCommitteeEvent = async () => {
const res = await getOrganizingCommittee()
data.value = res
loading.value = true
console.log(res);
}
@ -153,6 +159,13 @@
const getAll = () => {
router.push('/annualcompetitionprojectregistration/administration/audited/AnnualCompetitionProjectRegistrationList')
}
const reset = async() => {
loading.value = false
const res = await getOrganizingCommittee({recreateFlag:true})
data.value = res
console.log(res);
loading.value = true
}
// const initContent = () => {
// const myChart = echarts.init(document.getElementById('chart-content'));
// const option = {

@ -1,5 +1,5 @@
<template>
<div class="container-box">
<div class="container-box" v-show="loading">
<a-row :gutter="[24, 24]" style="margin-top: 30px">
<a-col :xxl="12" :xl="12" :lg="24">
<a-row :gutter="[24, 24]" style="margin-top: 0">
@ -7,6 +7,7 @@
<div class="card1">
<div class="title">
<div class="left">参加比赛项目数量</div>
<div style="color: rgba(0, 0, 0, 0.45);cursor: pointer;" @click="reset">重新生成报告</div>
<div class="right"><SvgIcon size="20" name="content" /></div>
</div>
<div class="name">{{ data.cjbsxmsl }}</div>
@ -89,6 +90,10 @@
</a-col>
</a-row>
</div>
<div class="loading" v-if="!loading">
<a-spin />
</div>
</template>
<script lang="ts" setup>
@ -121,9 +126,19 @@ const router = useRouter()
const res = await getStudent();
data.value = res;
console.log(res);
loading.value = true
initHuojiangChart();
};
const loading = ref(false)
const reset = async() => {
loading.value = false
const res = await getStudent({recreateFlag:true})
data.value = res
console.log(res);
loading.value = true
}
getStudentEvent();
const throttle = (fn: any) => {
let timer: any;

Loading…
Cancel
Save