Files
LSM_OIL_SITE/components/Empty.vue

33 lines
549 B
Vue
Raw Normal View History

2020-08-18 15:09:31 +08:00
<template>
2020-09-01 10:17:18 +08:00
<!-- -->
<view class="img-box padding-lg margin-lg text-center">
<view class="bg-img margin radius flex align-center" :style="'background-image: url('+mainURL+'kong.png)'">
</view>
<text>这里没有相关记录哦~</text>
</view>
2020-08-18 15:09:31 +08:00
</template>
<script>
2020-09-01 10:17:18 +08:00
export default {
name: 'Empty',
data() {
return {
mainURL: this.global.mainURL,
}
},
}
2020-08-18 15:09:31 +08:00
</script>
<style scoped>
2020-09-01 10:17:18 +08:00
/* 空 */
.img-box {
color: rgb(148, 147, 147);
font-size: 14px;
}
.bg-img{
min-height: 450rpx;
min-width: 200upx;
}
2020-08-18 15:09:31 +08:00
</style>