Files
shoot-miniprograms/src/pages/device-intro.vue
2025-08-20 16:04:17 +08:00

47 lines
1.6 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup>
import Container from "@/components/Container.vue";
import SButton from "@/components/SButton.vue";
</script>
<template>
<Container title="智能弓箭">
<view class="container">
<image
src="https://static.shelingxingqiu.com/attachment/2025-08-07/dbw5tq93d6n7xgtgvp.png"
mode="widthFix"
/>
<text>商品形象图及配图标题</text>
<text
>在射灵世界中等级是衡量您射箭技能的重要指标而点数则是您提升等级的关键具体的要求如下
每射出一支箭并上靶无论您射出的箭命中哪个环数只要箭成功上靶您将获得1点基础点数这是您积累点数的基本方式每一次射箭都是您向更高目标迈进的一步
射出的箭命中7-9当您的箭命中7环8环或9环时除了获得1点基础点数外还将额外获得0.5点基础点数
射出的箭命中10环命中10环是射箭中的最高成就因此当您的箭命中10环时除了获得1点基础点数外还将额外获得1点基础点数.即每次命中10环将总共获得</text
>
<SButton>加官方企业微信订购有优惠</SButton>
</view>
</Container>
</template>
<style scoped>
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.container > image {
width: 85%;
border-radius: 10px;
margin-top: 10px;
}
.container > text {
color: #fff;
margin: 20px 0;
}
.container > text:nth-child(3) {
font-size: 14px;
color: #fff9;
margin-top: 0;
padding: 0 15px;
}
</style>