ntk-cms-api 1.0.355 → 1.0.356
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.
- package/bundles/ntk-cms-api.umd.js +18 -0
- package/bundles/ntk-cms-api.umd.js.map +1 -1
- package/bundles/ntk-cms-api.umd.min.js +1 -1
- package/bundles/ntk-cms-api.umd.min.js.map +1 -1
- package/esm2015/lib/service/estate/estateProperty.service.js +18 -1
- package/fesm2015/ntk-cms-api.js +17 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/service/estate/estateProperty.service.d.ts +1 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -9646,6 +9646,24 @@
|
|
|
9646
9646
|
return _this.errorExceptionResultCheck(ret);
|
|
9647
9647
|
}));
|
|
9648
9648
|
};
|
|
9649
|
+
EstatePropertyService.prototype.ServiceGetAllWithBillbord = function (billbordId, model) {
|
|
9650
|
+
var _this = this;
|
|
9651
|
+
if (model == null) {
|
|
9652
|
+
model = new FilterModel();
|
|
9653
|
+
}
|
|
9654
|
+
if (!billbordId || billbordId.length === 0) {
|
|
9655
|
+
billbordId = '00';
|
|
9656
|
+
}
|
|
9657
|
+
return this.http
|
|
9658
|
+
.post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetAllWithBillbord/' + billbordId, model, {
|
|
9659
|
+
headers: this.getHeaders(),
|
|
9660
|
+
})
|
|
9661
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
9662
|
+
// catchError(this.handleError)
|
|
9663
|
+
operators.map(function (ret) {
|
|
9664
|
+
return _this.errorExceptionResultCheck(ret);
|
|
9665
|
+
}));
|
|
9666
|
+
};
|
|
9649
9667
|
return EstatePropertyService;
|
|
9650
9668
|
}(ApiCmsServerBase));
|
|
9651
9669
|
EstatePropertyService.decorators = [
|