mirror of
https://github.com/dataease/dataease.git
synced 2025-02-23 19:12:55 +08:00
feat(X-Pack): [数据填报]用户填报多条数据列表增加快速确认完成按钮
This commit is contained in:
parent
dce5926718
commit
0ebcd24490
@ -103,6 +103,10 @@ i18n_df_decimal=decimal
|
||||
i18n_df_multiple_value_split=use ';' to split multiple value
|
||||
i18n_df_email_type=email type
|
||||
i18n_df_phone_type=phone type
|
||||
i18n_df_lt_check=need less than %s: %s
|
||||
i18n_df_gt_check=need greater than %s: %s
|
||||
i18n_df_le_check=need less than or equal to %s: %s
|
||||
i18n_df_ge_check=need greater than or equal to %s: %s
|
||||
|
||||
|
||||
|
||||
|
@ -123,6 +123,10 @@ i18n_df_decimal=\u5C0F\u6570\u6570\u5B57
|
||||
i18n_df_multiple_value_split=\u591A\u4E2A\u503C\u4F7F\u7528\u5206\u53F7";"\u5206\u5272
|
||||
i18n_df_email_type=\u90AE\u7BB1\u683C\u5F0F
|
||||
i18n_df_phone_type=\u624B\u673A\u53F7\u683C\u5F0F
|
||||
i18n_df_lt_check=\u503C\u9700\u8981\u5C0F\u4E8E %s: %s
|
||||
i18n_df_gt_check=\u503C\u9700\u8981\u5927\u4E8E %s: %s
|
||||
i18n_df_le_check=\u503C\u9700\u8981\u5C0F\u4E8E\u7B49\u4E8E %s: %s
|
||||
i18n_df_ge_check=\u503C\u9700\u8981\u5927\u4E8E\u7B49\u4E8E %s: %s
|
||||
|
||||
|
||||
|
||||
|
@ -123,6 +123,10 @@ i18n_df_decimal=\u5C0F\u6578\u6578\u5B57
|
||||
i18n_df_multiple_value_split=\u591A\u500B\u503C\u4F7F\u7528\u5206\u865F";"\u5206\u5272
|
||||
i18n_df_email_type=\u90F5\u7BB1\u683C\u5F0F
|
||||
i18n_df_phone_type=\u624B\u6A5F\u865F\u683C\u5F0F
|
||||
i18n_df_lt_check=\u503C\u9700\u8981\u5C0F\u4E8E %s: %s
|
||||
i18n_df_gt_check=\u503C\u9700\u8981\u5927\u4E8E %s: %s
|
||||
i18n_df_le_check=\u503C\u9700\u8981\u5C0F\u4E8E\u7B49\u4E8E %s: %s
|
||||
i18n_df_ge_check=\u503C\u9700\u8981\u5927\u4E8E\u7B49\u4E8E %s: %s
|
||||
|
||||
|
||||
|
||||
|
@ -3627,6 +3627,7 @@ Scatter chart (bubble) chart: {a} (series name), {b} (data name), {c} (value arr
|
||||
exporting: 'Backend export in progress, can go to',
|
||||
progress_to_download: 'Check progress and download',
|
||||
form: {
|
||||
confirm_to_mark_as_complete: 'Confirm to mark as complete?',
|
||||
mobile_number_format_is_incorrect: 'Mobile number format is incorrect',
|
||||
email_format_is_incorrect: 'Email format is incorrect',
|
||||
name: 'Name',
|
||||
|
@ -3536,6 +3536,7 @@ export default {
|
||||
exporting: '後台導出中,可前往',
|
||||
progress_to_download: '查看進度,進行下載',
|
||||
form: {
|
||||
confirm_to_mark_as_complete: '確認標記為完成?',
|
||||
mobile_number_format_is_incorrect: '手機號碼格式不正確',
|
||||
email_format_is_incorrect: '郵件格式不正確',
|
||||
name: '名稱',
|
||||
|
@ -3539,6 +3539,7 @@ export default {
|
||||
exporting: '后台导出中,可前往',
|
||||
progress_to_download: '查看进度,进行下载',
|
||||
form: {
|
||||
confirm_to_mark_as_complete: '确认标记为完成?',
|
||||
mobile_number_format_is_incorrect: '手机号码格式不正确',
|
||||
email_format_is_incorrect: '邮箱格式不正确',
|
||||
name: '名称',
|
||||
|
@ -0,0 +1,36 @@
|
||||
package io.dataease.extensions.datafilling.dto;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class ExtFormSettings implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = -6236922011567180831L;
|
||||
|
||||
private String id;
|
||||
private boolean disable;
|
||||
private List<NumberRule> numberInputRules;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public static class NumberRule implements Serializable {
|
||||
@Serial
|
||||
private static final long serialVersionUID = -8841727448573594811L;
|
||||
private String column;
|
||||
private String term;
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user