123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- <template>
- <view class="box">
- <!-- 自定义导航 -->
- <view class="zdyNavBox">
- <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
- <view class="zdyNav">
- <view class="zdyNavLeft">
- <image src="../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback">
- </image>
- </view>
- <view class="zdyNavTitle">活动</view>
- <image src="../../static/img/icon_nav_add.png" mode="aspectFit" class="addImg" @click="goAdd"></image>
- </view>
- </view>
- <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
- <view style="height: 44px;"></view>
- <view class="tab">
- <view class="tabLine" :class="{tabActive:tabIndex==''}" @click="tabClick('')">全部</view>
- <view class="tabLine" :class="{tabActive:tabIndex=='未启用'}" @click="tabClick('未启用')">未启用</view>
- <view class="tabLine" :class="{tabActive:tabIndex=='未开始'}" @click="tabClick('未开始')">未开始</view>
- <view class="tabLine" :class="{tabActive:tabIndex=='进行中'}" @click="tabClick('进行中')">进行中</view>
- <view class="tabLine" :class="{tabActive:tabIndex=='已结束'}" @click="tabClick('已结束')">已结束</view>
- </view>
- <view class="conBox">
- <view class="itemHistory" v-for="(item,index) in itemData" :key="index" @click="goDetail(item.id)">
- <image :src="item.Img" mode="" class="itemImg"></image>
- <view class="timeBox">
- <image v-if="item.state=='进行中'" src="../../static/img/bg_huangse.png" mode="" class="state"></image>
- <image v-if="item.state=='未开始'" src="../../static/img/bg_hongse.png" mode="" class="state"></image>
- <image v-if="item.state=='未启用'" src="../../static/img/bg_weiqiyong.png" mode="" class="state"></image>
- <image v-if="item.state=='已结束'" src="../../static/img/bg_jieshu.png" mode="" class="state"></image>
-
- <view class="time" v-if="item.StartTime">{{item.StartTime.slice(0,10)}}-{{item.EndTime.slice(0,10)}}
- </view>
- </view>
- <view class="name">{{item.ActivityName}}</view>
- <view class="btnBox">
- <view class="btn" style="width: 120rpx;" @click="goEdit(item.ID)">编辑</view>
- <view class="btn" @click="">报名详情</view>
- <view class="btn" @click="">数据统计</view>
- <view class="btn" style="width: 120rpx;" @click="">分享</view>
- </view>
- </view>
- <!-- 上拉 加载更多 -->
- <view class="noMore" v-if="noMoreShow && (itemData.length!=0)">没有更多数据</view>
- <!-- 无数据空白页 -->
- <nodata v-if="itemData.length==0"></nodata>
- </view>
- </view>
- </template>
- <script scoped>
- import nodata from '../../components/nodata/nodata.vue'
- export default {
- components: {
- nodata,
- },
- data() {
- return {
- iStatusBarHeight: '',
- page: 1,
- itemData: [],
- noMoreShow: false,
- tabIndex: '',
- }
- },
- onLoad() {
- this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
- this.page = 1
- this.myOrderCoupon()
- },
- methods: {
- tabClick(state) {
- this.tabIndex = state;
- this.page = 1;
- this.myOrderCoupon()
- },
- goDetail(id) {
- // uni.navigateTo({
- // url: 'jkDetail?id=' + id
- // })
- },
- goEdit(id) {
- uni.navigateTo({
- url: 'eadit?id=' + id
- })
- },
- myOrderCoupon() {
- uni.showLoading({
- title: '加载中'
- })
- this.$http('openH5SetTheGuest/getAtivity', {
- page: this.page,
- limit: 10,
- state: this.tabIndex
- }, 'GET').then(res => {
- uni.hideLoading();
- // var list = res.data.Items
- var list = res.data.Items
- // 处理 undefined和null转为空白字符串
- // list.forEach((item, index) => {
- // for (const key in item) {
- // item[key] = this.$praseStrEmpty(item[key])
- // }
- // })
- if (this.page == 1) {
- this.itemData = list
- } else {
- this.itemData = this.itemData.concat(list)
- }
- if (list.length < 10) {
- this.noMoreShow = true
- } else {
- this.noMoreShow = false
- }
- })
- },
- },
- // 下拉刷新 上拉加载更多
- onPullDownRefresh() {
- this.page = 1
- this.myOrderCoupon()
- setTimeout(function() {
- uni.stopPullDownRefresh();
- }, 1000);
- },
- onReachBottom() {
- this.page++;
- this.myOrderCoupon()
- },
- }
- </script>
- <style scoped lang="less">
- .box {
- background: #F4F5F7;
- min-height: 100vh;
- }
- .zdyNavBox {
- width: 100vw;
- background: #FFFFFF;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999999;
- }
- .zdyNav {
- height: 44px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .backImg {
- width: 44rpx;
- height: 44rpx;
- margin-left: 10rpx;
- margin-right: 20rpx;
- }
- .homeImg {
- width: 44rpx;
- height: 44rpx;
- }
- .zdyNavLeft {
- display: flex;
- align-items: center;
- }
- .zdyNavTitle {
- height: 44px;
- background: #FFFFFF;
- text-align: center;
- font-size: 34rpx;
- line-height: 44px;
- }
- .addImg {
- width: 36rpx;
- height: 36rpx;
- margin-right: 20rpx;
- }
- .tab {
- background: #FFFFFF;
- display: flex;
- justify-content: space-between;
- line-height: 87rpx;
- position: fixed;
- width: calc(100vw - 100rpx);
- padding-left: 50rpx;
- padding-right: 50rpx;
- height: 87rpx;
- z-index: 11;
- border-top: 1rpx solid #EEEEEE;
- }
- .tabLine {
- font-size: 32rpx;
- color: #666666;
- text-align: center;
- }
- .tabActive {
- color: #3F90F7;
- font-weight: bold;
- border-bottom: 4rpx solid #3F90F7;
- }
- .conBox {
- padding-top: 107rpx;
- }
- .itemHistory {
- margin: 0rpx 24rpx 20rpx;
- background-color: #FFFFFF;
- border-radius: 10rpx;
- }
- .itemImg {
- height: 280rpx;
- width: 702rpx;
- border-radius: 10rpx 10rpx 0px 0px;
- }
- .timeBox {
- display: flex;
- margin-top: -61rpx;
- align-items: flex-end;
- position: relative;
- }
- .state {
- width: 102rpx;
- height: 53rpx;
- }
- .time {
- padding: 5rpx 10rpx;
- color: #FFFFFF;
- font-size: 24rpx;
- background: #000000;
- border-radius: 0 10rpx 0 0;
- }
- .name {
- padding: 24rpx 20rpx;
- color: #333333;
- font-size: 28rpx;
- background: #FFFFFF;
- border-radius: 0 0 10rpx 10rpx;
- border-bottom: 1rpx solid #eeeeee;
- }
- .btnBox {
- padding: 26rpx 20rpx;
- border-radius: 0 0 10rpx 10rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .btn {
- font-size: 28rpx;
- color: #333333;
- width: 160rpx;
- height: 60rpx;
- border-radius: 30rpx;
- border: 1rpx solid #DDDDDD;
- text-align: center;
- line-height: 60rpx;
- }
- .noMore {
- text-align: center;
- line-height: 50rpx;
- color: #999999;
- font-size: 28rpx;
- }
- </style>
|