task.vue 676 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <view class="page">
  3. <image class="headerImg" src="../../static/image/index/task-img/taskheader.png" mode=""></image>
  4. <view class="content dis a-c j-c ">
  5. <image class="errorIcon" src="../../static/image/index/task-img/taskicon.png" mode=""></image>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. }
  14. },
  15. onShow() {
  16. },
  17. onLoad() {
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .headerImg {
  25. height: 314rpx;
  26. }
  27. .content {
  28. width: 100%;
  29. height: calc(100vh - 201px);
  30. background: #FFFFFF;
  31. position: relative;
  32. bottom: 0;
  33. .errorIcon {
  34. width: 200px;
  35. height: 200px;
  36. }
  37. }
  38. </style>