123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- <template>
- <view class="active">
- <view class="top">
- </view>
- <view class="list" v-if="list.length>0">
- <view class="list-item" @click="detail(item.id)" v-for="(item,index) in list" :key='index'>
- <view class="tips">
- 热
- </view>
- <view class="image" :style="{backgroundImage:'url('+ (item.cover_resource ? item.cover_resource.url : '../../static/images/avator.png') +')'}">
-
- </view>
- <!-- <image :src="item.cover_resource ? item.cover_resource.url : '../../static/images/avator.png'" mode="">
- </image> -->
- <view class="right">
- <view class="title">
- {{item.title}}
- </view>
- <view class="text">
- 发布人:{{item.admin_name}}
- </view>
- <view class="time">
- {{item.published_at}}
- </view>
- </view>
- </view>
- </view>
- <view class="empty" v-else>
- <view class="enptyStatus">
- <image src="../../static/empty.png" mode=""></image>
- <view class="words">
- 暂无内容
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list: [],
- page: 1,
- last: false,
- }
- },
- async onShow() {
- if(this.is_weixin()){
- this.navTitle()
- }
- this.list = []
- this.page = 1
- this.last = false
- await this.getTabList()
- await this.getList()
- },
- onReachBottom() {
- if (!this.last) {
- this.page++
- }
- console.log(this.page)
- this.getList()
- },
- methods: {
- //判断是否是微信
- is_weixin() {
- let ua = navigator.userAgent.toLowerCase();
- return ua.indexOf('micromessenger') != -1;
- },
- navTitle() {
- let navTitle = document.getElementsByTagName('uni-page-head');
- navTitle[0].style.display = 'none'
- },
- getTabList() {
- this.$u.get('/inform/category-user-tree', {
- type: 1
- }).then(res => {
- console.log(res, 'pp')
- this.tab_list = res.data
- this.current_tab = res.data[0].id
- })
- },
- getList() {
- this.$u.get('/inform/information', {
- category_id: 1,
- page: this.page,
- per_page:15
- }).then(res => {
- console.log(res, 'ppp')
- let data = res.data.list
- console.log(res, 'course1')
- if (this.page > 1 && data.length == 0) {
- uni.showToast({
- title: '暂无更多',
- icon: 'none'
- })
- this.last = true
- } else {
- this.list = this.list.concat(data)
- }
- })
- },
- detail(id) {
- uni.navigateTo({
- url: '../activity/details?id=' + id
- })
- },
- //创建活动
- add() {
- uni.navigateTo({
- url: './add'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- position: relative;
- background-color: rgba(238, 238, 238, 1);
- }
- .enptyStatus{
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- padding: 30px 10px;
- image{
- width: 120px;
- height: 150px;
- margin-top: 80px;
- }
- .words{
- color: #ffae21;
- font-size: 18px;
- padding-top: 16px;
- }
- }
- .add {
- position: fixed;
- bottom: 75px;
- right: 15px;
- text-align: center;
- z-index: 6;
- .add-buttom {
- width: 36px;
- height: 36px;
- background: #6A6A6A;
- display: inline-block;
- text-align: center;
- line-height: 36px;
- opacity: 1;
- border-radius: 50%;
- }
- .add-tips {
- font-size: 10px;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 14px;
- color: #292929;
- opacity: 1;
- margin-top: 3px;
- }
- }
- .active {
- position: relative;
- height: 100%;
- .top {
- height: 132px;
- background-image: url(../../static/images/active-bg.png);
- background-size: 100%;
- background-repeat: no-repeat;
- }
- .tab {
- display: flex;
- align-items: center;
- width: 80%;
- margin: 0 auto;
- // background-color: #18B566;
- .item,
- .active-item {
- margin-top: 17px;
- view {
- display: block;
- }
- font-size: 18px;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 20px;
- color: rgba(113, 113, 113, .43);
- opacity: 0.43;
- opacity: 1;
- flex: 1;
- text-align: center;
- .week {
- padding-bottom: 12px;
- }
- .line {
- width: 48px;
- height: 4px;
- background: #D12727;
- opacity: 1;
- border-radius: 1px;
- display: block;
- margin: 0 auto;
- }
- }
- .active-item {
- font-size: 18px;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 20px;
- color: #D12727;
- .week {
- padding-bottom: 8px;
- }
- }
- }
- .list {
- padding: 20px 16px;
- .list-item {
- background: #FFFFFF;
- opacity: 1;
- border-radius: 12px;
- padding: 20px 10px;
- position: relative;
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- .tips {
- position: absolute;
- width: 52px;
- height: 21px;
- text-align: center;
- line-height: 21px;
- background: #FD6738;
- top: 0;
- right: 0;
- opacity: 1;
- border-radius: 0px 12px 0px 12px;
- font-size: 12px;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- }
- .image {
- flex: 0 0 60px;
- width: 60px;
- height: 60px;
- margin-right: 6px;
- background-position: center;
- background-repeat: no-repeat;
- background-size: cover;
- }
- .right {
- flex: 1;
- .title {
- width: 220px;
- font-size: 16px;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 20px;
- color: #282828;
- overflow: hidden;
- opacity: 1;
- white-space: nowrap;
- /*设置不换行*/
- overflow: hidden;
- /*设置隐藏*/
- text-overflow: ellipsis;
- /*设置隐藏部分为省略号*/
- }
- .text {
- font-size: 13px;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 20px;
- color: rgba(40, 40, 40, .47);
- margin-top: 3px;
- }
- .time {
- font-size: 10px;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 20px;
- color: rgba(40, 40, 40, .47);
- }
- }
- }
- }
- }
- </style>
|