You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

115 lines
2.1 KiB

<template>
<view class="page-container">
<view class="header">
<view @click="goBack" class="back-btn">
<image
class="back-icon"
src="https://des.dayunyuanjian.cn/epicSoul/taozi/back.png"
mode="aspectFill"
></image>
</view>
</view>
<image
class="tag-image"
:src="showImg('/uploads/20250802/4855b66aeecba79f1f404a015c727955.png')"
mode="aspectFill"
></image>
<image
style="
width: 361rpx;
position: absolute;
z-index: 2;
top: 355rpx;
left: 190rpx;
"
:src="showImg('/uploads/20250802/88de82efaf2c8f886b831a0766236ffa.png')"
mode="widthFix"
></image>
<image
@click="toBuy"
style="
position: absolute;
bottom: 217rpx;
width: 456rpx;
left: 146rpx;
z-index: 9;
"
:src="showImg('/uploads/20250802/bc8c6d0f121669388d93ccf5494c7f47.png')"
mode="widthFix"
></image>
<!-- 侧边导航组件 -->
<SideNav :currentIndex="7" />
</view>
</template>
<script>
import SideNav from "../components/SideNav.vue";
export default {
components: {
SideNav,
},
data() {
return {};
},
methods: {
toBuy() {
uni.navigateTo({
url: "./secBuy?type=1",
});
},
goBack() {
uni.navigateBack();
},
},
};
</script>
<style lang="scss" scoped>
.header {
display: flex;
align-items: center;
padding: 50rpx 30rpx 30rpx;
position: relative;
}
.back-btn {
background-color: rgba(255, 255, 255, 0.3);
border-radius: 50%;
width: 80rpx;
height: 80rpx;
display: flex;
align-items: center;
justify-content: center;
}
.back-icon {
width: 50rpx;
height: 50rpx;
}
.title {
position: absolute;
left: 50%;
transform: translateX(-50%);
font-size: 48rpx;
font-weight: bold;
color: white;
}
.tag-image {
width: 100%;
height: 100%;
position: absolute;
z-index: -1;
top: 0;
}
.description {
text-align: center;
}
.desc-text {
font-size: 36rpx;
color: white;
line-height: 1.6;
}
</style>