123456789101112131415161718192021222324252627 |
- <template>
- <hc-sys class="hc-my-explain-page" :isNavBar="false">
- <uni-collapse accordion>
- <uni-collapse-item :title="item.title" title-border="show" v-for="item in list">
- <view class="p-4">暂无相关数据</view>
- </uni-collapse-item>
- </uni-collapse>
- </hc-sys>
- </template>
- <script setup>
- import {ref} from "vue";
- const list = ref([
- {title:'影像资料',img:''},
- {title:'施工台账',img:''},
- {title:'审批签字',img:''},
- {title:'客户维护班次',img:''},
- {title:'资料填报',img:''},
- {title:'日志填报',img:''},
- {title:'质量巡检',img:''},
- ]);
- </script>
- <style lang="scss" scoped>
- page{
- background-color: white;
- }
- </style>
|