1234567891011121314151617181920212223242526272829303132 |
- <template>
- <!-- v-for="i in 9" :key="i" -->
- <view class="content">
- <fxyk-navbar style="margin-bottom:31rpx;" :isSearch="false" title="节点办理"/>
- <u-time-line class="u-margin-bottom-20" style="margin-left:17rpx;padding:0;">
- <fxyk-timeline v-for="i in 9" :key="i" projectStatus="1" :projectIndex="i" />
- </u-time-line>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- width: 100%;
- height: 100%;
- min-height: 100vh;
- background-color: $yk-bg-color;
- }
- .content {
- width: 100%;
- height: 100%;
- background-color: $yk-bg-color;
- }
- </style>
|