UNPKG

saas-dynamic-component

Version:

saas-dynamic-component ==== saas平台动态引擎组件库,目前包括查询引擎、表格引擎,后续待增加...

30 lines 1.11 kB
<template name="tableListSetting"> <div class="tableListSetting"> <a href="javascript:;" onClick={clickSetting}>{intlSaaS('fieldSetting')}</a> <ant-Modal class="tableListSettingModal" width={500} visible="{tableListSetting.modalVisible}" onOk={onModalSave} onCancel={onModalCancel}> <@title> <div>{intlSaaS('fieldSetting')}</div> </@title> <div> <div class="line-bottom"> <ant-Checkbox indeterminate={indeterminate} onChange={onCheckAllChange} checked={checkAll} > {intlSaaS('all')} </ant-Checkbox> </div> <ant-Checkbox.Group class="group" value={tableListSetting.checkValue} onChange={onChangeGroup}> <#each {{checkCell}}> <fj-Row key={@index}> <#each {{@item}}> <fj-Col class="mg-bottom" l={4} key={@index}><ant-Checkbox value={dataIndex}>{title}</ant-Checkbox></fj-Col> </#each> </fj-Row> </#each> </ant-Checkbox.Group> </div> </ant-Modal> </div> </template>