parameters.vue 623 B

1234567891011121314151617181920212223242526272829303132333435
  1. <template>
  2. <view class="">
  3. <uni-list>
  4. <uni-list-item title="通用参数" @click="general()"></uni-list-item>
  5. <uni-list-item title="进阶参数" @click="advanced()"></uni-list-item>
  6. <uni-list-item title="调试页参数" @click="debug()"></uni-list-item>
  7. </uni-list>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. methods: {
  13. general(){
  14. uni.navigateTo({
  15. url:'generalParameters',
  16. });
  17. },
  18. advanced(){
  19. uni.navigateTo({
  20. url: 'advancedParameters',
  21. });
  22. },
  23. debug(){
  24. uni.navigateTo({
  25. url: 'debugParameters',
  26. });
  27. },
  28. }
  29. }
  30. </script>
  31. <style>
  32. </style>