activityDetail.vue 271 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view>
  3. <u-image :src="src" mode="widthFix"></u-image>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. src: '',
  11. }
  12. },
  13. onLoad(options) {
  14. this.src = options.poster;
  15. },
  16. methods: {
  17. }
  18. }
  19. </script>
  20. <style>
  21. </style>