搜索页、行业报告 分包

This commit is contained in:
”chenxuelian“
2022-12-18 21:03:41 +08:00
parent 48393c72ed
commit 49a52425c5
9 changed files with 67 additions and 57 deletions

View File

@@ -0,0 +1,34 @@
<template>
<view style="margin-top: 20rpx; height: 1176rpx;background: #FFFFFF;">
<news></news>
<view v-if="newsShow" class="no-data">已经到底啦</view>
</view>
</template>
<script>
export default {
data() {
return {
newsShow: true,
}
},
onLoad() {
},
methods: {
// this.newsShow = this.list.length === 0 ? true : false
}
}
</script>
<style lang="scss">
.no-data {
text-align: center;
margin-top: 29rpx;
font-size: 20rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #BBBBBB;
line-height: 28rpx;
}
</style>