saas-dynamic-component
Version:
saas-dynamic-component ==== saas平台动态引擎组件库,目前包括查询引擎、表格引擎,后续待增加...
27 lines • 737 B
HTML
<template name="tableEngine">
<div class="tableEngine">
<#if {tableEngine.resultLoading}>
<div class="box-center">
<ant-Spin />
</div>
<#else>
<ant-table
rowSelection={rowSelection}
columns={tableColumns}
dataSource={tableData}
rowKey={rowKey}
bordered={bordered}
onChange={onChangeSorter}
loading={tableEngine.tableLoading}
scroll={scroll}
:pagination="{
current: currentPage,
pageSize: pageSize,
total: listTotal,
showQuickJumper: showQuickJumper,
showSizeChanger: showSizeChanger,
}" />
</#else>
</#if>
</div>
</template>