test2.vue 266 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. <text>授权结果页</text>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. result:{}
  11. }
  12. },
  13. onLoad(options) {
  14. this.result=JSON.parse(options.result)
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style>
  21. </style>