index.vue 499 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="container">
  3. <navBar title="售后" :back="false" color="white" background="green" />
  4. <button @click="goDt">跳地图</button>
  5. </view>
  6. </template>
  7. <script>
  8. // import navBar from '@/components/navBar/index.vue'
  9. export default {
  10. // components: {
  11. // navBar
  12. // },
  13. data() {
  14. return {
  15. }
  16. },
  17. methods: {
  18. goDt() {
  19. uni.navigateTo({
  20. url: '/pages/map/index'
  21. })
  22. }
  23. }
  24. }
  25. </script>
  26. <style lang="scss" scoped>
  27. @import "./index.scss";
  28. </style>