mallPage.vue 348 B

1234567891011121314151617181920
  1. <template>
  2. <view class="ezy-order-page">
  3. <view class="icon-title-navBar-box">
  4. <view @click="goBack" class="nav-bar-icon"></view>
  5. <text class="nav-bar-title">商城</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script setup>
  10. function goBack() {
  11. uni.redirectTo({
  12. url: '/pages/my/index'
  13. })
  14. }
  15. </script>
  16. <style>
  17. </style>