parameters.vue 470 B

1234567891011121314151617181920212223242526272829
  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>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. methods: {
  12. general(){
  13. uni.navigateTo({
  14. url:'generalParameters',
  15. });
  16. },
  17. advanced(){
  18. uni.navigateTo({
  19. url: 'advancedParameters',
  20. });
  21. },
  22. }
  23. }
  24. </script>
  25. <style>
  26. </style>