43 lines
715 B
Vue
43 lines
715 B
Vue
<template>
|
|
<view class="page">
|
|
<custom-navbar
|
|
ref="customNavbar"
|
|
:style="{ backgroundColor: '#f5f0e7' }"
|
|
title="项目进展"
|
|
/>
|
|
<tile-grid />
|
|
<view :style="{ backgroundColor: CommonEnum.BASE_COLOR }" class="header">
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import CommonEnum from "../../enum/common";
|
|
|
|
export default {
|
|
components: {},
|
|
data() {
|
|
return {
|
|
CommonEnum,
|
|
};
|
|
},
|
|
onLoad() {},
|
|
methods: {},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page {
|
|
//background: #f5f0e7;
|
|
}
|
|
|
|
.header {
|
|
width: 100%;
|
|
//min-height: 100vh;//可能导致页面留白
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-direction: column;
|
|
padding: 0 0 40rpx;
|
|
}
|
|
</style>
|