新增项目进展页

This commit is contained in:
WindowBird 2025-09-18 16:21:47 +08:00
parent 909d6a8470
commit eef8bc7aad
2 changed files with 48 additions and 0 deletions

View File

@ -212,6 +212,12 @@
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/institutionalStructure/projectProgressList",
"style": {
"navigationStyle": "custom"
}
}
],
"subPackages": [

View File

@ -0,0 +1,42 @@
<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>