projectInfoPoint.vue 641 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <!-- v-for="i in 9" :key="i" -->
  3. <view class="content">
  4. <fxyk-navbar style="margin-bottom:31rpx;" :isSearch="false" title="节点办理"/>
  5. <u-time-line class="u-margin-bottom-20" style="margin-left:17rpx;padding:0;">
  6. <fxyk-timeline v-for="i in 9" :key="i" projectStatus="1" :projectIndex="i" />
  7. </u-time-line>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. }
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. page{
  20. width: 100%;
  21. height: 100%;
  22. min-height: 100vh;
  23. background-color: $yk-bg-color;
  24. }
  25. .content {
  26. width: 100%;
  27. height: 100%;
  28. background-color: $yk-bg-color;
  29. }
  30. </style>