Files
jianbing/bundle/pages/points/points_shop.vue
2025-08-11 14:06:42 +08:00

52 lines
1.2 KiB
Vue

<template>
<view class="points-shop u-relative">
<view>
<u-swiper height="500" :list="list" border-radius="0"></u-swiper>
</view>
<view class="u-m-24">
<view class="bg-white br24 set-menu">
<view class="nr">煎饼果子套餐</view>
<view class="primary u-m-t-8">100.00积分+39.90</view>
<view class="text-999 row-between u-m-t-8">
<view>销量:973</view>
<view>库存:973</view>
</view>
</view>
</view>
<view class="bg-white fixed left-0 right-0 bottom-0 u-m-b-16 excharge">
<u-button @click="mpLogin" hover-class="none" :customStyle="{height: '80rpx', backgroundColor: themeColor, color: '#fff', border: 'none', borderRadius: '116rpx'}" :hair-line="false">立即兑换</u-button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
list: [
{
image: "https://jianbing-media.stnav.com/frontend/img/banner.png",
title: "昨夜星辰昨夜风,画楼西畔桂堂东",
},
],
}
},
methods: {
}
}
</script>
<style lang="scss">
.points-shop {
.set-menu {
height: 177rpx;
padding: 20rpx 24rpx;
}
.excharge {
padding: 16rpx 48rpx;
}
}
</style>