newReport.vue 592 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="content">
  3. <view class="header">
  4. <image src="../../static/img/tjbgc.png" mode="widthFix" class="bgc"></image>
  5. </view>
  6. </view>
  7. </template>
  8. <script>
  9. import maoScroll from '@/components/mao-scroll/mao-scroll.vue';
  10. export default {
  11. components: {
  12. maoScroll
  13. },
  14. data() {
  15. return {
  16. background: {
  17. backgroundColor: '#2E303A',
  18. backgroundColor: 'red',
  19. },
  20. }
  21. },
  22. onLoad: function(option) {
  23. },
  24. destroyed() {
  25. },
  26. onUnload() {
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style scoped lang="scss">
  33. .bgc {
  34. width: 100vw;
  35. }
  36. </style>