ngx-rs-ant 1.1.8 → 1.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1713,11 +1713,12 @@ class DataDetailService {
1713
1713
  constructor(http) {
1714
1714
  this.http = http;
1715
1715
  }
1716
- getSectionList(tenant, className) {
1716
+ getSectionList(tenant, className, oid) {
1717
1717
  return this.http.get('api/data/custom', {
1718
1718
  params: {
1719
1719
  tenant,
1720
1720
  className,
1721
+ oid,
1721
1722
  executor: 'com.cs.system.section.LoadSections'
1722
1723
  }
1723
1724
  });
@@ -1961,7 +1962,7 @@ class DataDetailComponent {
1961
1962
  }
1962
1963
  ngOnInit() {
1963
1964
  this.loading = true;
1964
- this.service.getSectionList(this.tenant, this.className).subscribe(response => {
1965
+ this.service.getSectionList(this.tenant, this.className, this.oid).subscribe(response => {
1965
1966
  this.sections = response.data.list;
1966
1967
  this.loading = false;
1967
1968
  });