find.vue 332 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view>
  3. <button @click='add'>+</button>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. };
  11. },
  12. onLoad() {
  13. },
  14. methods: {
  15. add(){
  16. console.log(111111111)
  17. uni.navigateTo({
  18. url: '/pageA/find/createLifeService'
  19. })
  20. }
  21. }
  22. }
  23. </script>
  24. <style lang="scss">
  25. </style>