| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <template>
- <view class="page">
- <image class="headerImg" src="../../static/image/index/task-img/taskheader.png" mode=""></image>
- <view class="content dis a-c j-c ">
- <image class="errorIcon" src="../../static/image/index/task-img/taskicon.png" mode=""></image>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- },
- onShow() {
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .headerImg {
- height: 314rpx;
- }
- .content {
- width: 100%;
- height: calc(100vh - 201px);
- background: #FFFFFF;
- position: relative;
- bottom: 0;
- .errorIcon {
- width: 200px;
- height: 200px;
- }
- }
- </style>
|