| 1234567891011121314151617 |
- <script setup lang="ts">
- const titleName = ref<string>('喂养计划')
- function handleJumpPlan() {
- uni.navigateTo({ url: '/pages/feed-calculator/index' })
- }
- </script>
- <template>
- <TitleBar :title-name="titleName" />
- <button class="h-16 flex items-center justify-center bg-[red]" @tap="handleJumpPlan">
- 跳转喂养计算器
- </button>
- </template>
- <style scoped>
- </style>
|