You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
883 B
35 lines
883 B
<template>
|
|
<CommonBox title="考试安排" class="teaching-center-test-arrangement-style">
|
|
<a-spin class="test-arrangement-box-style" :spinning="spinning">
|
|
|
|
</a-spin>
|
|
</CommonBox>
|
|
</template>
|
|
<script>
|
|
/*
|
|
* 考试安排
|
|
* */
|
|
import CommonBox from '../secondPages/commonBox.vue';
|
|
import {Icon, Spin, List, Empty} from 'ant-design-vue';
|
|
export default{
|
|
data(){
|
|
return {
|
|
spinning: false,
|
|
listScroll: this.StaticParams.scrollOption,
|
|
}
|
|
},
|
|
components:{
|
|
CommonBox,
|
|
ASpin: Spin,
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped lang="scss">
|
|
@import "../../assets/scss/style";
|
|
.teaching-center-test-arrangement-style {
|
|
width: 100%;
|
|
height: 520px !important;
|
|
position: relative;
|
|
margin-top: 50px;
|
|
}
|
|
</style> |