123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- <template>
- <view class="active">
- <!-- <view class="top">
-
- </view> -->
- <view class="add" @click="add">
- <view class="add-buttom">
- <image src="../../static/images/plus.png" mode=""></image>
- </view>
- <view class="add-tips">
- 创建活动
- </view>
- </view>
- <view class="top">
- </view>
- <view class="tab">
- <view v-for="(item,index) in tab_list" :key='index' :class="current_tab==item.id ? 'active-item' : 'item'"
- @click="changTab(item.id,item.name)">
- <view class="week">
- {{item.name}}
- </view>
- <text class="line" v-if="current_tab==item.id">
- </text>
- </view>
- </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">
- <u-icon name="eye" style="margin-right: 5px;" size="30"></u-icon>{{item.view_count? item.view_count :'0'}}
- </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 {
- current_tab: 0,
- tab_list: ['学术前沿', '自主活动'],
- list: [],
- page: 1,
- last: false,
- tab_name: ''
- }
- },
- async onShow() {
- if (this.is_weixin()) {
- this.navTitle()
- }
- this.list = []
- this.page = 1
- this.last = false
- await this.getTabList()
- },
- onReachBottom() {
- if (!this.last) {
- 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'
- },
- //选择本周还是下周
- changTab(id, name) {
- this.list = []
- this.current_tab = id
- this.tab_name = name
- this.page = 1
- this.getList()
- },
- 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
- this.getList()
- })
- },
- getList() {
- this.$u.get('/inform/information', {
- category_id: this.current_tab,
- 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: './details?id=' + id
- })
- },
- //创建活动
- add() {
- uni.navigateTo({
- url: './add?category_id=' + this.current_tab + '&tab_name=' + this.tab_name
- })
- }
- }
- }
- </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: 95px;
- right: 20px;
- text-align: center;
- z-index: 6;
- .add-buttom {
- width: 40px;
- height: 40px;
- display: inline-block;
- text-align: center;
- line-height: 40px;
- border-radius: 50%;
- overflow: hidden;
- image{
- width: 40px;
- height: 40px;
- }
- }
- .add-tips {
- font-size: 12px;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 14px;
- color: #292929;
- // margin-top: 5px;
- }
- }
- .active {
- position: relative;
- height: 100%;
- .top {
- height: 132px;
- background-image: url(../../static/images/active-bg1.png);
- background-size: 100%;
- background-repeat: no-repeat;
- }
- .tab {
- display: flex;
- align-items: center;
- width: 80%;
- margin: 0 auto;
- .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: #3B7653;
- 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: #3B7653;
- .week {
- padding-bottom: 8px;
- }
- }
- }
- .list {
- padding: 15px 15px;
- .list-item {
- background: #FFFFFF;
- opacity: 1;
- border-radius: 12px;
- padding: 15px 12px;
- position: relative;
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- .tips {
- position: absolute;
- width: 52px;
- height: 21px;
- text-align: center;
- line-height: 21px;
- background: #72D6A0;
- top: 0;
- right: 0;
- opacity: 1;
- border-radius: 0px 12px 0px 12px;
- font-size: 12px;
- font-family: PingFang SC;
- color: #fff;
- }
- image {
- flex: 0 0 86px;
- width: 86px;
- height: 60px;
- margin-right: 6px;
- }
- .right {
- flex: 1;
- margin-left: 3px;
- .title {
- width: 200px;
- 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: #282828;
- }
- }
- }
- }
- }
- </style>
|