CD配唱片
2025-04-23 eaafc29bc72b22b59b95b54c27d1a3113b3e7871
src/components/HxlhTable/index.vue
@@ -27,6 +27,8 @@
            :scroll-x="{enabled: true}"
            :scroll-y="{enabled: true}"
            :expand-config="expandConfig"
            :tree-config="treeConfig"
            :row-style="rowStyle"
            @sort-change="sortChange"
            @page-change="pagerChange"
            @form-submit="findList"
@@ -142,17 +144,30 @@
    }
},
expandConfig: {
  type: Object,
  default: () => {
    return {lazy: false}
  }
    type: Object,
    default: () => {
      return {lazy: false}
    }
},
subGridOptions: {
  type:Object,
  default :()=>{
    type:Object,
    default :()=>{
      return {}
    }
},
treeConfig: {
    type: Object,
    default: () => {
    return {}
  }
}
    }
},
rowStyle: {
    type: Function,
    default: () => {
    return {}
    }
},
})