2025-04-16 11:10:00 +00:00
|
|
|
export default {
|
|
|
|
|
input_type_list: {
|
|
|
|
|
TextInput: '文字框',
|
|
|
|
|
PasswordInput: '密文框',
|
|
|
|
|
Slider: '滑桿',
|
|
|
|
|
SwitchInput: '開關',
|
|
|
|
|
SingleSelect: '單選框',
|
|
|
|
|
MultiSelect: '多選框',
|
|
|
|
|
DatePicker: '日期選擇器',
|
|
|
|
|
JsonInput: 'JSON文字框',
|
|
|
|
|
RadioCard: '選項卡',
|
2025-08-15 10:08:18 +00:00
|
|
|
RadioRow: '單行選項卡',
|
2025-08-18 11:08:00 +00:00
|
|
|
UploadInput: '文件上傳',
|
|
|
|
|
TextareaInput: '多行文字方塊',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
default: {
|
|
|
|
|
label: '預設值',
|
|
|
|
|
placeholder: '請輸入預設值',
|
|
|
|
|
requiredMessage: '為必填屬性',
|
2025-08-15 10:08:18 +00:00
|
|
|
show: '顯示預設值',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
tip: {
|
|
|
|
|
requiredMessage: '不能為空',
|
2025-08-15 10:08:18 +00:00
|
|
|
jsonMessage: 'JSON格式不正確',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
searchBar: {
|
2025-08-15 10:08:18 +00:00
|
|
|
placeholder: '請輸入關鍵字搜索',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
paramForm: {
|
|
|
|
|
field: {
|
|
|
|
|
label: '參數',
|
|
|
|
|
placeholder: '請輸入參數',
|
|
|
|
|
requiredMessage: '參數 為必填屬性',
|
2025-08-15 10:08:18 +00:00
|
|
|
requiredMessage2: '只能輸入字母、數字和底線',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
name: {
|
|
|
|
|
label: '顯示名稱',
|
|
|
|
|
placeholder: '請輸入顯示名稱',
|
2025-08-15 10:08:18 +00:00
|
|
|
requiredMessage: '顯示名稱 為必填屬性',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
tooltip: {
|
|
|
|
|
label: '參數提示說明',
|
2025-08-15 10:08:18 +00:00
|
|
|
placeholder: '請輸入參數提示說明',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
required: {
|
|
|
|
|
label: '是否必填',
|
2025-08-15 10:08:18 +00:00
|
|
|
requiredMessage: '是否必填 為必填屬性',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
input_type: {
|
|
|
|
|
label: '組件類型',
|
|
|
|
|
placeholder: '請選擇組件類型',
|
2025-08-15 10:08:18 +00:00
|
|
|
requiredMessage: '組件類型 為必填屬性',
|
|
|
|
|
},
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
DatePicker: {
|
|
|
|
|
placeholder: '選擇日期',
|
|
|
|
|
year: '年',
|
|
|
|
|
month: '月',
|
|
|
|
|
date: '日期',
|
|
|
|
|
datetime: '日期時間',
|
|
|
|
|
dataType: {
|
|
|
|
|
label: '時間類型',
|
2025-08-15 10:08:18 +00:00
|
|
|
placeholder: '請選擇時間類型',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
format: {
|
|
|
|
|
label: '格式',
|
2025-08-15 10:08:18 +00:00
|
|
|
placeholder: '請選擇格式',
|
|
|
|
|
},
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
Select: {
|
|
|
|
|
label: '選項值',
|
2025-08-15 10:08:18 +00:00
|
|
|
placeholder: '請輸入選項值',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
tag: {
|
|
|
|
|
label: '標籤',
|
2025-08-15 10:08:18 +00:00
|
|
|
placeholder: '請輸入選項標籤',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
Slider: {
|
|
|
|
|
showInput: {
|
2025-08-15 10:08:18 +00:00
|
|
|
label: '是否帶輸入框',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
valueRange: {
|
|
|
|
|
label: '取值範圍',
|
|
|
|
|
minRequired: '最小值必填',
|
2025-08-15 10:08:18 +00:00
|
|
|
maxRequired: '最大值必填',
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
step: {
|
|
|
|
|
label: '步長值',
|
|
|
|
|
requiredMessage1: '步長值必填',
|
2025-08-15 10:08:18 +00:00
|
|
|
requiredMessage2: '步長不能為0',
|
|
|
|
|
},
|
2025-04-16 11:10:00 +00:00
|
|
|
},
|
|
|
|
|
TextInput: {
|
|
|
|
|
length: {
|
|
|
|
|
label: '文字長度',
|
|
|
|
|
minRequired: '最小長度必填',
|
|
|
|
|
maxRequired: '最大長度必填',
|
|
|
|
|
requiredMessage1: '長度在',
|
|
|
|
|
requiredMessage2: '到',
|
|
|
|
|
requiredMessage3: '個字元',
|
2025-08-15 10:08:18 +00:00
|
|
|
requiredMessage4: '文字長度為必填參數',
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-08-18 11:08:00 +00:00
|
|
|
UploadInput: {
|
|
|
|
|
limit: {
|
|
|
|
|
label: '單次上傳最多文件數',
|
|
|
|
|
required: '單次上傳最多文件數必填',
|
|
|
|
|
},
|
|
|
|
|
max_file_size: {
|
|
|
|
|
label: '每個文件最大(MB)',
|
|
|
|
|
required: '每個文件最大必填',
|
|
|
|
|
},
|
|
|
|
|
accept: {
|
|
|
|
|
label: '文件類型',
|
|
|
|
|
required: '文件類型必填',
|
|
|
|
|
},
|
|
|
|
|
},
|
2025-08-15 10:08:18 +00:00
|
|
|
AssignmentMethod: {
|
|
|
|
|
label: '賦值方式',
|
|
|
|
|
custom: {
|
|
|
|
|
label: '自定義',
|
|
|
|
|
},
|
|
|
|
|
ref_variables: {
|
2025-08-18 11:08:00 +00:00
|
|
|
label: '參考變量',
|
|
|
|
|
popover: '變量的值必須符合',
|
|
|
|
|
popover_label: '標籤',
|
|
|
|
|
popover_value: '值',
|
|
|
|
|
popover_default: '是否為預設值',
|
2025-08-15 10:08:18 +00:00
|
|
|
},
|
|
|
|
|
},
|
2025-04-16 11:10:00 +00:00
|
|
|
}
|