212 lines
4.0 KiB
Vue
212 lines
4.0 KiB
Vue
<template>
|
|
<view class="content">
|
|
<view class="container">
|
|
<view class="my-header">
|
|
<view class="my-icons" @click="goback"> <uni-icons type="left" size="16"></uni-icons> </view>
|
|
<view class="my-text">本站活动</view>
|
|
<view class="my-icons"></view>
|
|
</view>
|
|
<view class="mub">
|
|
<view class="mub-box" v-for="(item,index) in activityList" :key="index"
|
|
@click="intoOtherPage(item.name)">
|
|
|
|
<view class="right-box">
|
|
立即前往
|
|
</view>
|
|
<view class="box-img">
|
|
<image src="../../static/imgs/xfyl.png" v-if="item.name == '消费有礼活动'"></image>
|
|
<image src="../../static/imgs/zkyx.png" v-if="item.name == '折扣营销活动'"></image>
|
|
<image src="../../static/imgs/mjyh.png" v-if="item.name == '满减营销活动'"></image>
|
|
<image src="../../static/imgs/xryl.png" v-if="item.name == '新人有礼活动'"></image>
|
|
<image src="../../static/imgs/yqyl.png" v-if="item.name == '推荐有礼活动'"></image>
|
|
<image src="../../static/imgs/chongzhi.png" v-if="item.name == '储值卡充值活动'"></image>
|
|
</view>
|
|
<view class="box-size">
|
|
<view class="box-s-title">{{item.name || "活动标题"}}</view>
|
|
<view class="box-s-size">{{item.des || "内容"}}</view>
|
|
</view>
|
|
<view class="box-bottom">
|
|
<view class="">活动时间</view>
|
|
<view>{{item.time}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 顶部区域 -->
|
|
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import request from '../../utils/request'
|
|
export default {
|
|
data() {
|
|
return {
|
|
title: '',
|
|
activityList: [],
|
|
}
|
|
},
|
|
components: {
|
|
|
|
},
|
|
onShow() {
|
|
this.getData();
|
|
},
|
|
methods: {
|
|
intoOtherPage(name) {
|
|
uni.navigateTo({
|
|
url: '/pagesHome/activeIn/index?name=' + name
|
|
})
|
|
},
|
|
getData() {
|
|
uni.showLoading({
|
|
title: '加载中'
|
|
});
|
|
request({
|
|
url: 'business/marketingActivity/activeExchange/applet',
|
|
method: 'get',
|
|
}).then(res => {
|
|
console.log(res);
|
|
if (res.code == 200) {
|
|
this.activityList = res.data
|
|
uni.hideLoading();
|
|
}
|
|
|
|
})
|
|
},
|
|
getactvity(url) {
|
|
if (url) {
|
|
console.log('跳转中');
|
|
} else {
|
|
uni.showToast({
|
|
title: "此活动暂无跳转地址",
|
|
icon: 'error'
|
|
})
|
|
}
|
|
|
|
},
|
|
getlist() {
|
|
|
|
},
|
|
goback() {
|
|
uni.navigateBack()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.content {
|
|
background: #f4f5f6;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
height: 100vh;
|
|
box-sizing: border-box;
|
|
padding-top: 88px;
|
|
z-index: 999999999;
|
|
}
|
|
|
|
.mub {
|
|
background: #f4f5f6;
|
|
box-sizing: border-box;
|
|
padding: 15px;
|
|
}
|
|
|
|
.mub-box {
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
margin-bottom: 10px;
|
|
position: relative;
|
|
}
|
|
|
|
.right-box {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 0px;
|
|
width: 70px;
|
|
height: 25px;
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 14px;
|
|
background-color: #f82614;
|
|
border-radius: 8px 0px 0px 8px;
|
|
}
|
|
|
|
.box-img {
|
|
width: 100%;
|
|
height: 150px;
|
|
background-color: cornflowerblue;
|
|
|
|
image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
}
|
|
|
|
.box-size {
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
}
|
|
|
|
.box-bottom {
|
|
width: 100%;
|
|
height: 40px;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-top: 1px solid #f4f5f6;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.box-s-title {
|
|
font-size: 17px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.box-s-size {
|
|
font-size: 14px;
|
|
color: #666666;
|
|
box-sizing: border-box;
|
|
padding: 5px;
|
|
background-color: #f4f5f6;
|
|
border-radius: 8px;
|
|
margin: 5px auto;
|
|
|
|
}
|
|
|
|
.my-header {
|
|
width: 100%;
|
|
height: 88px;
|
|
background: #ffffff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
color: #000;
|
|
box-sizing: border-box;
|
|
padding: 0px 15px;
|
|
padding-top: 40px;
|
|
|
|
.my-icons {
|
|
width: 20px;
|
|
|
|
}
|
|
|
|
position: fixed;
|
|
top: 0px;
|
|
}
|
|
</style>
|