explain.vue 737 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <hc-sys class="hc-my-explain-page" :isNavBar="false">
  3. <uni-collapse accordion>
  4. <uni-collapse-item :title="item.title" title-border="show" v-for="item in list">
  5. <view class="p-4">暂无相关数据</view>
  6. </uni-collapse-item>
  7. </uni-collapse>
  8. </hc-sys>
  9. </template>
  10. <script setup>
  11. import {ref} from "vue";
  12. const list = ref([
  13. {title:'影像资料',img:''},
  14. {title:'施工台账',img:''},
  15. {title:'审批签字',img:''},
  16. {title:'客户维护班次',img:''},
  17. {title:'资料填报',img:''},
  18. {title:'日志填报',img:''},
  19. {title:'质量巡检',img:''},
  20. ]);
  21. </script>
  22. <style lang="scss" scoped>
  23. page{
  24. background-color: white;
  25. }
  26. </style>