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