Files
shoot-miniprograms/src/pages/practise.vue

76 lines
1.6 KiB
Vue
Raw Normal View History

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
src="../static/practise1.png"
class="practise1"
mode="widthFix"
/>
</view>
<image
src="../static/practise-bg.png"
class="practise-bg"
mode="widthFix"
/>
<view class="practise-btn" @click="toPractiseTwo">
<image
src="../static/practise2.png"
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>