activeRegister.vue 272 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view>
  3. <image src=""></image>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. traceId:""
  11. }
  12. },
  13. onLoad(option) {
  14. this.traceId=option.traceId
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style scoped lang="scss">
  21. </style>