fileInfo.vue 704 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="info_page">
  3. <fileCard :isinfo="true"></fileCard>
  4. <view class="info_main">
  5. <u-steps current="0" direction="column" inactiveColor="#36a7f3" activeColor="#5fdf50">
  6. <u-steps-item title="办公室拟办" desc="名字 - 2024-3-21 00:00">
  7. </u-steps-item>
  8. <u-steps-item title="领导审批" desc="名字 - 2024-3-21 00:00" ></u-steps-item>
  9. <u-steps-item title="承办情况" ></u-steps-item>
  10. </u-steps>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. import fileCard from "./fileCard.vue"
  16. export default{
  17. components:{
  18. fileCard,
  19. }
  20. }
  21. </script>
  22. <style>
  23. .info_page {
  24. width: 100%;
  25. background-color: #fefefe;
  26. }
  27. .info_main {
  28. margin: 20px;
  29. }
  30. </style>