SheetWrap.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <script setup>
  2. import {onMounted,ref} from 'vue'
  3. import {apiSheetInfoByCode} from '@/api/sheet.js'
  4. const props=defineProps({
  5. itemData:{
  6. type:Object,
  7. default:{}
  8. }
  9. })
  10. // 获取表格数据
  11. let list=ref([])
  12. async function getSheetInfo(){
  13. const res=await apiSheetInfoByCode({UniqueCode:props.itemData.sheetId})
  14. if(res.Ret===200){
  15. list.value=res.Data?.TableInfo?.TableDataList||[]
  16. }
  17. }
  18. onMounted(()=>{
  19. getSheetInfo()
  20. })
  21. </script>
  22. <template>
  23. <div class="sheet-box">
  24. <table>
  25. <tbody>
  26. <tr v-for="(row,rowIndex) in list" :key="rowIndex">
  27. <td v-for="(col,colIndex) in row"
  28. :key="colIndex"
  29. :rowspan="col.mc.rs===0?1:col.mc.rs"
  30. :colspan="col.mc.cs===0?1:col.mc.cs">
  31. <div>{{col.m}}</div>
  32. </td>
  33. </tr>
  34. </tbody>
  35. </table>
  36. </div>
  37. </template>
  38. <style lang="scss" scoped>
  39. .sheet-box{
  40. width: 100%;
  41. height: 100%;
  42. overflow: auto;
  43. &::-webkit-scrollbar{
  44. width: 4px;
  45. }
  46. table{
  47. width:100%;
  48. border-collapse: collapse;
  49. border-spacing: 0;
  50. td{
  51. border: 1px solid #747474;
  52. height: 45px;
  53. text-align: center;
  54. }
  55. }
  56. }
  57. </style>