| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- <template>
- <view :style="vuex_skin">
- <mescroll-body ref="mescrollRef" @init="mescrollInit" :down="downOption" :up="upOption" @down="downCallback"
- @up="upCallback">
- <view style="padding: 30rpx 30rpx 10rpx;">
- <u-swiper :list="swiperList" border-radius="12" name="url" height="300"></u-swiper>
- </view>
- <view class="">
- <view class="cu-list grid col-4 no-border" style="border-radius:20rpx ;">
- <view class="cu-item" @click.stop="$jump(item.path)" v-for="(item,index) in gridList" :key="index">
- <view class="grid-icon">
- <image style="width: 88rpx;height: 88rpx;" :src="item.icon" />
- </view>
- <text style="color: #222222;font-size: 26rpx;">{{item.name}}</text>
- <view class="cu-tag bg-red badge" v-if="item.count>0">{{item.count}}</view>
- </view>
- </view>
- </view>
- <view class="" style="height: 20rpx;background-color: #f8f8f8"></view>
- <view style="padding: 30rpx 30rpx 0">
- <u-search placeholder="搜索关键词或编号" height="70" @search="searchWorks" v-model="keyword"
- :show-action="false">
- </u-search>
- </view>
- <view style="padding: 30rpx 30rpx 0;">
- <view class="text-bold" style="font-size: 34rpx;">
- {{vuex_page_interface_show.indexTitle}}
- </view>
- <view @click="$jump('/pages/activity/activityDetail?id='+item.id)" class="card shadow"
- v-for="(item,index) in worksList" :key="item.id">
- <view v-if="index==0" class="center bg-img rank-tag"
- style="background-image: url(../../static/icon/ph1.png)">
- <text>1</text>
- </view>
- <view v-if="index==1" class="center bg-img rank-tag"
- style="background-image: url(../../static/icon/ph2.png)">
- <text>2</text>
- </view>
- <view v-if="index==2" class="center bg-img rank-tag"
- style="background-image: url(../../static/icon/ph3.png)">
- <text>3</text>
- </view>
- <view class="left">
- <image :src="item.imgUrl" mode=""></image>
- </view>
- <view class="right" style="width: 100%;">
- <view class="flex-direction flex">
- <text class="title">{{item.title}}</text>
- <rich-text class="desc text-cut-2" :nodes="decodeURIComponent(item.content)"></rich-text>
- </view>
- <view class="bottom" style="width: 100%;">
- <view class="flex margin-top-10">
- <image class="center" style="width: 30rpx;height: 30rpx;"
- src="../../static/icon/remen.png">
- </image>
- <text
- style="color: #353535;margin-left: 6rpx;font-size:28rpx;">{{item.heatValue}}</text>
- </view>
- <view class="cu-btn round sm line-base">
- 去助力
- </view>
- </view>
- </view>
- </view>
- </view>
- </mescroll-body>
- </view>
- </template>
- <script>
- import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
- export default {
- mixins: [MescrollMixin],
- data() {
- return {
- downOption: {
- auto: false
- },
- upOption: {
- auto:false,
- empty: {
- use: false
- }
- },
- //活动id
- activeId: '',
- //排行榜
- worksList: [],
- //轮播图
- swiperList:[],
- //菜单
- gridList: [{
- icon: '/static/grid/jieshao.png',
- name: "活动介绍",
- path: "/pages/introduce/introduce"
- }, {
- icon: '/static/grid/baoming.png',
- name: "我要代言",
- },
- {
- icon: '/static/grid/rank.png',
- name: "排行榜",
- path: "/pages/rank/rank"
- },
- {
- icon: '/static/grid/more.png',
- name: "更多活动",
- }
- ]
- };
- },
- onLoad(options) {
- this.handelRoute(options)
- },
- methods: {
- /**
- * 处理路由转发
- */
- async handelRoute(options){
- const { path } = options;
- await this.initParams();
- if (this.$isNotEmpty(path)) {
- this.$jump(decodeURIComponent(path))
- }
- },
- /**
- * 获取活动参数
- */
- async initParams(){
- const {ACTIVE_SETTING,PAGE_INTERFACE_SHOW} = (await this.$api.platform.getPlatformParams({
- keys: 'ACTIVE_SETTING,PAGE_INTERFACE_SHOW'
- })).data.data;
- this.$u.vuex('vuex_active_setting', JSON.parse(ACTIVE_SETTING));
- this.$u.vuex('vuex_page_interface_show', JSON.parse(PAGE_INTERFACE_SHOW));
- //获取排行榜
- this.activeId = JSON.parse(ACTIVE_SETTING).defaultActiveId
- this.mescroll.resetUpScroll();
- //获取轮播图
- this.swiperList=JSON.parse(PAGE_INTERFACE_SHOW).indexImageList
- },
- searchWorks(value) {
- this.$api.activity.searchWork(value).then(res => {
- this.worksList = res.data.data;
- })
- },
- downCallback() {
- setTimeout(() => {
- this.mescroll.resetUpScroll();
- }, 1000)
- },
- upCallback(mescroll) {
- try {
- let params = {
- current: mescroll.num,
- size: mescroll.size,
- activeId: this.activeId
- }
- this.$api.activity.sortListQuery(params).then(res => {
- console.log(res.data.data.records);
- let data = res.data.data.records
- let total = res.data.data.total
- mescroll.endBySize(data.length, total);
- if (mescroll.num == 1) this.worksList = []; //如果是第一页需手动制空列表
- this.worksList = this.worksList.concat(data); //追加新数据
- })
- } catch (e) {
- console.error(e);
- this.mescroll.endErr()
- }
- }
- }
- }
- </script>
- <style>
- page {
- background-color: #FFFFFF;
- }
- </style>
- <style lang="scss" scoped>
- .shadow {
- box-shadow: #f8f8f8 0px 0px 10rpx 10rpx
- }
- .rank-tag {
- color: #FFFFFF;
- width: 40rpx;
- height: 46rpx;
- position: absolute;
- left: 10rpx;
- top: 0rpx;
- z-index: 999;
- }
- .card {
- position: relative;
- margin-top: 30rpx;
- border-radius: 10rpx;
- padding: 15rpx;
- display: flex;
- .left {
- display: flex;
- justify-content: center;
- align-items: center;
- image {
- width: 210rpx;
- height: 210rpx;
- border-radius: 10rpx;
- }
- }
- .right {
- margin-left: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .title {
- font-weight: 800;
- color: #353535;
- font-size: 32rpx;
- }
- .desc {
- color: #888888;
- line-height: 40rpx;
- padding-top: 20rpx;
- font-size: 26rpx;
- }
- .bottom {
- display: flex;
- justify-content: space-between;
- width: 100%;
- }
- }
- }
- </style>
|