yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
27 lines • 936 B
JavaScript
import { Injectable } from '@angular/core';
var AdSimpleTableConfig = /** @class */ (function () {
function AdSimpleTableConfig() {
/**
* pagination中每页显示条目数下拉框值
*/
this.pageSizeOptions = [10, 20, 30, 40, 50];
/**
* 是否显示总数据量,默认:`共 {{total}} 条`
*/
this.showTotal = "\u5171 {{total}} \u6761";
/**
* 是否多排序,当 `sort` 多个相同值时自动合并,建议后端支持时使用
*/
this.multiSort = false;
/**
* 前端分页,当 `data` 为`any[]` 或 `Observable<any[]>` 有效
*/
this.frontPagination = true;
}
AdSimpleTableConfig.decorators = [
{ type: Injectable },
];
return AdSimpleTableConfig;
}());
export { AdSimpleTableConfig };
//# sourceMappingURL=simple-table.config.js.map