index.vue 448 B

1234567891011121314151617181920212223242526
  1. <script setup lang="ts">
  2. import router from '@/router'
  3. definePage({
  4. name: 'refueling-tabbar',
  5. islogin: false,
  6. style: {
  7. navigationBarTitleText: '加油',
  8. },
  9. })
  10. function refuelingPay() {
  11. console.log('触发跳转')
  12. router.push({ name: 'refueling-webview' })
  13. }
  14. </script>
  15. <template>
  16. <view class="">
  17. <wd-button @click="refuelingPay">
  18. 加油充值
  19. </wd-button>
  20. </view>
  21. </template>
  22. <style lang="scss" scoped></style>