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

46 lines
1.1 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-10 22:16:59 +08:00
<text :style="{ color: '#fed847' }">师傅领进门修行靠自身赶紧练起来吧</text
>
<text :style="{ fontSize: '12px' }">坚持练习就能你快速升级早日加入全国排位赛</text>
</Guide>
2025-05-10 16:57:36 +08:00
<view class="practise1" @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>
<view class="practise2" @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-07 23:34:15 +08:00
</view>
</template>
<style scoped>
.practise1 {
width: 100%;
margin: 20px 0;
}
.practise2 {
width: 100%;
}
</style>