feat: Add help tips to VariableCreateUpdateForm fields

This commit is contained in:
wangruidong
2024-12-18 15:45:21 +08:00
committed by Bryan
parent 0f5f6b860b
commit ffaca80b21

View File

@@ -36,12 +36,14 @@ export default {
hidden: (formValue) => {
return formValue.type !== 'text'
},
helpTip: this.$t('DefaultValueTip'),
el: {
type: 'input'
}
},
select_default_value: {
label: this.$t('DefaultValue'),
helpTip: this.$t('DefaultValueTip'),
hidden: (formValue) => {
return formValue.type !== 'select'
},