@airpower/web 0.2.1 → 0.2.3
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/README.md +0 -2
- package/dist/main.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/main.js
CHANGED
|
@@ -9020,7 +9020,7 @@ class AbstractCurdService extends AbstractService {
|
|
|
9020
9020
|
* @param apiUrl `可选` 自定义请求URL
|
|
9021
9021
|
*/
|
|
9022
9022
|
async getPage(request, apiUrl = this.urlGetPage) {
|
|
9023
|
-
const responsePage = await this.api(apiUrl).
|
|
9023
|
+
const responsePage = await this.api(apiUrl).post(request, QueryResponsePage);
|
|
9024
9024
|
responsePage.list = responsePage.list.map((json) => Transformer.parse(json, this.entityClass));
|
|
9025
9025
|
return responsePage;
|
|
9026
9026
|
}
|