mirror of
https://gitee.com/dromara/go-view.git
synced 2025-09-09 13:26:12 +08:00
36 lines
675 B
Vue
36 lines
675 B
Vue
<template>
|
|
<div class="go-redirect-un-publish">
|
|
<div class="text-center">
|
|
<img src="~@/assets/images/exception/nodata.svg" alt="" />
|
|
</div>
|
|
<div class="text-center">
|
|
<h1>当前项目暂未发布</h1>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
@include go(redirect-un-publish) {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
padding: 100px 0;
|
|
@include background-image('background-image');
|
|
.text-center {
|
|
h1 {
|
|
color: #666;
|
|
padding: 20px 0;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 350px;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
</style>
|