2025-05-31 14:17:56 +08:00
|
|
|
|
<script setup>
|
|
|
|
|
|
import Container from "@/components/Container.vue";
|
|
|
|
|
|
import SButton from "@/components/SButton.vue";
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
<Container title="智能弓箭">
|
|
|
|
|
|
<view class="container">
|
2025-08-05 15:17:19 +08:00
|
|
|
|
<image
|
2025-08-09 11:58:11 +08:00
|
|
|
|
src="https://static.shelingxingqiu.com/attachment/2025-08-07/dbw5tq93d6n7xgtgvp.png"
|
2025-08-05 15:17:19 +08:00
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
2025-05-31 14:17:56 +08:00
|
|
|
|
<text>商品形象图及配图标题</text>
|
|
|
|
|
|
<text
|
|
|
|
|
|
>在射灵世界中,等级是衡量您射箭技能的重要指标,而点数则是您提升等级的关键。具体的要求如下
|
2025-08-20 16:04:17 +08:00
|
|
|
|
每射出一支箭并上靶:无论您射出的箭命中哪个环数,只要箭成功上靶,您将获得1点基础点数。这是您积累点数的基本方式,每一次射箭都是您向更高目标迈进的一步。
|
2025-05-31 14:17:56 +08:00
|
|
|
|
射出的箭命中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 {
|
2025-08-09 11:58:11 +08:00
|
|
|
|
width: 85%;
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
|
margin-top: 10px;
|
2025-05-31 14:17:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
.container > text {
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.container > text:nth-child(3) {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
color: #fff9;
|
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|