mine.vue 484 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <view>
  3. <button type="primary" @click="goWebview('product/manual')">产品手册</button>
  4. <button type="primary" @click="goWebview('help')">帮助与反馈</button>
  5. <button type="primary" @click="goWebview('about')">关于</button>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. }
  13. },
  14. methods: {
  15. goWebview(path){
  16. uni.navigateTo({
  17. url:`../webview/webview?path=${path}`
  18. })
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. </style>