123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view>
- <button @click="zhuce">注册ylht</button>
- <button @click="success">成功</button>
- <button @click="fail">失败</button>
- <button @click="huidiao">回调</button>
- </view>
- </template>
- <script>
- export default {
- name: "my-file",
- data() {
- return {
- };
- },
- watch: {
- },
- mounted() {
- },
- methods: {
- zhuce() {
- },
- success() {
- uni.navigateTo({
- url: '/pages/living/success'
- })
- },
- fail() {
- uni.navigateTo({
- url: '/pages/living/fail'
- })
- },
- huidiao() {
- }
- }
- }
- </script>
- <style>
- </style>
|