mine.vue 644 B

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