2025-05-07 23:34:15 +08:00
|
|
|
|
<script setup>
|
2025-07-02 17:21:44 +08:00
|
|
|
|
import Container from "@/components/Container.vue";
|
2025-05-07 23:34:15 +08:00
|
|
|
|
import Guide from "@/components/Guide.vue";
|
2025-05-08 22:05:53 +08:00
|
|
|
|
|
|
|
|
|
|
const toPractiseOne = () => {
|
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
|
url: "/pages/practise-one",
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const toPractiseTwo = () => {
|
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
|
url: "/pages/practise-two",
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
2025-05-07 23:34:15 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-07-02 17:21:44 +08:00
|
|
|
|
<Container title="个人练习">
|
|
|
|
|
|
<view :style="{ width: '100%' }">
|
|
|
|
|
|
<Guide>
|
|
|
|
|
|
<text :style="{ color: '#fed847' }"
|
|
|
|
|
|
>师傅领进门,修行靠自身,赶紧练起来吧。</text
|
|
|
|
|
|
>
|
|
|
|
|
|
<text :style="{ fontSize: '12px' }"
|
|
|
|
|
|
>坚持练习就能你快速升级,早日加入全国排位赛!</text
|
|
|
|
|
|
>
|
|
|
|
|
|
</Guide>
|
|
|
|
|
|
<image
|
|
|
|
|
|
src="../static/practise-bg.png"
|
|
|
|
|
|
class="practise-bg"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
:style="{ marginTop: 0 }"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<view class="practise-btn" @click="toPractiseOne">
|
|
|
|
|
|
<image
|
2025-07-12 16:07:07 +08:00
|
|
|
|
src="https://api.shelingxingqiu.com/attachment/2025-07-12/db9x668e2vdtqh0otq.png"
|
2025-07-02 17:21:44 +08:00
|
|
|
|
class="practise1"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<image
|
|
|
|
|
|
src="../static/practise-bg.png"
|
|
|
|
|
|
class="practise-bg"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<view class="practise-btn" @click="toPractiseTwo">
|
|
|
|
|
|
<image
|
2025-07-12 16:07:07 +08:00
|
|
|
|
src="https://api.shelingxingqiu.com/attachment/2025-07-12/db9x668eehkvyicc08.png"
|
2025-07-02 17:21:44 +08:00
|
|
|
|
class="practise2"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<image
|
|
|
|
|
|
src="../static/practise-bg.png"
|
|
|
|
|
|
class="practise-bg"
|
|
|
|
|
|
mode="widthFix"
|
|
|
|
|
|
/>
|
2025-05-10 16:57:36 +08:00
|
|
|
|
</view>
|
2025-07-02 17:21:44 +08:00
|
|
|
|
</Container>
|
2025-05-07 23:34:15 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2025-05-15 12:43:40 +08:00
|
|
|
|
.practise-btn {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
margin-top: -6px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.practise-btn > image {
|
2025-05-07 23:34:15 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
2025-05-15 12:43:40 +08:00
|
|
|
|
.practise-bg {
|
2025-05-07 23:34:15 +08:00
|
|
|
|
width: 100%;
|
2025-05-15 12:43:40 +08:00
|
|
|
|
margin-top: -6px;
|
2025-05-07 23:34:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|