oil-station/gasStation-uni/pagesHome/Activity/index.vue
2023-12-05 11:16:58 +08:00

179 lines
3.5 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="getactvity(item.path)"> -->
<view class="mub-box" v-for="(item,index) in activityList" :key="index"
@click="intoOtherPage(item.name)">
<view class="box-img">
<!-- <image src="../../static/imgs/hd.png" mode=""></image> -->
<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>
</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() {
request({
url: 'business/marketingActivity/activeExchange/applet',
method: 'get',
}).then(res => {
console.log(res);
this.activityList = res.data
})
},
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;
}
.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;
}
.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;
}
.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>