1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div class="page-error">
- <div>
- <img :src="require('@/assets/images/default/img_noresults@2x.png')" alt="" />
- <p>作品已被删除啦</p>
- </div>
- </div>
- </template>
- <script setup>
- </script>
- <style lang="scss" scoped>
- .page-error{
- width: 100%;
- height: 100%;
- background: #fff;
- position: relative;
- z-index: 9999;
- > div {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- color: #909090;
- text-align: center;
- font-size: 18px;
- >img{
- width: 120px;
- }
- > p {
- margin-top: 20px;
- }
- }
- }
- </style>
|