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

44 lines
1012 B
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>
师傅领进门修行靠自身赶紧练起来吧坚持练习就能你快速升级早日加入全国排位赛</Guide
>
<button class="practise1" @click="toPractiseOne">
2025-05-07 23:34:15 +08:00
<image src="../static/practise1.png" class="practise1" mode="widthFix" />
</button>
2025-05-08 22:05:53 +08:00
<button class="practise2" @click="toPractiseTwo">
2025-05-07 23:34:15 +08:00
<image src="../static/practise2.png" class="practise2" mode="widthFix" />
</button>
</view>
</template>
<style scoped>
.practise1 {
width: 100%;
margin: 20px 0;
}
.practise2 {
width: 100%;
}
</style>