index.vue 626 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view>
  3. <button @click="zhuce">注册ylht</button>
  4. <button @click="success">成功</button>
  5. <button @click="fail">失败</button>
  6. <button @click="huidiao">回调</button>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name: "my-file",
  12. data() {
  13. return {
  14. zczm: [],
  15. zczmList: [],
  16. limit: 5,
  17. };
  18. },
  19. watch: {
  20. },
  21. mounted() {
  22. },
  23. methods: {
  24. zhuce() {
  25. },
  26. success() {
  27. uni.navigateTo({
  28. url: '/pages/living/success'
  29. })
  30. },
  31. fail() {
  32. uni.navigateTo({
  33. url: '/pages/living/fail'
  34. })
  35. },
  36. huidiao() {
  37. }
  38. }
  39. }
  40. </script>
  41. <style>
  42. </style>