index.vue 384 B

1234567891011121314151617
  1. <script setup lang="ts">
  2. const titleName = ref<string>('喂养计划')
  3. function handleJumpPlan() {
  4. uni.navigateTo({ url: '/pages/feed-calculator/index' })
  5. }
  6. </script>
  7. <template>
  8. <TitleBar :title-name="titleName" />
  9. <button class="h-16 flex items-center justify-center bg-[red]" @tap="handleJumpPlan">
  10. 跳转喂养计算器
  11. </button>
  12. </template>
  13. <style scoped>
  14. </style>