处理问题

This commit is contained in:
wanggeng 2022-07-08 16:09:05 +08:00
parent 9054eddab2
commit 588696174b
3 changed files with 6 additions and 1 deletions

View File

@ -89,6 +89,7 @@ public class FormDesignServiceImpl extends DefaultBaseService implements IFormDe
formFieldService.deleteByFormIds(Arrays.asList(formPO.getFormId()));
// 删表
formService.deleteTable(formPO.getFormTableName(), false);
version = latestVersionByCode;
} else {
version = latestVersionByCode + 1;
}

View File

@ -10,6 +10,10 @@ function OaFormUtil(layui) {
// 全屏
function fullPage() {
$('.layui-card-body').css('height', (win.height() - 75) + 'px');
$('.save-report-form').css({
height: (win.height() - 75) + 'px',
overflow: 'auto'
})
}
fullPage();

View File

@ -63,7 +63,7 @@
table.render({
elem: '#dataTable',
id: 'dataTable',
url: top.restAjax.path('api/form/listpage', []),
url: top.restAjax.path('api/form/listpage-latest', []),
width: admin.screen() > 1 ? '100%' : '',
height: $win.height() - 60,
limit: 20,