1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="info_page">
- <fileCard :isinfo="true"></fileCard>
- <view class="info_main">
- <u-steps current="0" direction="column" inactiveColor="#36a7f3" activeColor="#5fdf50">
- <u-steps-item title="办公室拟办" desc="名字 - 2024-3-21 00:00">
- </u-steps-item>
- <u-steps-item title="领导审批" desc="名字 - 2024-3-21 00:00" ></u-steps-item>
- <u-steps-item title="承办情况" ></u-steps-item>
- </u-steps>
- </view>
- </view>
- </template>
- <script>
- import fileCard from "./fileCard.vue"
- export default{
- components:{
- fileCard,
- }
- }
- </script>
- <style>
- .info_page {
- width: 100%;
- background-color: #fefefe;
- }
- .info_main {
- margin: 20px;
- }
- </style>
|