123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <template>
- <view class="flex-common-css">
- <Nav class="nav-class" :bgckgroundBox="!isScroll?'transparent':'#fff'" :titleColor="isScroll?'#000':'#fff'">
- </Nav>
- <scroll-view :scroll-y="true" class="list-scroll" @scroll="scroll" @scrolltolower="scrolltolower">
- <view class="head-bg-img">
- <image class="bg-img" src="@/static/img/circle/1.png" mode=""></image>
- <view class="head-title">
- <view class="head-title-l">
- <image class="head-title-l-img sys-radius-12" src="@/static/img/circle/1.png" mode=""></image>
- <view class="head-title-l-name">
- <view class="head-title-l-name-one">
- <image class="icon" src="@/static/img/circle/1.png" mode=""></image>
- <view class="sys-size-36 sys-weight-600 sys-color-white">
- 圈子标题名称
- </view>
- </view>
- <view class="sys-size-28 sys-color-white">
- 815.4w人在这里
- </view>
- </view>
- </view>
- <view
- class="head-title-r sys-height-56 sys-color-black sys-size-28 sys-background-gray-f sys-radius-12">
- 加入
- </view>
- </view>
- <view class="placeholder-box">
- <view class="placeholder"></view>
- </view>
- </view>
- <view class="topic-box">
- <view class="topic-title sys-color-black sys-weight-600 sys-size-28">
- 热聊话题
- </view>
- <scroll-view scroll-x="true" class="topic-list">
- <view class="list sys-background-gray-6f sys-radius-20" v-for="(item,index) in listData"
- :key="index">
- <view class="list-left">
- <image class="list-img sys-radius-12" :src="item.img" mode=""></image>
- <view class="list-text">
- <view class="sys-size-32 sys-weight-600 sys-color-black">
- {{item.name}}
- </view>
- <view class="sys-color-gray-9 sys-size-24">
- {{item.num}}w人在看
- </view>
- </view>
- </view>
- <view class="goto-img sys-background-gray-E0 sys-radius-round">
- <uni-icons type="right" size="12" color="#666" v></uni-icons>
- </view>
- </view>
- </scroll-view>
- <view class="list-type">
- <view class="list-type-l">
- <view class="type sys-size-28 sys-weight-600" @click="selectType(1)"
- :class="typeNum == 1?'sys-color-black type-border':'sys-color-gray-9'">
- 最新
- </view>
- <view class="type sys-size-28 sys-weight-600" @click="selectType(2)"
- :class="typeNum == 2?'sys-color-black type-border':'sys-color-gray-9'">
- 最热
- </view>
- </view>
- <view class="list-type-r sys-size-24 sys-color-gray-9">
- 1573条动态
- </view>
- </view>
- </view>
- <my-praise class="my-praise" :tagNum="1"></my-praise>
- </scroll-view>
- </view>
- </template>
- <script>
- import MyPraise from "@/pages/my/model/my-praise";
- export default {
- components: {
- MyPraise,
- },
- data() {
- return {
- isScroll: false,
- listData: [{
- 'img': '/static/img/temporary/1.png',
- 'name': '今天最想吃什么',
- 'num': '10.6'
- }, {
- 'img': '/static/img/temporary/1.png',
- 'name': '今天最想吃什么',
- 'num': '10.6'
- }, {
- 'img': '/static/img/temporary/1.png',
- 'name': '今天最想吃什么',
- 'num': '10.6'
- }, {
- 'img': '/static/img/temporary/1.png',
- 'name': '今天最想吃什么',
- 'num': '10.6'
- }],
- typeNum: 1,
- };
- },
- mounted() {},
- methods: {
- scroll(e) {
- if (e.detail.scrollTop > 50) {
- this.isScroll = true
- } else {
- this.isScroll = false
- }
- },
- scrolltolower() {
- console.log('触底');
- },
- selectType(num) {
- this.typeNum = num
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .nav-class {
- position: absolute;
- left: 0;
- top: 0;
- }
- .list-scroll {
- width: 100%;
- flex: 1;
- overflow: auto;
- }
- .head-bg-img {
- width: 100%;
- height: 380rpx;
- position: relative;
- .bg-img {
- width: 100%;
- height: 100%;
- }
- .head-title {
- width: 100%;
- height: auto;
- position: absolute;
- left: 0;
- bottom: 40rpx;
- display: flex;
- justify-content: space-between;
- box-sizing: border-box;
- padding: 0 26rpx 0 32rpx;
- .head-title-l {
- display: flex;
- align-items: center;
- .head-title-l-img {
- width: 120rpx;
- height: 120rpx;
- margin: 0 24rpx 0 0;
- }
- .head-title-l-name {
- display: flex;
- flex-direction: column;
- .head-title-l-name-one {
- display: flex;
- align-items: center;
- margin: 0 0 22rpx 0;
- .icon {
- width: 40rpx;
- height: 40rpx;
- margin: 0 8rpx 0 0;
- }
- }
- .head-title-l-name-two {}
- }
- }
- .head-title-r {
- padding: 0 32rpx;
- box-sizing: border-box;
- }
- }
- .placeholder-box {
- width: 100%;
- height: 20rpx;
- // background: #333;
- position: absolute;
- bottom: 0;
- .placeholder {
- width: 100%;
- height: 100%;
- border-radius: 32rpx 32rpx 0 0;
- background: #fff;
- }
- }
- }
- .topic-box {
- width: 100%;
- height: auto;
- display: flex;
- flex-direction: column;
- .topic-title {
- margin: 0 0 24rpx 32rpx;
- }
- .topic-list {
- width: 100%;
- padding: 0 12rpx;
- display: flex;
- align-items: center;
- white-space: nowrap;
- box-sizing: border-box;
- margin: 0 0 40rpx 0;
- .list {
- display: inline-block;
- width: 476rpx;
- height: 138rpx;
- // display: flex;
- margin: 0 12rpx;
- padding: 18rpx;
- box-sizing: border-box;
- align-items: center;
- justify-content: space-between;
- position: relative;
- flex: 1;
- .list-left {
- display: flex;
- align-items: center;
- .list-img {
- width: 104rpx;
- height: 104rpx;
- margin: 0 20rpx 0 0;
- }
- .list-text {}
- }
- .goto-img {
- width: 32rpx;
- height: 32rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- position: absolute;
- right: 32rpx;
- top: 40%;
- }
- }
- }
- .list-type {
- display: flex;
- // align-items: center;
- justify-content: space-between;
- padding: 0 32rpx;
- border-bottom: 1rpx solid #F2F2F2;
- .list-type-l {
- display: flex;
- align-items: center;
- .type {
- padding: 0 0 26rpx 0;
- margin: 0 60rpx 0 0;
- }
- .type-border {
- border-bottom: 4rpx solid #000000;
- }
- }
- .list-type-r {}
- }
- }
- </style>
|