调整插件位置
This commit is contained in:
39
src/components/AiEmpty.vue
Normal file
39
src/components/AiEmpty.vue
Normal file
@@ -0,0 +1,39 @@
|
||||
<template>
|
||||
<div class="emptyWrap">
|
||||
<img class="emptyImg" src="AiEmpty/static/Empty.png">
|
||||
<div class="emptyText">{{description}}</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name:"emptyData",
|
||||
props:{
|
||||
description:{
|
||||
default:'暂无相关信息',
|
||||
type:String
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.emptyWrap {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
.emptyImg{
|
||||
width: 400rpx;
|
||||
height: 240rpx;
|
||||
margin-top: 112px;
|
||||
}
|
||||
.emptyText{
|
||||
font-size:29rpx;
|
||||
font-family:PingFangSC-Regular,PingFang SC;
|
||||
font-weight:400;
|
||||
color:rgba(183,183,183,1);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user