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.
56 lines
1.0 KiB
56 lines
1.0 KiB
<template> |
|
<div class="wrap"> |
|
<div class="modal"> |
|
<el-steps :space="200" |
|
:active="4" |
|
finish-status="success"> |
|
<el-step title="大赛信息填写"></el-step> |
|
<el-step title="赛程与规则设置"></el-step> |
|
<el-step title="比赛内容设置"></el-step> |
|
<el-step title="发布"></el-step> |
|
</el-steps> |
|
<h1>大赛已发布!</h1> |
|
<div class="btns"> |
|
<el-button type="primary" |
|
@click="back">确定</el-button> |
|
</div> |
|
</div> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data () { |
|
return { |
|
|
|
}; |
|
}, |
|
mounted () { |
|
|
|
}, |
|
methods: { |
|
back () { |
|
this.$router.push(this.$store.state.referrer || '/match') |
|
} |
|
} |
|
}; |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.wrap { |
|
height: calc(100vh - 300px); |
|
background-color: #fefefe; |
|
} |
|
.modal { |
|
width: 500px; |
|
padding-top: 150px; |
|
margin: 0 auto; |
|
h1 { |
|
margin: 20px; |
|
text-align: center; |
|
} |
|
.btns { |
|
text-align: center; |
|
} |
|
} |
|
</style> |