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

69 lines
1.5 KiB
Vue
Raw Normal View History

2025-05-07 23:34:15 +08:00
<script setup>
import AppBackground from "@/components/AppBackground.vue";
import Header from "@/components/Header.vue";
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>
<view>
<AppBackground />
<Header title="个人练习" />
2025-05-08 22:05:53 +08:00
<Guide>
2025-05-15 12:43:40 +08:00
<text :style="{ color: '#fed847' }"
>师傅领进门修行靠自身赶紧练起来吧</text
>
<text :style="{ fontSize: '12px' }"
>坚持练习就能你快速升级早日加入全国排位赛</text
2025-05-10 22:16:59 +08:00
>
</Guide>
2025-05-15 12:43:40 +08:00
<image
src="../static/practise-bg.png"
class="practise-bg"
mode="widthFix"
:style="{ marginTop: 0 }"
/>
<view class="practise-btn" @click="toPractiseOne">
2025-05-07 23:34:15 +08:00
<image src="../static/practise1.png" class="practise1" mode="widthFix" />
2025-05-10 16:57:36 +08:00
</view>
2025-05-15 12:43:40 +08:00
<image
src="../static/practise-bg.png"
class="practise-bg"
mode="widthFix"
/>
<view class="practise-btn" @click="toPractiseTwo">
2025-05-07 23:34:15 +08:00
<image src="../static/practise2.png" class="practise2" mode="widthFix" />
2025-05-10 16:57:36 +08:00
</view>
2025-05-15 12:43:40 +08:00
<image
src="../static/practise-bg.png"
class="practise-bg"
mode="widthFix"
/>
2025-05-07 23:34:15 +08:00
</view>
</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>